This commit is contained in:
linfso 2024-05-24 11:05:32 +08:00
parent e0d68de981
commit 1d4ec43b55

View File

@ -453,6 +453,13 @@ public class EmisBaseService {
totalVolume=waybill.getTotalVolume().stripTrailingZeros().toPlainString();
}
String empName="Printer";
try {
empName = getCurrentUser().getEmpName();
}
catch(Exception ex){
ex.printStackTrace();
}
order.put("parcelQty", parcelQty);
order.put("billWeight", billWeight);
@ -461,7 +468,7 @@ public class EmisBaseService {
order.put("paymentType", DictUtils.getDictLabel("emis_payment_type",waybill.getPaymentType()));
order.put("printDay", DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD,new Date()));
order.put("printDate", DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS,new Date()));
order.put("printMan", getCurrentUser().getEmpName());
order.put("printMan", empName);
order.put("printCount", waybill.getPrintCount());