This commit is contained in:
linfso 2025-07-04 08:18:25 +08:00
parent 296370f77c
commit bd558537cb
2 changed files with 11 additions and 3 deletions

View File

@ -376,9 +376,9 @@ public class EmisTmsCostFeeServiceImpl extends EmisBaseService implements IEmisT
splitItem.setTransWeight(mainWaybill.getBillWeight()); // 运输重量
splitItem.setTransVolume(mainWaybill.getTotalVolume()); // 运输体积
// 取件员,取件网点
// 派件员,派件网点
String dispathEmpName=null;
if(!StringUtils.isEmpty(mainWaybill.getTakePieceEmployeeCode())) {
if(!StringUtils.isEmpty(mainWaybill.getDispatchManCode())) {
SysUser dispathEmpUser = getEmisStaffByCode(mainWaybill.getDispatchManCode());
if (dispathEmpUser != null) {
dispathEmpName = dispathEmpUser.getEmpName();

View File

@ -136,7 +136,15 @@
a.settlement_weight as settlementWeight,
a.freight as freight,
a.bl_virtual as blVirtual,
a.master_bill_code as masterBillCode
a.master_bill_code as masterBillCode,
a.send_date as sendDate,
a.take_piece_employee_code as takePieceEmployeeCode,
a.send_site_code as sendSiteCode,
a.dispatch_man_code as dispatchManCode,
a.dispatch_man_code as dispatchManCode,
a.dispatch_underling_site_code as dispatchUnderlingSiteCode,
a.dispatch_date as dispatchDate
FROM emis_waybill a
WHERE a.del_flag = '0' and bill_code=#{billCode}