Commit 0d3ad02a by zhu.zewen

修复交接班明细查询

parent 2c9fcff9
...@@ -177,6 +177,8 @@ public class PhysicBillServiceImpl extends AbstractService implements PhysicBill ...@@ -177,6 +177,8 @@ public class PhysicBillServiceImpl extends AbstractService implements PhysicBill
} }
List<PhysicBill> billList = physicBillMapper.selectList(Wrappers.<PhysicBill>lambdaQuery() List<PhysicBill> billList = physicBillMapper.selectList(Wrappers.<PhysicBill>lambdaQuery()
.eq(PhysicBill::getDeptId, billHandover.getDeptId())
.isNotNull(PhysicBill::getBalance)
.gt(PhysicBill::getId, billHandover.getStartBillId()) .gt(PhysicBill::getId, billHandover.getStartBillId())
.le(PhysicBill::getId, billHandover.getEndBillId()) .le(PhysicBill::getId, billHandover.getEndBillId())
.orderByAsc(PhysicBill::getId)); .orderByAsc(PhysicBill::getId));
......
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