12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "DifferentDynamicBatchQuitReport";
- }
- @section scripts{
- <script type="text/javascript">
- var curWwwPath = window.document.location.href;
- var pathName = window.document.location.pathname;
- var pos = curWwwPath.indexOf(pathName);
- var localhostPaht = curWwwPath.substring(0, pos) + "/";
- var nonSelect = "@DropdownList.SELECT_ALL";
- var SchoolName = '@EMIS.Utility.RSL.Get("UniversityInscribe")';
- 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
- };
- var str = CMS_SystemConfig.VirtualDirectoryPath + CMS_SystemConfig.ScriptReportPagePath + "?ReportFolder=%2fStudentManage%2fDifferentDynamicReportForAllQuit";
- $("#reportContent").attr("src", str);
- }
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <div class="search_list">
- <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute;
- left: 5px;"></iframe>
- </div>
- </div>
|