1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- var UserIDs;
- var SchoolyearID;
- var CollegeID;
- var Year;
- var StandardID;
- var EducationID;
- var LearningformID;
- var LearnSystem;
- var ClassmajorID;
- var ConditionString;
- var ApprovalStatus;
- var isWindowCanClose = false;
- function Report() {
- var userIDs = reportParameter.ids;
- top.ReportParameter = {
- SchoolyearID: SchoolyearID,
- CollegeID: CollegeID,
- YearID: Year,
- StandardID: StandardID,
- EducationID: EducationID,
- LearningformID: LearningformID,
- LearnSystem: LearnSystem,
- ClassmajorID: ClassmajorID,
- ApprovalStatus: ApprovalStatus,
- SchoolName: SchoolName,
- LoginUserID:LoginUserID,
- ConditionString: ConditionString,
- UserIDs: userIDs
- };
- var str = CMS_SystemConfig.VirtualDirectoryPath + CMS_SystemConfig.ScriptReportPagePath + "?ReportFolder=%2fEducationResult%2fExaminationExemptionReport";
- $("#reportContent").attr("src", str);
- isWindowCanClose = true;
- }
- $.parser.onComplete = function (context) {
- var jsonString = "";
- var parameterString = "";
- var windowID = $.SystemGeneral.getUrlParam("WindowID");
- reportParameter = top.$('#' + windowID).data("inputData");
- SchoolyearID = reportParameter.schoolyearID;
- CollegeID = reportParameter.collegeID;
- StandardID = reportParameter.standardID;
- Year = reportParameter.year;
- EducationID = reportParameter.educationID;
- LearningformID = reportParameter.learningformID;
- LearnSystem = reportParameter.learnSystem;
- ClassmajorID = reportParameter.classmajorID;
- ApprovalStatus = reportParameter.approvalStatus;
- ConditionString = " and " + reportParameter.conditionString;
- if (CollegeID == nonSelect) CollegeID = null;
- if (StandardID == nonSelect) StandardID = null;
- if (Year == nonSelect) Year = null;
- if (EducationID == nonSelect) EducationID = null;
- if (LearningformID == nonSelect) LearningformID = null;
- if (LearnSystem == nonSelect) LearnSystem = null;
- if (SchoolyearID == nonSelect) SchoolyearID = null;
- if (ClassmajorID == nonSelect) ClassmajorID = null;
- if (ApprovalStatus == nonSelect) ApprovalStatus = null;
- Report();
- }
|