|
@@ -9331,6 +9331,7 @@ public class TaskController extends BaseController {
|
|
|
List<Map<String,Object>> maps = Lists.newArrayList();
|
|
|
|
|
|
Long colId = ReqUtil.getLong(request, "colId");
|
|
|
+ Boolean doIt = ReqUtil.getBoolean(request, "doIt");
|
|
|
|
|
|
if(auditType == ColEnum.ColAuditType.Report.getKey() ||
|
|
|
auditType == ColEnum.ColAuditType.ReportCollect.getKey() ||
|
|
@@ -9473,6 +9474,7 @@ public class TaskController extends BaseController {
|
|
|
}
|
|
|
mav.addObject("beans", maps);
|
|
|
mav.addObject("auditType", auditType);
|
|
|
+ mav.addObject("doIt", doIt);
|
|
|
return mav;
|
|
|
}
|
|
|
|