|
|
|
@ -83,12 +83,14 @@ public class ThirdAliDrugController extends BaseController {
|
|
|
|
|
FilterUdiRelRequest filterUdiRelRequest = new FilterUdiRelRequest();
|
|
|
|
|
filterUdiRelRequest.setUuid(thirdAliDrug.getUuid());
|
|
|
|
|
List<UdiProductEntity> udiInfoEntities = udiProductService.filterAllUdiInfo(filterUdiRelRequest);
|
|
|
|
|
List<String> nameCodeIn = null;
|
|
|
|
|
List<String> nameCodeIn = new ArrayList<>();
|
|
|
|
|
if(udiInfoEntities!=null && udiInfoEntities.size() >0){
|
|
|
|
|
nameCodeIn = new ArrayList<>();
|
|
|
|
|
for (UdiProductEntity udiInfoEntity : udiInfoEntities) {
|
|
|
|
|
nameCodeIn.add(udiInfoEntity.getNameCode());
|
|
|
|
|
if(StringUtils.isNotEmpty(udiInfoEntity.getNameCode())){
|
|
|
|
|
nameCodeIn.add(udiInfoEntity.getNameCode());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
thirdAliDrug.setNameCodeIn(nameCodeIn);
|
|
|
|
|
List<ThirdAliDrug> list = thirdAliDrugService.filterList(thirdAliDrug);
|
|
|
|
|