1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- var SchoolyearID, CollegeID, yearID, StandardID, LearningformID, LearnSystem, EducationID, ClassmajorID, DifferentDynamicType, ApprovalStatus, DifferentDynamicID,UserID;
- $.parser.onComplete = function (context) {
- var jsonString = "";
- var parameterString = "";
- var windowID = $.SystemGeneral.getUrlParam("WindowID");
- reportParameter = top.$('#' + windowID).data("inputData");
- SchoolyearID = reportParameter.SchoolyearID;
- CollegeID = reportParameter.CollegeID;
- yearID = reportParameter.yearID;
- StandardID = reportParameter.StandardID;
- LearningformID = reportParameter.LearningformID;
- LearnSystem = reportParameter.LearnSystem;
- EducationID = reportParameter.EducationID;
- ClassmajorID = reportParameter.ClassmajorID;
- DifferentDynamicType = reportParameter.DifferentDynamicType;
- ApprovalStatus = reportParameter.ApprovalStatus;
- DifferentDynamicID = reportParameter.DifferentDynamicID;
- UserID = reportParameter.UserID;
- if (SchoolyearID == nonSelect || SchoolyearID == "") SchoolyearID = null;
- if (CollegeID == nonSelect || CollegeID == "") CollegeID = null;
- if (yearID == nonSelect || yearID == "") yearID = null;
- if (StandardID == nonSelect || StandardID == "") StandardID = null;
- if (LearningformID == nonSelect || LearningformID == "") LearningformID = null;
- if (EducationID == nonSelect || EducationID == "") EducationID = null;
- if (ClassmajorID == nonSelect || ClassmajorID == "") ClassmajorID = null;
- if (DifferentDynamicType == nonSelect || DifferentDynamicType == "") DifferentDynamicType = null;
- if (ApprovalStatus == nonSelect || ApprovalStatus == "") ApprovalStatus = null;
- if (DifferentDynamicID == nonSelect || DifferentDynamicID == "") DifferentDynamicID = null;
- if (UserID == nonSelect || UserID == "") UserID = null;
- Report();
- }
- function Report() {
- top.ReportParameter = {
- SchoolyearID: SchoolyearID,
- CollegeID: CollegeID,
- yearID: yearID,
- StandardID:StandardID,
- LearningformID: LearningformID,
- LearnSystem:LearnSystem,
- EducationID: EducationID,
- ClassmajorID: ClassmajorID,
- DifferentDynamicType: DifferentDynamicType,
- ApprovalStatus: ApprovalStatus,
- DifferentDynamicID: DifferentDynamicID,
- SchoolName: SchoolName,
- UserID:UserID
- };
- var str = CMS_SystemConfig.VirtualDirectoryPath + CMS_SystemConfig.ScriptReportPagePath + "?ReportFolder=%2fStudentManage%2fDifferentDynamicReport";
- $("#reportContent").attr("src", str);
- }
|