|
- /* * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
- * Copyright (c) 2013-2018 北京泉江科技有限公司
- * 创建人:超级管理员
- * 日 期:2019-07-17 11:20
- * 描 述:新生录取管理
- */
- var refreshGirdData;
- var bootstrap = function ($, learun) {
- "use strict";
- var page = {
- init: function () {
- page.initGird();
- page.bind();
- page.refreshMoney();
- },
- bind: function () {
- $('#multiple_condition_query').lrMultipleQuery(function (queryJson) {
- page.search(queryJson);
- }, 380, 400);
- $("#IsPay").lrDataItemSelect({ code: "jyYewOrNot" });
- $('#Year').lrselect({
- url: top.$.rootUrl + '/EducationalAdministration/StuEnroll/GetYearListByClass',
- value: "year",
- text: "year",
- })
-
- $('#DeptNo').lrselect({
- allowSearch: true,
- value: "deptno",
- text: "deptname",
- url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdDeptInfo',
- select: function (item) {
- if (item) {
- $('#MajorNo').lrselectRefresh({
- allowSearch: true,
- url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdMajorInfo',
- param: { strWhere: "DeptNo='" + item.deptno + "' AND CheckMark=1" }
- });
- } else {
- $('#MajorNo').lrselectRefresh({
- allowSearch: true,
- url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdMajorInfo',
- param: { strWhere: "1=1 AND CheckMark=1" }
- });
- }
-
- }
- });
- $('#MajorNo').lrselect({
- allowSearch: true,
- url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdMajorInfo',
- value: "majorno",
- text: "majorname",
- param: { strWhere: "1=1 AND CheckMark=1" },
- select: function (item) {
- if (item) {
- $('#ClassNo').lrselectRefresh({
- allowSearch: true,
- url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
- param: { strWhere: "majorno='" + item.majorno + "' AND CheckMark=1" }
- });
- } else {
- $('#ClassNo').lrselectRefresh({
- allowSearch: true,
- url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
- param: { strWhere: "1=1 AND CheckMark=1" }
- });
- }
- }
- });
- $('#ClassNo').lrselect({
- allowSearch: true,
- url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
- param: { strWhere: "1=1 AND CheckMark=1" },
- value: "classno",
- text: "classname"
- });
- // 刷新
- $('#lr_refresh').on('click', function () {
- location.reload();
- });
-
- //录入实收金额
- $('#lr_actual').on('click', function () {
- var keyValue = $('#gridtable').jfGridValue('StuId');
- var keyValue1 = $('#gridtable').jfGridValue('ActualPayAmount');
- if (learun.checkrow(keyValue)) {
-
- if (!keyValue1) {
- learun.layerForm({
- id: 'form',
- title: '实收金额',
- url: top.$.rootUrl + '/EducationalAdministration/StuEnroll/AmountForm?keyValue=' + keyValue,
- width: 400,
- height: 200,
- callBack: function (id) {
- return top[id].acceptClick(refreshGirdData);
- }
- });
- } else {
- learun.alert.warning('已经录入过实收金额了!');
- }
- }
-
- })
-
- //金额变动记录
- $('#lr_amountRecord').on('click', function () {
- var data = $('#gridtable').jfGridGet('rowdata');
- if (data.length > 1) {
- learun.alert.warning('只能选择一个学生查看!');
- return;
- }
- var keyValue = $('#gridtable').jfGridValue('StuId');
- if (learun.checkrow(keyValue)) {
-
- learun.layerFormForPercent({
- id: 'form',
- title: '实收金额',
- url: top.$.rootUrl + '/EducationalAdministration/StuEnrollAmountRecord/Index?keyValue=' + keyValue,
- width: "80%",
- height: '80%',
- btn: null
- });
- }
-
- })
-
-
-
- $('#lr_view').on('click', function () {
- var keyValue = $('#gridtable').jfGridValue('StuId');
- if (learun.checkrow(keyValue)) {
- learun.layerForm({
- id: 'form',
- title: '查看',
- url: top.$.rootUrl + '/EducationalAdministration/StuEnroll/FormView?keyValue=' + keyValue,
- width: 800,
- height: 600,
- btn: null
- });
- }
- });
- //新生缴费
- $("#lr_pay").on('click', function () {
- var data = $('#gridtable').jfGridGet('rowdata');
- if (data.length > 0) {
- learun.layerConfirm('是否确认缴费!',
- function (res) {
- if (res) {
- learun.postForm(top.$.rootUrl + '/EducationalAdministration/StuEnroll/IsPay',
- { stuId: JSON.stringify(data), status: true },
- function (res) {
- refreshGirdData();
- });
- }
- });
- }
- });
- //取消缴费
- $("#lr_nopay").on('click', function () {
- var data = $('#gridtable').jfGridGet('rowdata');
- if (data.length > 0) {
- learun.layerConfirm('是否取消缴费!',
- function (res) {
- if (res) {
-
- learun.postForm(top.$.rootUrl + '/EducationalAdministration/StuEnroll/IsPay',
- { stuId: JSON.stringify(data), status: false },
- function (res) {
- refreshGirdData();
- });
- }
- });
- }
- });
-
- //生成应缴金额
- $("#lr_getmoney").on('click', function () {
- learun.postForm(top.$.rootUrl + '/EducationalAdministration/StuEnroll/GetMoney',
- {},
- function (res) {
- refreshGirdData();
- });
- });
-
-
- },
- // 初始化列表
- initGird: function () {
- $('#gridtable').lrAuthorizeJfGrid({
- url: top.$.rootUrl + '/EducationalAdministration/StuEnroll/GetPageList',
- headData: [
- { label: "学生报名号", name: "RegistrationNo", width: 100, align: "left" },
- {
- label: "缴费状态", name: "IsPay", width: 60, align: "left", formatter: function (val, row) {
- if (row.IsPay) {
- return '<span class=\"label label-success\">缴费</span>';
- } else if (row.IsPay == false) {
- return '<span class=\"label label-warning\">未缴费</span>';
- }
- else {
- return "未处理";
- }
- }
- },
- { label: "姓名", name: "StuName", width: 100, align: "left" },
- {
- label: "班级", name: "ClassNo", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('custmerData', {
- url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'bjsj',
- key: value,
- keyId: 'classno',
- callback: function (_data) {
- callback(_data['classname']);
- }
- });
- }
- },
- { label: "应缴金额", name: "PayAmount", width: 100, align: "left" },
- { label: "实收金额", name: "ActualPayAmount", width: 100, align: "left" },
- {
- label: "性别", name: "Gender", width: 100, align: "left", formatter: function (value) {
- return value == "1" ? "男" : "女";
-
- }
- },
- {
- label: "民族", name: "Nationals", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('dataItem', {
- key: value,
- code: 'National',
- callback: function (_data) {
- callback(_data.text);
- }
- });
- }
- },
- { label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
- { label: "身份证", name: "IDCard", width: 100, align: "left" },
- {
- label: "政治面貌", name: "Political", width: 100, align: "left",
- formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('dataItem', {
- key: value,
- code: 'BCdPartyFace',
- callback: function (_data) {
- callback(_data.text);
- }
- });
- }
- },
- {
- label: "届别", name: "FreshType", width: 100, align: "left",
- formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('dataItem', {
- key: value,
- code: 'timeType',
- callback: function (_data) {
- callback(_data.text);
- }
- });
- }
- },
- {
- label: "户别", name: "ResidenceType", width: 100, align: "left",
- formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('dataItem', {
- key: value,
- code: 'HouseholdCategory',
- callback: function (_data) {
- callback(_data.text);
- }
- });
- }
- },
- {
- label: "考生类别", name: "StuType", width: 100, align: "left",
- formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('dataItem', {
- key: value,
- code: 'stuType',
- callback: function (_data) {
- callback(_data.text);
- }
- });
- }
- },
- { label: "户口地", name: "ResidenceAddress", width: 100, align: "left" },
- { label: "非京籍报考类", name: "NonNative", width: 100, align: "left" },
- { label: "学籍所在学校", name: "FromSchool", width: 100, align: "left" },
- { label: "家庭住址", name: "HomeAddress", width: 100, align: "left" },
- { label: "第一监护人", name: "FirstGuardian", width: 100, align: "left" },
- { label: "与被监护人关系", name: "FirstRelationship", width: 100, align: "left" },
- { label: "工作单位", name: "FirstUnits", width: 100, align: "left" },
- { label: "联系电话", name: "FirstMobile", width: 100, align: "left" },
- { label: "第二监护人", name: "SecondGuardian", width: 100, align: "left" },
- { label: "与被监护人关系", name: "SecondRelationship", width: 100, align: "left" },
- { label: "工作单位", name: "SecondUnits", width: 100, align: "left" },
- { label: "联系电话", name: "SecondMobile", width: 100, align: "left" },
- { label: "接收通知书地址", name: "Acceptance", width: 100, align: "left" },
- { label: "收件人", name: "Recipient", width: 100, align: "left" },
- { label: "邮政编码", name: "ZipCode", width: 100, align: "left" },
- { label: "既往病史", name: "MedicalHistory", width: 100, align: "left" },
- { label: "加分照顾对象", name: "AdditionalCare", width: 100, align: "left" },
- { label: "录取专业代码", name: "MajorNo", width: 100, align: "left" },
- { label: "录取专业名称", name: "MajorName", width: 100, align: "left" },
- {
- label: "录取方式", name: "Admissions", width: 100, align: "left",
- formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('dataItem', {
- key: value,
- code: 'enrollType',
- callback: function (_data) {
- callback(_data.text);
- }
- });
- }
- },
- { label: "是否住宿", name: "IsAccommodation", width: 100, align: "left" },
- { label: "准考证号", name: "ExamRegistration", width: 100, align: "left" },
- ],
- mainId: 'StuId',
- isMultiselect: true,
- isPage: true
- });
- page.search();
- },
- refreshMoney: function () {
-
- //learun.postForm(top.$.rootUrl + '/EducationalAdministration/StuEnroll/GetPaymentInfo',
- // {},
- // function (res) {
- // });
-
- $.post(
- top.$.rootUrl + '/EducationalAdministration/StuEnroll/GetPaymentInfo',
- function (res) {
- $("#allAmount").html(res.data.a);
- $("#isAmount").html(res.data.b);
- }, "json");
- },
- search: function (param) {
- param = param || {};
- //param.SqlParameter = ' AND IsCheckIn IS NOT NULL AND IsSubsidize1 IS NOT NULL';
- param.SqlParameter = ' AND IsReport=1';
- param.Grade = "20";
- $('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
- }
- };
- refreshGirdData = function () {
- page.search();
- };
- page.init();
- }
|