|
|
|
@ -4638,14 +4638,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
String productNum = carsLoadWaybillInfoVO.getProductNum(); |
|
|
|
|
String productVolume = carsLoadWaybillInfoVO.getProductVolume(); |
|
|
|
|
String productWeight = carsLoadWaybillInfoVO.getProductWeight(); |
|
|
|
|
// String chargeTypes = carsLoadWaybillInfoVO.getChargeTypes();
|
|
|
|
|
String chargeTypes = carsLoadWaybillInfoVO.getChargeTypes(); |
|
|
|
|
|
|
|
|
|
String[] nameArray = goodsName.split(","); |
|
|
|
|
String[] priceArray = productPrice.split(","); |
|
|
|
|
String[] numArray = productNum.split(","); |
|
|
|
|
String[] volumeArray = productVolume.split(","); |
|
|
|
|
String[] weightArray = productWeight.split(","); |
|
|
|
|
// String[] chargeTypeArray = chargeTypes.split(",");
|
|
|
|
|
String[] chargeTypeArray = chargeTypes.split(","); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -4661,7 +4661,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
String weight = weightArray[i]; |
|
|
|
|
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()); |
|
|
|
|
// chargeTypeMap.put(nameArray[i],chargeTypeArray[i]);
|
|
|
|
|
chargeTypeMap.put(nameArray[i],chargeTypeArray[i]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|