This commit is contained in:
linfso 2024-05-20 11:01:08 +08:00
parent c5af62bc72
commit 8d4f170c08

View File

@ -227,8 +227,8 @@ public class EmisBaseService {
order.put("remark", waybill.getRemark());
order.put("parcelQty", waybill.getParcelQty().toString());
order.put("billWeight", waybill.getBillWeight().toString());
order.put("totalVolume", waybill.getTotalVolume().toString());
order.put("billWeight", waybill.getBillWeight().stripTrailingZeros().toPlainString());
order.put("totalVolume", waybill.getTotalVolume().stripTrailingZeros().toPlainString());
order.put("packType", DictUtils.getDictLabel("emis_tab_packing_type",waybill.getPackType()) );
order.put("paymentType", DictUtils.getDictLabel("emis_payment_type",waybill.getPaymentType()));
order.put("printDay", DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD,new Date()));