|
|
@ -4638,12 +4638,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
String productNum = carsLoadWaybillInfoVO.getProductNum(); |
|
|
|
String productNum = carsLoadWaybillInfoVO.getProductNum(); |
|
|
|
String productVolume = carsLoadWaybillInfoVO.getProductVolume(); |
|
|
|
String productVolume = carsLoadWaybillInfoVO.getProductVolume(); |
|
|
|
String productWeight = carsLoadWaybillInfoVO.getProductWeight(); |
|
|
|
String productWeight = carsLoadWaybillInfoVO.getProductWeight(); |
|
|
|
|
|
|
|
String chargeTypes = carsLoadWaybillInfoVO.getChargeTypes(); |
|
|
|
|
|
|
|
|
|
|
|
String[] nameArray = goodsName.split(","); |
|
|
|
String[] nameArray = goodsName.split(","); |
|
|
|
String[] priceArray = productPrice.split(","); |
|
|
|
String[] priceArray = productPrice.split(","); |
|
|
|
String[] numArray = productNum.split(","); |
|
|
|
String[] numArray = productNum.split(","); |
|
|
|
String[] volumeArray = productVolume.split(","); |
|
|
|
String[] volumeArray = productVolume.split(","); |
|
|
|
String[] weightArray = productWeight.split(","); |
|
|
|
String[] weightArray = productWeight.split(","); |
|
|
|
|
|
|
|
String[] chargeTypeArray = chargeTypes.split(","); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -4651,6 +4653,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
Map<String,String> priceMap = new HashMap<>(); |
|
|
|
Map<String,String> priceMap = new HashMap<>(); |
|
|
|
Map<String,String> volumeMap = new HashMap<>(); |
|
|
|
Map<String,String> volumeMap = new HashMap<>(); |
|
|
|
Map<String,String> weightMap = new HashMap<>(); |
|
|
|
Map<String,String> weightMap = new HashMap<>(); |
|
|
|
|
|
|
|
Map<String,String> chargeTypeMap = new HashMap<>(); |
|
|
|
for (int i = 0; i < nameArray.length; i++) { |
|
|
|
for (int i = 0; i < nameArray.length; i++) { |
|
|
|
priceMap.put(nameArray[i],priceArray[i]); |
|
|
|
priceMap.put(nameArray[i],priceArray[i]); |
|
|
|
String num = numArray[i]; |
|
|
|
String num = numArray[i]; |
|
|
@ -4658,6 +4661,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
String weight = weightArray[i]; |
|
|
|
String weight = weightArray[i]; |
|
|
|
volumeMap.put(nameArray[i],new BigDecimal(volume).divide(new BigDecimal(num),2, RoundingMode.HALF_UP).toString()); |
|
|
|
volumeMap.put(nameArray[i],new BigDecimal(volume).divide(new BigDecimal(num),2, RoundingMode.HALF_UP).toString()); |
|
|
|
weightMap.put(nameArray[i],new BigDecimal(weight).divide(new BigDecimal(num),2, RoundingMode.HALF_UP).toString()); |
|
|
|
weightMap.put(nameArray[i],new BigDecimal(weight).divide(new BigDecimal(num),2, RoundingMode.HALF_UP).toString()); |
|
|
|
|
|
|
|
chargeTypeMap.put(nameArray[i],chargeTypeArray[i]); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -4763,7 +4767,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
if(StrUtil.isBlank(oneWeight)){ |
|
|
|
if(StrUtil.isBlank(oneWeight)){ |
|
|
|
oneWeight = "0"; |
|
|
|
oneWeight = "0"; |
|
|
|
} |
|
|
|
} |
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
String chargeType = chargeTypeMap.get(gn); |
|
|
|
|
|
|
|
if(StringUtil.isBlank(chargeType)){ |
|
|
|
|
|
|
|
chargeType = "1"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if("1".equals(chargeType)){ |
|
|
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
|
|
|
}else if("2".equals(chargeType)){ |
|
|
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(oneVolume)))); |
|
|
|
|
|
|
|
}else if("3".equals(chargeType)){ |
|
|
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(oneWeight)))); |
|
|
|
|
|
|
|
} |
|
|
|
totalVolume.set(totalVolume.get().add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
totalVolume.set(totalVolume.get().add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
totalWeight.set(totalWeight.get().add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
totalWeight.set(totalWeight.get().add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
Integer n = goodsByNum.get(gn); |
|
|
|
Integer n = goodsByNum.get(gn); |
|
|
@ -4816,7 +4830,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
if(StrUtil.isBlank(oneWeight)){ |
|
|
|
if(StrUtil.isBlank(oneWeight)){ |
|
|
|
oneWeight = "0"; |
|
|
|
oneWeight = "0"; |
|
|
|
} |
|
|
|
} |
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
String chargeType = chargeTypeMap.get(goodsName1); |
|
|
|
|
|
|
|
if(StringUtil.isBlank(chargeType)){ |
|
|
|
|
|
|
|
chargeType = "1"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if("1".equals(chargeType)){ |
|
|
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
|
|
|
}else if("2".equals(chargeType)){ |
|
|
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(oneVolume)).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
|
|
|
}else if("3".equals(chargeType)){ |
|
|
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(oneWeight)).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
|
|
|
} |
|
|
|
totalVolume.set(totalVolume.get().add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
totalVolume.set(totalVolume.get().add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
totalWeight.set(totalWeight.get().add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
totalWeight.set(totalWeight.get().add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
Integer n = goodsByNum.get(goodsName1); |
|
|
|
Integer n = goodsByNum.get(goodsName1); |
|
|
|