|
|
|
@ -978,10 +978,10 @@ public class ZbdcController extends Controller {
|
|
|
|
|
*/
|
|
|
|
|
@IsLoginInterface({})
|
|
|
|
|
@IsNumericInterface({"page", "limit"})
|
|
|
|
|
public void CheckViewList() {
|
|
|
|
|
public void CheckViewListBySchool() {
|
|
|
|
|
//审核单位ID
|
|
|
|
|
String bureau_id = SessionKit.get(getRequest(), getResponse(), "bureau_id");
|
|
|
|
|
List<Record> list = zm.CheckViewList(bureau_id);
|
|
|
|
|
List<Record> list = zm.CheckViewListBySchool(bureau_id);
|
|
|
|
|
renderJson(CommonUtil.renderJsonForLayUI(list));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -990,10 +990,12 @@ public class ZbdcController extends Controller {
|
|
|
|
|
*/
|
|
|
|
|
@IsLoginInterface({})
|
|
|
|
|
@IsNumericInterface({"year"})
|
|
|
|
|
public void CheckViewDetail(int year) {
|
|
|
|
|
public void CheckViewDetailBySchool(int year) {
|
|
|
|
|
//审核单位ID
|
|
|
|
|
String bureau_id = SessionKit.get(getRequest(), getResponse(), "bureau_id");
|
|
|
|
|
List<Record> list = zm.CheckViewDetail(year, bureau_id);
|
|
|
|
|
List<Record> list = zm.CheckViewDetailBySchool(year, bureau_id);
|
|
|
|
|
renderJson(CommonUtil.renderJsonForLayUI(list));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//public void Check
|
|
|
|
|
}
|
|
|
|
|