Commit 13706a12 by zhu.zewen

修复专账交接班列表

parent 4d4583fb
...@@ -129,8 +129,8 @@ public class PhysicBillServiceImpl extends AbstractService implements PhysicBill ...@@ -129,8 +129,8 @@ public class PhysicBillServiceImpl extends AbstractService implements PhysicBill
public IPage<PhysicBillHandover> listHandoverPage(PhysicBillHandoverQueryReq req) { public IPage<PhysicBillHandover> listHandoverPage(PhysicBillHandoverQueryReq req) {
Page<PhysicBillHandover> page = buildEmptyPage(req); Page<PhysicBillHandover> page = buildEmptyPage(req);
return physicBillHandoverMapper.selectPage(page, Wrappers.<PhysicBillHandover>lambdaQuery() return physicBillHandoverMapper.selectPage(page, Wrappers.<PhysicBillHandover>lambdaQuery()
.eq(PhysicBillHandover::getDeptId, req.getDeptId()) .eq(ObjectUtil.isNotEmpty(req.getDeptId()), PhysicBillHandover::getDeptId, req.getDeptId())
.eq(PhysicBillHandover::getStatus, req.getStatus()) .eq(ObjectUtil.isNotEmpty(req.getStatus()), PhysicBillHandover::getStatus, req.getStatus())
.ge(ObjectUtil.isNotEmpty(req.getStartFinishTime()), PhysicBillHandover::getFinishTime, req.getStartFinishTime()) .ge(ObjectUtil.isNotEmpty(req.getStartFinishTime()), PhysicBillHandover::getFinishTime, req.getStartFinishTime())
.lt(ObjectUtil.isNotEmpty(req.getEndFinishTime()), PhysicBillHandover::getFinishTime, req.getEndFinishTime()) .lt(ObjectUtil.isNotEmpty(req.getEndFinishTime()), PhysicBillHandover::getFinishTime, req.getEndFinishTime())
.orderByDesc(PhysicBillHandover::getId)); .orderByDesc(PhysicBillHandover::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