层级数量换算

dev_unify
yewj 4 months ago
parent 42154bee1a
commit 726e46521e

@ -566,10 +566,10 @@ public class UdiProductServiceImpl implements UdiProductService {
for (UdiProductEntity udiProductEntity : udiProductEntities) { for (UdiProductEntity udiProductEntity : udiProductEntities) {
int bhltsl = 1; int bhltsl = 1;
if (IntUtil.value(udiProductEntity.getPackLevel()) > curLevel) { if (IntUtil.value(udiProductEntity.getPackLevel()) > curLevel) {
bhltsl = udiProductEntity.getBhxjsl(); bhltsl = IntUtil.value(udiProductEntity.getBhxjsl(), 1);
for (DiLevelResponse diLevelResponse : diLevelResponses) { for (DiLevelResponse diLevelResponse : diLevelResponses) {
if (IntUtil.value(udiProductEntity.getPackLevel()) > diLevelResponse.getPackLevel() && IntUtil.value(diLevelResponse.getPackLevel()) > curLevel) { 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) { for (UdiProductEntity udiProductEntity : udiProductEntities) {
int bhltsl = 1; int bhltsl = 1;
if (IntUtil.value(udiProductEntity.getPackLevel()) > curLevel) { if (IntUtil.value(udiProductEntity.getPackLevel()) > curLevel) {
bhltsl = udiProductEntity.getBhxjsl(); bhltsl = IntUtil.value(udiProductEntity.getBhxjsl(), 1);
for (DiLevelResponse diLevelResponse : diLevelResponses) { for (DiLevelResponse diLevelResponse : diLevelResponses) {
if (IntUtil.value(udiProductEntity.getPackLevel()) > diLevelResponse.getPackLevel() && IntUtil.value(diLevelResponse.getPackLevel()) > curLevel) { 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; private UdiProductService udiProductService;
@Resource @Resource
private ThirdAliDrugService thirdAliDrugService; private ThirdAliDrugService thirdAliDrugService;
@Override @Override
public void saveOrUpadateLevelDrugAli(ThirdAliDrugRequest thirdAliDrugRequest) { public void saveOrUpadateLevelDrugAli(ThirdAliDrugRequest thirdAliDrugRequest) {
ThrProductsEntity thrProductsEntity = thrProductsService.selectByCode(thirdAliDrugRequest.getYbbm()); ThrProductsEntity thrProductsEntity = thrProductsService.selectByCode(thirdAliDrugRequest.getYbbm());
ThirdAliDrug thirdAliDrugServiceOne = thirdAliDrugService.getOne( 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( 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) { for (ThirdAliDrug thirdAliDrug : thirdAliDrugList) {
UdiProductEntity udiProductEntity = new UdiProductEntity(); UdiProductEntity udiProductEntity = new UdiProductEntity();
@ -715,7 +716,6 @@ public class UdiProductServiceImpl implements UdiProductService {
} }
// } // }
} }

@ -32,4 +32,17 @@ public class IntUtil {
else return Integer.parseInt(value); else return Integer.parseInt(value);
} }
public static int value(Integer value, int defaultValue) {
if (value != null && value != 0)
return value;
else return defaultValue;
}
public static int value(String value, int defaultValue) {
if (StrUtil.isEmpty(value) || "0".equals(value))
return defaultValue;
else return Integer.parseInt(value);
}
} }

Loading…
Cancel
Save