This commit is contained in:
parent
fc6aa27ad4
commit
246494c9cf
|
@ -617,4 +617,11 @@ public class TAbilityApplicationController {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@GetMapping("/getApplyPriceCount")
|
||||||
|
@ApiOperation("资金报表大屏获取总节约资金")
|
||||||
|
@LogOperation("资金报表大屏获取总节约资金")
|
||||||
|
public Result getApplyPriceCount() {
|
||||||
|
return new Result().ok(tAbilityApplicationService.getApplyPriceCount());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -236,15 +236,15 @@ public class CorrectionListenerV3 implements TaskListener, ExecutionListener, Ac
|
||||||
|
|
||||||
List<HistoricActivityInstance> historicActivityInstanceList = historyService.createHistoricActivityInstanceQuery().processInstanceId(delegateTask.getProcessInstanceId())
|
List<HistoricActivityInstance> historicActivityInstanceList = historyService.createHistoricActivityInstanceQuery().processInstanceId(delegateTask.getProcessInstanceId())
|
||||||
.activityType("userTask").unfinished().orderByHistoricActivityInstanceEndTime().desc().list();
|
.activityType("userTask").unfinished().orderByHistoricActivityInstanceEndTime().desc().list();
|
||||||
//if (!historicActivityInstanceList.isEmpty() && historicActivityInstanceList.get(0).getAssignee().equals(assignee)) {
|
if (!historicActivityInstanceList.isEmpty() && historicActivityInstanceList.get(0).getAssignee().equals(assignee)) {
|
||||||
// taskService.addComment(delegateTask.getId(), delegateTask.getProcessInstanceId(), "审批人重复,默认通过");
|
taskService.addComment(delegateTask.getId(), delegateTask.getProcessInstanceId(), "审批人重复,默认通过");
|
||||||
// taskService.setVariable(delegateTask.getId(), ActTaskService.Task_HANDLE_STATE, ActTaskService.Task_HANDLE_STATE_AGREE);
|
taskService.setVariable(delegateTask.getId(), ActTaskService.Task_HANDLE_STATE, ActTaskService.Task_HANDLE_STATE_AGREE);
|
||||||
// taskService.setVariable(delegateTask.getId(), "backToFirst", Boolean.FALSE);
|
taskService.setVariable(delegateTask.getId(), "backToFirst", Boolean.FALSE);
|
||||||
// taskService.setVariable(delegateTask.getId(), "autoApply", delegateTask.getId());
|
taskService.setVariable(delegateTask.getId(), "autoApply", delegateTask.getId());
|
||||||
// taskService.complete(delegateTask.getId(), delegateTask.getVariables());
|
taskService.complete(delegateTask.getId(), delegateTask.getVariables());
|
||||||
// sysNoticeService.updateApplyStateById(delegateTask.getProcessInstanceId(), 1);
|
sysNoticeService.updateApplyStateById(delegateTask.getProcessInstanceId(), 1);
|
||||||
// return;
|
return;
|
||||||
//}
|
}
|
||||||
|
|
||||||
List<TAbilityApplicationDTO> dtoList = delegateTask.getVariable("tAbilityApplicationDTOList", List.class);
|
List<TAbilityApplicationDTO> dtoList = delegateTask.getVariable("tAbilityApplicationDTOList", List.class);
|
||||||
Optional<TAbilityApplicationDTO> tAbilityApplicationDTO = dtoList.stream().filter(index -> {
|
Optional<TAbilityApplicationDTO> tAbilityApplicationDTO = dtoList.stream().filter(index -> {
|
||||||
|
|
|
@ -84,4 +84,6 @@ public interface TAbilityApplicationService extends CrudService<TAbilityApplicat
|
||||||
Object getProvideDistrictFundStatement(Map<String, Object> params);
|
Object getProvideDistrictFundStatement(Map<String, Object> params);
|
||||||
|
|
||||||
Object getApplyDistrictFundStatement(Map<String, Object> params);
|
Object getApplyDistrictFundStatement(Map<String, Object> params);
|
||||||
|
|
||||||
|
Object getApplyPriceCount();
|
||||||
}
|
}
|
Loading…
Reference in New Issue