|
|
|
@ -566,10 +566,10 @@ public class UdiProductServiceImpl implements UdiProductService {
|
|
|
|
|
for (UdiProductEntity udiProductEntity : udiProductEntities) {
|
|
|
|
|
int bhltsl = 1;
|
|
|
|
|
if (IntUtil.value(udiProductEntity.getPackLevel()) > curLevel) {
|
|
|
|
|
bhltsl = udiProductEntity.getBhxjsl();
|
|
|
|
|
bhltsl = IntUtil.value(udiProductEntity.getBhxjsl(), 1);
|
|
|
|
|
for (DiLevelResponse diLevelResponse : diLevelResponses) {
|
|
|
|
|
if (IntUtil.value(udiProductEntity.getPackLevel()) > diLevelResponse.getPackLevel() && IntUtil.value(diLevelResponse.getPackLevel()) > curLevel) {
|
|
|
|
|
bhltsl = bhltsl * diLevelResponse.getBhxjsl();
|
|
|
|
|
bhltsl = bhltsl * IntUtil.value(diLevelResponse.getBhxjsl(), 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -582,10 +582,10 @@ public class UdiProductServiceImpl implements UdiProductService {
|
|
|
|
|
for (UdiProductEntity udiProductEntity : udiProductEntities) {
|
|
|
|
|
int bhltsl = 1;
|
|
|
|
|
if (IntUtil.value(udiProductEntity.getPackLevel()) > curLevel) {
|
|
|
|
|
bhltsl = udiProductEntity.getBhxjsl();
|
|
|
|
|
bhltsl = IntUtil.value(udiProductEntity.getBhxjsl(), 1);
|
|
|
|
|
for (DiLevelResponse diLevelResponse : diLevelResponses) {
|
|
|
|
|
if (IntUtil.value(udiProductEntity.getPackLevel()) > diLevelResponse.getPackLevel() && IntUtil.value(diLevelResponse.getPackLevel()) > curLevel) {
|
|
|
|
|
bhltsl = bhltsl * diLevelResponse.getBhxjsl();
|
|
|
|
|
bhltsl = bhltsl * IntUtil.value(diLevelResponse.getBhxjsl(), 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -613,18 +613,19 @@ public class UdiProductServiceImpl implements UdiProductService {
|
|
|
|
|
private UdiProductService udiProductService;
|
|
|
|
|
@Resource
|
|
|
|
|
private ThirdAliDrugService thirdAliDrugService;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void saveOrUpadateLevelDrugAli(ThirdAliDrugRequest thirdAliDrugRequest) {
|
|
|
|
|
|
|
|
|
|
ThrProductsEntity thrProductsEntity = thrProductsService.selectByCode(thirdAliDrugRequest.getYbbm());
|
|
|
|
|
ThirdAliDrug thirdAliDrugServiceOne = thirdAliDrugService.getOne(
|
|
|
|
|
new QueryWrapper<ThirdAliDrug>().eq("nameCode",thirdAliDrugRequest.getNameCode()).last("limit 1")
|
|
|
|
|
new QueryWrapper<ThirdAliDrug>().eq("nameCode", thirdAliDrugRequest.getNameCode()).last("limit 1")
|
|
|
|
|
);
|
|
|
|
|
if(thirdAliDrugServiceOne != null){
|
|
|
|
|
if (thirdAliDrugServiceOne != null) {
|
|
|
|
|
List<ThirdAliDrug> thirdAliDrugList = thirdAliDrugService.list(
|
|
|
|
|
new QueryWrapper<ThirdAliDrug>().eq("bzgg",thirdAliDrugServiceOne.getBzgg()).eq("packRatio",thirdAliDrugServiceOne.getPackRatio())
|
|
|
|
|
new QueryWrapper<ThirdAliDrug>().eq("bzgg", thirdAliDrugServiceOne.getBzgg()).eq("packRatio", thirdAliDrugServiceOne.getPackRatio())
|
|
|
|
|
);
|
|
|
|
|
if(thirdAliDrugList != null && thirdAliDrugList.size() >0){
|
|
|
|
|
if (thirdAliDrugList != null && thirdAliDrugList.size() > 0) {
|
|
|
|
|
for (ThirdAliDrug thirdAliDrug : thirdAliDrugList) {
|
|
|
|
|
UdiProductEntity udiProductEntity = new UdiProductEntity();
|
|
|
|
|
|
|
|
|
@ -715,7 +716,6 @@ public class UdiProductServiceImpl implements UdiProductService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|