Commit bf5c9fe3 by zhu.zewen

交接班过滤结存数量为null的专账

parent 5875f257
...@@ -180,6 +180,7 @@ public class PhysicBillServiceImpl extends AbstractService implements PhysicBill ...@@ -180,6 +180,7 @@ public class PhysicBillServiceImpl extends AbstractService implements PhysicBill
// TODO:是否会有未完成的专账? // TODO:是否会有未完成的专账?
List<PhysicBill> billList = physicBillMapper.selectList(Wrappers.<PhysicBill>lambdaQuery() List<PhysicBill> billList = physicBillMapper.selectList(Wrappers.<PhysicBill>lambdaQuery()
.gt(PhysicBill::getId, lastHandoverBillId) .gt(PhysicBill::getId, lastHandoverBillId)
.isNotNull(PhysicBill::getBalance)
.eq(PhysicBill::getDeptId, deptId) .eq(PhysicBill::getDeptId, deptId)
.orderByAsc(PhysicBill::getId)); .orderByAsc(PhysicBill::getId));
return billList; return billList;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment