|
|
|
|
@ -52,7 +52,7 @@ public class CodeController extends AbstractController {
|
|
|
|
|
setFetchSize(req);
|
|
|
|
|
return setCollectionInfo(
|
|
|
|
|
new ModelAndView("jsonView"),
|
|
|
|
|
codeService.getCategoryList(req.setIncludeAll(true)),
|
|
|
|
|
codeService.getCategoryList(req),
|
|
|
|
|
"category"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
@ -132,7 +132,7 @@ public class CodeController extends AbstractController {
|
|
|
|
|
setFetchSize(req);
|
|
|
|
|
return setCollectionInfo(
|
|
|
|
|
new ModelAndView("jsonView"),
|
|
|
|
|
codeService.getGroupList(req.setIncludeAll(true)),
|
|
|
|
|
codeService.getGroupList(req),
|
|
|
|
|
"group"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
@ -229,7 +229,7 @@ public class CodeController extends AbstractController {
|
|
|
|
|
setFetchSize(req);
|
|
|
|
|
return setCollectionInfo(
|
|
|
|
|
new ModelAndView("jsonView"),
|
|
|
|
|
codeService.getCodeList(req.setIncludeAll(true)),
|
|
|
|
|
codeService.getCodeList(req),
|
|
|
|
|
"code"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|