Просмотр исходного кода

[task-1595]首页待办返回记录数,已办数量和已办列表数据对不上

szjbdgzl 2 лет назад
Родитель
Сommit
d6e9e2da74

+ 2 - 2
ibps-provider-root/modules/provider-bpmn/src/main/java/com/lc/ibps/office/provider/BpmInitiatedProvider.java

@@ -1064,8 +1064,8 @@ public class BpmInitiatedProvider extends GenericProvider implements IBpmInitiat
 	private void getHandledTasks(final Infobox infobox) {
 		int count = -1;
 		APIRequest reqeust= new APIRequest();
-		reqeust.addParameters("end", true + "");
-		APIResult<Integer> handledResult = bpmReceivedService.handledTaskCount(reqeust);
+		//reqeust.addParameters("end", true + "");
+		APIResult<Integer> handledResult = bpmReceivedService.handledCount(reqeust);
 		if(handledResult.isSuccess() && BeanUtils.isNotEmpty(handledResult.getData())) {
 			count = handledResult.getData();
 			infobox.setDataText(count+"");