WorktimeTotalReport.js 735 B

12345678910111213141516171819
  1. function reload() {
  2. var schoolYearID = $("#ddlSchoolyear").combobox("getValue");
  3. var collegeID = $("#ddlCollege").combobox("getValue");
  4. var yearID = $("#ddlYear").combobox("getValue");
  5. if (yearID == nonSelect) yearID = null;
  6. if (collegeID == nonSelect) collegeID = null;
  7. top.ReportParameter = {
  8. SchoolyearID: schoolYearID,
  9. CollegeID: collegeID,
  10. GradeyearID: yearID
  11. };
  12. if (schoolYearID == nonSelect || !schoolYearID)
  13. $.messager.alert("系统信息", "请选择学年学期。");
  14. else
  15. $("#reportContent").attr("src", CMS_SystemConfig.VirtualDirectoryPath + CMS_SystemConfig.ScriptReportPagePath + "?ReportFolder=%2fPaymentManage%2fWorktimeTotalReport");
  16. }