| | |
| | | */ |
| | | @RequestMapping(value = "/auditOaWorkflow", method = RequestMethod.POST) |
| | | public ResponseEntity<String> auditOaWorkflow(@RequestHeader(value = "store-id") String storeId, |
| | | @RequestHeader(value = "user-id") String userId, |
| | | @RequestBody JSONObject reqJson) { |
| | | Assert.hasKeyAndValue(reqJson, "flowId", "flowId不能为空"); |
| | | Assert.hasKeyAndValue(reqJson, "id", "id不能为空"); |
| | |
| | | Assert.hasKeyAndValue(reqJson, "auditMessage", "审核意见不能为空"); |
| | | Assert.hasKeyAndValue(reqJson, "auditCode", "审核状态不能为空"); |
| | | reqJson.put("storeId", storeId); |
| | | reqJson.put("curUserId", userId); |
| | | return getOaWorkflowFormBMOImpl.auditOaWorkflow(reqJson); |
| | | } |
| | | } |