票据新增结算重量列

dev
徐杰盟 2024-01-08 15:30:23 +08:00
parent 41763af26c
commit 8ce5f99495
2 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ public class LocalOrderService {
goodsGrossWeight = String.format("%." + decimal + "f", second_weight); // 毛重
goodsSetWeight = goodsNetWeight;
goodsNetWeight = String.format("%.2f", second_weight.subtract(first_weight)); // 计算净重
goodsNetWeight = String.format("%." + decimal + "f", second_weight.subtract(first_weight)); // 计算净重
clientName = StrUtil.getRecordStr(order, "customer_texpayer_name");