/* * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
* Copyright (c) 2013-2018 北京泉江科技有限公司
* 创建人:超级管理员
* 日 期:2020-03-30 14:04
* 描 述:专业技术职务经历
*/
var refreshGirdData;
var empId = request('empId');
var status = false;
var bootstrap = function ($, learun) {
"use strict";
var page = {
init: function () {
page.refreshStatus();
page.initGird();
page.bind();
},
refreshStatus: function () {
//获取主表状态
learun.httpAsyncGet(top.$.rootUrl + '/EducationalAdministration/EmpInfo/GetFormData?keyValue=' + empId, function (res) {
if (res.code == 200) {
if (res.data.EmpInfo != null) {
status = res.data.EmpInfo.TechnicalPostStatus;
}
}
});
},
bind: function () {
$('#multiple_condition_query').lrMultipleQuery(function (queryJson) {
page.search(queryJson);
}, 220, 400);
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
});
// 新增
$('#lr_add').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
learun.layerForm({
id: 'formInPM_TechnicalPost',
title: '新增',
url: top.$.rootUrl + '/EducationalAdministration/PM_TechnicalPost/Form?empId=' + empId,
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
});
// 编辑
$('#lr_edit').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
var keyValue = $('#gridtable').jfGridValue('ID');
if (learun.checkrow(keyValue)) {
learun.layerForm({
id: 'formInPM_TechnicalPost',
title: '编辑',
url: top.$.rootUrl + '/EducationalAdministration/PM_TechnicalPost/Form?keyValue=' + keyValue + '&empId=' + empId,
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
}
});
// 删除
$('#lr_delete').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
var keyValue = $('#gridtable').jfGridValue('ID');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认删除该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/EducationalAdministration/PM_TechnicalPost/DeleteForm', { keyValue: keyValue }, function () {
refreshGirdData();
});
}
});
}
});
// 提交
$('#lr_check').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
learun.layerConfirm('是否确认提交!', function (res) {
if (res) {
learun.postForm( top.$.rootUrl + '/EducationalAdministration/PM_TechnicalPost/Submit', { empId: empId, status: true }, function (info) {
refreshGirdData();
});
}
});
});
// 取消提交
$('#lr_uncheck').on('click', function () {
learun.layerConfirm('是否取消提交!', function (res) {
if (res) {
learun.postForm(top.$.rootUrl + '/EducationalAdministration/PM_TechnicalPost/Submit', { empId: empId, status: false }, function () {
refreshGirdData();
});
}
});
});
},
// 初始化列表
initGird: function () {
$('#gridtable').lrAuthorizeJfGrid({
url: top.$.rootUrl + '/EducationalAdministration/PM_TechnicalPost/GetPageList',
headData: [
{ label: "技术职务名称", name: "TPName", width: 100, align: "left" },
{ label: "专业", name: "Major", width: 100, align: "left" },
{ label: "证书编号", name: "CertificateNo", width: 100, align: "left" },
{ label: "取得时间", name: "GetTime", width: 130, align: "left" },
{ label: "聘任时间", name: "AppointmentTime", width: 130, align: "left" },
{ label: "发证机关", name: "CertificationAuthority", width: 100, align: "left" },
{
label: "提交状态", name: "SubmitStatus", width: 100, align: "left",
formatter: function (cellvalue) {
return cellvalue == true ? "" : "";
}
},
],
mainId: 'ID',
isPage: true
});
page.search();
},
search: function (param) {
param = param || {};
param.EmpId = empId;
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
}
};
refreshGirdData = function () {
page.search();
page.refreshStatus();
};
page.init();
}