|
@@ -435,12 +435,17 @@ public class CommonFacade {
|
|
|
pacsResList.add(itemPart);
|
|
|
}
|
|
|
|
|
|
- // 描述 + 修饰循环放入
|
|
|
+ // 描述 + 修饰、 修饰 + 描述 循环放入
|
|
|
for (Modification modification : pacs.getModification()) {
|
|
|
Item itemModification = new Item();
|
|
|
itemModification.setName(pacs.getName() + modification.getName());
|
|
|
itemModification.setUniqueName(pacs.getStandName() + modification.getStandName());
|
|
|
pacsResList.add(itemModification);
|
|
|
+
|
|
|
+ Item itemModificationRe = new Item();
|
|
|
+ itemModificationRe.setName(modification.getName() + pacs.getName());
|
|
|
+ itemModificationRe.setUniqueName(modification.getStandName() + pacs.getStandName());
|
|
|
+ pacsResList.add(itemModificationRe);
|
|
|
}
|
|
|
}
|
|
|
}
|