|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.logpm.warehouse.service.impl; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil; |
|
|
|
|
import cn.hutool.core.util.NumberUtil; |
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
@ -924,7 +925,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
|
|
|
|
|
map.put("查询单号", warehouseWaybillEntity.getWaybillNo()); |
|
|
|
|
map.put("起运地", warehouseWaybillEntity.getDepartureWarehouseName()); |
|
|
|
|
map.put("到达站", warehouseWaybillEntity.getDestinationWarehouseName()); |
|
|
|
|
map.put("到达站", warehouseWaybillEntity.getDestination()); |
|
|
|
|
map.put("客户车次号", "客户车次号: " + warehouseWaybillEntity.getCustomerTrain()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -980,9 +981,12 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
t.put("件数", warehouseWayBillDetail.getNum()); |
|
|
|
|
sumNumber = sumNumber + warehouseWayBillDetail.getNum(); |
|
|
|
|
t.put("包装", ""); |
|
|
|
|
t.put("重量", warehouseWayBillDetail.getWeight()); |
|
|
|
|
BigDecimal weight = warehouseWayBillDetail.getWeight(); |
|
|
|
|
BigDecimal volume = warehouseWayBillDetail.getVolume(); |
|
|
|
|
|
|
|
|
|
t.put("重量", NumberUtil.equals(weight, BigDecimal.ZERO)?"":weight.toString()); |
|
|
|
|
sumWEIGHT = sumWEIGHT.add(warehouseWayBillDetail.getWeight()); |
|
|
|
|
t.put("体积", warehouseWayBillDetail.getVolume()); |
|
|
|
|
t.put("体积", NumberUtil.equals(volume, BigDecimal.ZERO)?"":volume.toString()); |
|
|
|
|
sumVOLUME = sumVOLUME.add(warehouseWayBillDetail.getVolume()); |
|
|
|
|
ls.add(t); |
|
|
|
|
} |
|
|
|
@ -1006,6 +1010,11 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
if (ObjectUtil.isNull(value)) { |
|
|
|
|
return ""; |
|
|
|
|
} |
|
|
|
|
if(NumberUtil.equals(value, BigDecimal.ZERO)){ |
|
|
|
|
return ""; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return value.setScale(2, RoundingMode.HALF_UP).toString(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|