aris xml导入多版本状态下导入到使用中版本

This commit is contained in:
446052889@qq.com 2022-09-21 10:56:11 +08:00
parent ebcc65bcd3
commit 8ac17fda4b
3 changed files with 2 additions and 2 deletions

View File

@ -286,9 +286,9 @@ public class ProcessUtil {
List<PALRepositoryModel> list = new ArrayList<>();
while (iterator.hasNext()) {
// 无多版本情况不考虑
// 多版本情况下使用使用中版本
PALRepositoryModel model = iterator.next();
if (Constant.PROCESS_EPC.equals(model.getMethodId())) {
if (Constant.PROCESS_EPC.equals(model.getMethodId()) && model.isUse()) {
list.add(model);
}
}