diff --git a/BWP.B3_YunKen/TypeIoc/SaleOutStoreSetFreightPriceIOC.cs b/BWP.B3_YunKen/TypeIoc/SaleOutStoreSetFreightPriceIOC.cs index 89484d1..b7ed34d 100644 --- a/BWP.B3_YunKen/TypeIoc/SaleOutStoreSetFreightPriceIOC.cs +++ b/BWP.B3_YunKen/TypeIoc/SaleOutStoreSetFreightPriceIOC.cs @@ -25,7 +25,7 @@ namespace BWP.B3_YunKen.TypeIoc { entity.FreightPayment = dmo.FreightPayment; var anyNum = details.Sum(x => (x.UnitNum ?? 0).Value); - var anyFre = dmo.FreightUnitPrice * anyNum; + var anyFre = dmo.FreightUnitPrice * (anyNum/1000); //按吨算运费 if (entity.FreightPayment == 运费支付方式.计重) { entity.FreightPrice = anyFre; } else if (entity.FreightPayment == 运费支付方式.包车) {