This commit is contained in:
linfso 2024-07-11 10:15:41 +08:00
parent ca788ede30
commit a576e03a33

View File

@ -319,12 +319,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
round(sum(b.bill_fee),2) as totalBillFee,
b.cust_no as custNo,
max(b.customer_name) as customerName,
sum(b.parcel_qty) as parcelQty,
sum(b.bill_weight) as totalBillWeight,
sum(b.total_volume) as totalVolume,
sum(b.volume_weight) as totalVolumeWeight,
sum(b.settlement_weight) as totalSettlementWeight,
sum(b.freight) as totalFreight
sum(a.parcel_qty) as parcelQty,
sum(a.bill_weight) as totalBillWeight,
sum(a.total_volume) as totalVolume,
sum(a.volume_weight) as totalVolumeWeight,
sum(a.settlement_weight) as totalSettlementWeight,
sum(a.freight) as totalFreight
from emis_settle_sub_bill b ,emis_waybill a
<where>