Commit 02c72d20 by huluobin

update

parent 91f08aea
...@@ -239,7 +239,6 @@ public abstract class AbstractCostService implements CostService { ...@@ -239,7 +239,6 @@ public abstract class AbstractCostService implements CostService {
public IPage<CostDto> checkCostList(CostApiDto.CheckCostListReq req) { public IPage<CostDto> checkCostList(CostApiDto.CheckCostListReq req) {
IPage<CostDomain> page = new Page<>(req.getPageNum(), req.getPageSize()); IPage<CostDomain> page = new Page<>(req.getPageNum(), req.getPageSize());
UserDomain userDomain = userService.findByUserid(req.getUserid());
return costDao.checkCostList(page, req).convert(CostDomain::castToDto); return costDao.checkCostList(page, req).convert(CostDomain::castToDto);
} }
......
...@@ -431,6 +431,10 @@ ...@@ -431,6 +431,10 @@
</if> </if>
/*部门审核*/ /*部门审核*/
<if test="req.type == 2"> <if test="req.type == 2">
/*全部 0 待提交 1- 待财务审核 2待出纳付款 3被驳回 4已支付 5已作废 6-待部门审核 7-待财务审核 8-待最终审核人审核*/
<if test=" req.status == 1 ">
and t1.cost_status not in (0,5)
</if>
/*待审核*/ /*待审核*/
<if test=" req.status == 2 "> <if test=" req.status == 2 ">
and t1.cost_status = 6 and t1.cost_status = 6
......
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 to comment