提交 b74a31c5 authored 作者: huyufan's avatar huyufan

Merge remote-tracking branch 'origin/v11.0_add_tare_gross_weight_20240124' into test

Former-commit-id: 78242a7a
...@@ -112,6 +112,10 @@ public class OrderChildDaoImpl extends BaseDaoImpl<OrderChildMapper, OrderChild, ...@@ -112,6 +112,10 @@ public class OrderChildDaoImpl extends BaseDaoImpl<OrderChildMapper, OrderChild,
.set(OrderChild::getPoundStatus, item.getPoundStatus()) .set(OrderChild::getPoundStatus, item.getPoundStatus())
.set(OrderChild::getLoadNet, item.getLoadNet()) .set(OrderChild::getLoadNet, item.getLoadNet())
.set(OrderChild::getUnloadNet, item.getUnloadNet()) .set(OrderChild::getUnloadNet, item.getUnloadNet())
.set(OrderChild::getLoadRough, item.getLoadRough())
.set(OrderChild::getLoadTare, item.getLoadTare())
.set(OrderChild::getUnloadRough, item.getUnloadRough())
.set(OrderChild::getUnloadTare, item.getUnloadTare())
.set(OrderChild::getWeight, item.getWeight()) .set(OrderChild::getWeight, item.getWeight())
.set(OrderChild::getFreight, item.getFreight()) .set(OrderChild::getFreight, item.getFreight())
); );
......
...@@ -114,10 +114,10 @@ public class OrderChildPoundAuditServiceImpl implements OrderChildPoundAuditSer ...@@ -114,10 +114,10 @@ public class OrderChildPoundAuditServiceImpl implements OrderChildPoundAuditSer
}else{ }else{
poundAuditDetail.setLoadNet(loadNet); poundAuditDetail.setLoadNet(loadNet);
poundAuditDetail.setUnloadNet(unLoadNet); poundAuditDetail.setUnloadNet(unLoadNet);
poundAuditDetail.setLoadRough(poundAuditDetail.getLoadRough()); poundAuditDetail.setLoadRough(param.getLoadRough());
poundAuditDetail.setLoadTare(poundAuditDetail.getLoadTare()); poundAuditDetail.setLoadTare(param.getLoadTare());
poundAuditDetail.setUnloadRough(poundAuditDetail.getUnloadRough()); poundAuditDetail.setUnloadRough(param.getUnloadRough());
poundAuditDetail.setUnloadTare(poundAuditDetail.getUnloadTare()); poundAuditDetail.setUnloadTare(param.getUnloadTare());
orderChild.setLoadNet(loadNet); orderChild.setLoadNet(loadNet);
orderChild.setUnloadNet(unLoadNet); orderChild.setUnloadNet(unLoadNet);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论