Commit 7d4c34fc by liyanlin

fix

parent 9ac01135
......@@ -226,7 +226,9 @@ public class CostController {
Long count1 = costService.checkCostList(req).getTotal();
req.setType(4);
Long count2 = costService.checkCostList(req).getTotal();
return CostResult.success(count + count1 + count2);
req.setType(3);
Long count3 = costService.checkCostList(req).getTotal();
return CostResult.success(count + count1 + count2 + count3);
}
@ApiOperation("部门审核通过")
......
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