Showing
2 changed files
with
46 additions
and
1 deletions
xingyun-sc/src/main/java/com/lframework/xingyun/sc/controller/ledger/FundCoordinationController.java
| ... | ... | @@ -388,7 +388,7 @@ public class FundCoordinationController extends DefaultBaseController { |
| 388 | 388 | * 查询冻结的订货单列表 |
| 389 | 389 | */ |
| 390 | 390 | @ApiOperation("查询冻结的订货单列表") |
| 391 | - @GetMapping("/queryFreeze") | |
| 391 | + @PostMapping("/queryFreeze") | |
| 392 | 392 | public InvokeResult<PageResult<GetPurchaseOrderInfoBo>> queryFreeze(@Valid @RequestBody QueryPurchaseOrderInfoVo vo) { |
| 393 | 393 | |
| 394 | 394 | PageResult<PurchaseOrderInfo> pageResult = purchaseOrderInfoService.queryFreeze(getPageIndex(vo), getPageSize(vo), vo); | ... | ... |
| ... | ... | @@ -79,4 +79,49 @@ public class FlowTaskServiceImpl implements FlowTaskService { |
| 79 | 79 | e.printStackTrace(); |
| 80 | 80 | } |
| 81 | 81 | } |
| 82 | + | |
| 83 | + @OpLog(type = OtherOpLogType.class, name = "更新资金协调手续,ID:{}", params = {"#id"}) | |
| 84 | + @Transactional(rollbackFor = Exception.class) | |
| 85 | + @Override | |
| 86 | + public void updateFundCoordinationMap(Map<String, Object> map) { | |
| 87 | + //流程编码 | |
| 88 | + Object n = map.get("nodeCode"); | |
| 89 | + String nodeCode = String.valueOf(n); | |
| 90 | + //审核意见 | |
| 91 | + Object m = map.get("message"); | |
| 92 | + String message = String.valueOf(m); | |
| 93 | + //审核状态 | |
| 94 | + Object e = map.get("examStatus"); | |
| 95 | + String examStatus = String.valueOf(e); | |
| 96 | + | |
| 97 | + if (nodeCode.equals("fund_coordination_1")) { | |
| 98 | + //办事处内勤 | |
| 99 | + | |
| 100 | + } else if (nodeCode.equals("fund_coordination_2")) { | |
| 101 | + //办事处主管 | |
| 102 | + | |
| 103 | + } else if (nodeCode.startsWith("fund_coordination_3-")) { | |
| 104 | + //办事处分管 | |
| 105 | + | |
| 106 | + } else if (nodeCode.equals("fund_coordination_4")) { | |
| 107 | + //运作科资金管理岗 | |
| 108 | + | |
| 109 | + } else if (nodeCode.equals("fund_coordination_5")) { | |
| 110 | + //运作科主管 | |
| 111 | + | |
| 112 | + } else if (nodeCode.equals("fund_coordination_6")) { | |
| 113 | + //营销部主管 | |
| 114 | + | |
| 115 | + } else if (nodeCode.equals("fund_coordination_7")) { | |
| 116 | + //财务部副经理 | |
| 117 | + | |
| 118 | + } else if (nodeCode.equals("fund_coordination_8")) { | |
| 119 | + //营销中心主管 | |
| 120 | + | |
| 121 | + } else if (nodeCode.equals("fund_coordination_9")) { | |
| 122 | + //总经理 | |
| 123 | + | |
| 124 | + } | |
| 125 | + | |
| 126 | + } | |
| 82 | 127 | } | ... | ... |