md
This commit is contained in:
parent
ab11ab950c
commit
1934ee19ce
@ -1958,10 +1958,28 @@ public class EmisBaseService {
|
||||
extData.put("pickupMethod",pickupMethod);
|
||||
|
||||
|
||||
extData.put("freight",waybill.getFreight());
|
||||
|
||||
extData.put("feeRemark",WaybillHelper.removeUnSeeChar(waybill.getFeeRemark()));
|
||||
extData.put("volumeWeight",waybill.getVolumeWeight());
|
||||
extData.put("settlementWeight",waybill.getSettlementWeight());
|
||||
|
||||
String freight="0.0";
|
||||
String volumeWeight="0.0";
|
||||
String settlementWeight="0.0";
|
||||
|
||||
if(waybill.getFreight()!=null){
|
||||
freight=waybill.getFreight().stripTrailingZeros().toPlainString();
|
||||
}
|
||||
|
||||
if(waybill.getVolumeWeight()!=null){
|
||||
volumeWeight=waybill.getVolumeWeight().stripTrailingZeros().toPlainString();
|
||||
}
|
||||
|
||||
if(waybill.getSettlementWeight()!=null){
|
||||
settlementWeight=waybill.getSettlementWeight().stripTrailingZeros().toPlainString();
|
||||
}
|
||||
|
||||
extData.put("freight",freight);
|
||||
extData.put("volumeWeight",volumeWeight);
|
||||
extData.put("settlementWeight",settlementWeight);
|
||||
|
||||
extData.put("takePieceEmployeeName",WaybillHelper.removeUnSeeChar(waybill.getTakePieceEmployeeName()));
|
||||
extData.put("operateEmployeeName",WaybillHelper.removeUnSeeChar(waybill.getOperateEmployeeName()));
|
||||
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user