| | |
| | | datas = new ArrayList<>(); |
| | | } |
| | | |
| | | ResultVo resultVo = new ResultVo((int) Math.ceil((double) count / (double) oaWorkflowFormDto.getRow()), count, datas); |
| | | ResultVo resultVo = new ResultVo((int) Math.ceil((double) count / (int) paramIn.get("row")), count, datas); |
| | | |
| | | ResponseEntity<String> responseEntity = new ResponseEntity<String>(resultVo.toString(), HttpStatus.OK); |
| | | |
| | |
| | | |
| | | AuditUser auditUser = new AuditUser(); |
| | | auditUser.setProcessDefinitionKey(oaWorkflowDtos.get(0).getProcessDefinitionKey()); |
| | | auditUser.setFlowId(paramIn.getString("flowId")); |
| | | auditUser.setUserId(paramIn.getString("userId")); |
| | | auditUser.setStoreId(paramIn.getString("storeId")); |
| | | auditUser.setPage(paramIn.getInteger("page")); |
| | |
| | | |
| | | AuditUser auditUser = new AuditUser(); |
| | | auditUser.setProcessDefinitionKey(oaWorkflowDtos.get(0).getProcessDefinitionKey()); |
| | | auditUser.setFlowId(paramIn.getString("flowId")); |
| | | auditUser.setUserId(paramIn.getString("userId")); |
| | | auditUser.setStoreId(paramIn.getString("storeId")); |
| | | auditUser.setPage(paramIn.getInteger("page")); |
| | |
| | | Map paramMap = new HashMap(); |
| | | paramMap.put("storeId", paramIn.getString("storeId")); |
| | | paramMap.put("ids", ids.toArray(new String[ids.size()])); |
| | | paramMap.put("page", 1); |
| | | paramMap.put("row", ids.size()); |
| | | List<Map> formDatas = oaWorkflowFormInnerServiceSMOImpl.queryOaWorkflowFormDatas(paramMap); |
| | | |
| | | for (JSONObject data : datas) { |