@@ -0,0 +1,164 @@ | |||
using Learun.Util; | |||
using System.Data; | |||
using Learun.Application.TwoDevelopment.EducationalAdministration; | |||
using System.Web.Mvc; | |||
using System.Collections.Generic; | |||
using System; | |||
namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 | |||
/// Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2020-11-07 14:08 | |||
/// 描 述:资格证获取情况 | |||
/// </summary> | |||
public class PM_CertificateController : MvcControllerBase | |||
{ | |||
private PM_CertificateIBLL pM_CertificateIBLL = new PM_CertificateBLL(); | |||
#region 视图功能 | |||
/// <summary> | |||
/// 主页面 | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpGet] | |||
public ActionResult Index() | |||
{ | |||
return View(); | |||
} | |||
/// <summary> | |||
/// 表单页 | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpGet] | |||
public ActionResult Form() | |||
{ | |||
return View(); | |||
} | |||
/// <summary> | |||
/// 主页面-统计 | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpGet] | |||
public ActionResult StatisticIndex() | |||
{ | |||
return View(); | |||
} | |||
#endregion | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
[HttpGet] | |||
[AjaxOnly] | |||
public ActionResult GetPageList(string pagination, string queryJson) | |||
{ | |||
Pagination paginationobj = pagination.ToObject<Pagination>(); | |||
var data = pM_CertificateIBLL.GetPageList(paginationobj, queryJson); | |||
var jsonData = new | |||
{ | |||
rows = data, | |||
total = paginationobj.total, | |||
page = paginationobj.page, | |||
records = paginationobj.records | |||
}; | |||
return Success(jsonData); | |||
} | |||
/// <summary> | |||
/// 获取表单数据 | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpGet] | |||
[AjaxOnly] | |||
public ActionResult GetFormData(string keyValue) | |||
{ | |||
var PM_CertificateData = pM_CertificateIBLL.GetPM_CertificateEntity( keyValue ); | |||
var jsonData = new { | |||
PM_Certificate = PM_CertificateData, | |||
}; | |||
return Success(jsonData); | |||
} | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
[HttpGet] | |||
[AjaxOnly] | |||
public ActionResult GetPageStatisticList(string pagination, string queryJson) | |||
{ | |||
Pagination paginationobj = pagination.ToObject<Pagination>(); | |||
var data = pM_CertificateIBLL.GetPageStatisticList(paginationobj, queryJson); | |||
var jsonData = new | |||
{ | |||
rows = data, | |||
total = paginationobj.total, | |||
page = paginationobj.page, | |||
records = paginationobj.records | |||
}; | |||
return Success(jsonData); | |||
} | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpPost] | |||
[AjaxOnly] | |||
public ActionResult DeleteForm(string keyValue) | |||
{ | |||
pM_CertificateIBLL.DeleteEntity(keyValue); | |||
return Success("删除成功!"); | |||
} | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpPost] | |||
[ValidateAntiForgeryToken] | |||
[AjaxOnly] | |||
public ActionResult SaveForm(string keyValue, string strEntity) | |||
{ | |||
var loginUserInfo = LoginUserInfo.Get(); | |||
PM_CertificateEntity entity = strEntity.ToObject<PM_CertificateEntity>(); | |||
entity.Updater = loginUserInfo.userId; | |||
entity.UpdateTime = DateTime.Now; | |||
pM_CertificateIBLL.SaveEntity(keyValue,entity); | |||
return Success("保存成功!"); | |||
} | |||
/// <summary> | |||
/// 提交 | |||
/// </summary> | |||
/// <param name="keyValue"></param> | |||
/// <param name="empId"></param> | |||
/// <returns></returns> | |||
public ActionResult Submit(string empId,bool status) | |||
{ | |||
pM_CertificateIBLL.Submit(empId,status); | |||
if (status) | |||
{ | |||
return Success("提交成功!"); | |||
} | |||
else | |||
{ | |||
return Success("取消提交成功"); | |||
} | |||
} | |||
#endregion | |||
} | |||
} |
@@ -22,7 +22,8 @@ | |||
#tab5 > .lr-scroll-box, | |||
#tab6 > .lr-scroll-box, | |||
#tab7 > .lr-scroll-box, | |||
#tab8 > .lr-scroll-box { | |||
#tab8 > .lr-scroll-box, | |||
#tab9 > .lr-scroll-box { | |||
height: 100%; | |||
width: 100%; | |||
} | |||
@@ -40,6 +41,7 @@ | |||
<li><a data-value="tab6">家庭情况</a></li> | |||
<li><a data-value="tab7">教师聘任变更记录</a></li> | |||
<li><a data-value="tab8">年度考核结果管理</a></li> | |||
<li><a data-value="tab9">资格证获取情况</a></li> | |||
</ul> | |||
</div> | |||
<div class="tab-content lr-tab-content" id="lr_tab_content"> | |||
@@ -295,6 +297,10 @@ | |||
<div class="lr-form-item-title">考核结果</div> | |||
<input id="AssessResult" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-4 lr-form-item" data-table="EmpInfo"> | |||
<div class="lr-form-item-title">普通话等级</div> | |||
<div id="MandarinLevel"></div> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title lr-title">学历学位信息</div> | |||
</div> | |||
@@ -437,6 +443,9 @@ | |||
<div class="lr-form-wrap tab-pane" id="tab8"> | |||
<iframe id="PM_YearAssess" width="100%" scrolling="no" height="100%" frameborder="0"></iframe> | |||
</div> | |||
<div class="lr-form-wrap tab-pane" id="tab9"> | |||
<iframe id="PM_Certificate" width="100%" scrolling="no" height="100%" frameborder="0"></iframe> | |||
</div> | |||
</div> | |||
<script src="~/Content/ueditor/ueditor.config.js"></script> | |||
@@ -65,6 +65,7 @@ var bootstrap = function ($, learun) { | |||
$("#PM_FamilySituation").attr("src", "/EducationalAdministration/PM_FamilySituation/Index?empId=" + NewEmpId); | |||
$("#PM_PositionChange").attr("src", "/EducationalAdministration/PM_PositionChange/Index?empId=" + NewEmpId); | |||
$("#PM_YearAssess").attr("src", "/EducationalAdministration/PM_YearAssess/Index?empId=" + NewEmpId); | |||
$("#PM_Certificate").attr("src", "/EducationalAdministration/PM_Certificate/Index?empId=" + NewEmpId); | |||
$('#lr_form_tabs').lrFormTab(); | |||
$('#lr_form_tabs ul li').eq(0).trigger('click'); | |||
//校区 | |||
@@ -169,6 +170,7 @@ var bootstrap = function ($, learun) { | |||
$('#ProfessionalTitle').lrDataItemSelect({ code: 'jszc' }); | |||
$('#ProfessionalTitleLevel').lrDataItemSelect({ code: 'TeacherTitlePostLevel' }); | |||
$('#TeacherQualifications').lrDataItemSelect({ code: 'TeacherQualifications' }); | |||
$('#MandarinLevel').lrDataItemSelect({ code: 'MandarinLevel' }); | |||
//内容编辑器 | |||
ue = UE.getEditor('editor'); | |||
@@ -0,0 +1,31 @@ | |||
@{ | |||
ViewBag.Title = "资格证获取情况"; | |||
Layout = "~/Views/Shared/_Form.cshtml"; | |||
} | |||
<div class="lr-form-wrap"> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_Certificate"> | |||
<div class="lr-form-item-title">证书编号</div> | |||
<input id="TeacherQualificationsNo" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_Certificate"> | |||
<div class="lr-form-item-title">教师资格证种类</div> | |||
<div id="TeacherQualifications"></div> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_Certificate"> | |||
<div class="lr-form-item-title">其他职业资格证</div> | |||
<input id="OtherTeacherQualifications" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_Certificate"> | |||
<div class="lr-form-item-title">普通话等级</div> | |||
<div id="MandarinLevel"></div> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_Certificate"> | |||
<div class="lr-form-item-title">备注<font face="宋体">*</font></div> | |||
<textarea id="Remark" class="form-control" style="height:100px;" isvalid="yes" checkexpession="NotNull"></textarea> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_Certificate"> | |||
<div class="lr-form-item-title">是否同步</div> | |||
<div id="IsSync"></div> | |||
</div> | |||
</div> | |||
@Html.AppendJsFile("/Areas/EducationalAdministration/Views/PM_Certificate/Form.js") |
@@ -0,0 +1,56 @@ | |||
/* * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn) | |||
* Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
* 创建人:超级管理员 | |||
* 日 期:2020-11-07 14:08 | |||
* 描 述:资格证获取情况 | |||
*/ | |||
var acceptClick; | |||
var keyValue = request('keyValue'); | |||
var empId = request('empId'); | |||
var bootstrap = function ($, learun) { | |||
"use strict"; | |||
var page = { | |||
init: function () { | |||
$('.lr-form-wrap').lrscroll(); | |||
page.bind(); | |||
page.initData(); | |||
}, | |||
bind: function () { | |||
$('#IsSync').lrDataItemSelect({ code: 'YesOrNoBit' }); | |||
$('#TeacherQualifications').lrDataItemSelect({ code: 'TeacherQualifications' }); | |||
$('#MandarinLevel').lrDataItemSelect({ code: 'MandarinLevel' }); | |||
}, | |||
initData: function () { | |||
if (!!keyValue) { | |||
$.lrSetForm(top.$.rootUrl + '/EducationalAdministration/PM_Certificate/GetFormData?keyValue=' + keyValue, function (data) { | |||
for (var id in data) { | |||
if (!!data[id].length && data[id].length > 0) { | |||
$('#' + id).jfGridSet('refreshdata', data[id]); | |||
} | |||
else { | |||
$('[data-table="' + id + '"]').lrSetFormData(data[id]); | |||
} | |||
} | |||
}); | |||
} | |||
} | |||
}; | |||
// 保存数据 | |||
acceptClick = function (callBack) { | |||
if (!$('body').lrValidform()) { | |||
return false; | |||
} | |||
var data = $('body').lrGetFormData(); | |||
data["EmpId"] = empId; | |||
var postData = { | |||
strEntity: JSON.stringify(data) | |||
}; | |||
$.lrSaveForm(top.$.rootUrl + '/EducationalAdministration/PM_Certificate/SaveForm?keyValue=' + keyValue, postData, function (res) { | |||
// 保存成功后才回调 | |||
if (!!callBack) { | |||
callBack(); | |||
} | |||
}); | |||
}; | |||
page.init(); | |||
} |
@@ -0,0 +1,58 @@ | |||
@{ | |||
ViewBag.Title = "资格证获取情况"; | |||
Layout = "~/Views/Shared/_Index.cshtml"; | |||
} | |||
<style> | |||
.lr-form-item-title{ | |||
width:100px; | |||
} | |||
.lr-form-item{ | |||
padding-left:100px; | |||
} | |||
</style> | |||
<div class="lr-layout "> | |||
<div class="lr-layout-center"> | |||
<div class="lr-layout-wrap lr-layout-wrap-notitle "> | |||
<div class="lr-layout-tool"> | |||
<div class="lr-layout-tool-left"> | |||
<div class="lr-layout-tool-item"> | |||
<div id="multiple_condition_query"> | |||
<div class="lr-query-formcontent"> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">证书编号</div> | |||
<input id="TeacherQualificationsNo" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">教师资格证种类</div> | |||
<div id="TeacherQualifications"></div> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">其他职业资格证</div> | |||
<input id="OtherTeacherQualifications" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">普通话等级</div> | |||
<div id="MandarinLevel"></div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="lr-layout-tool-right"> | |||
<div class=" btn-group btn-group-sm"> | |||
<a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a> | |||
</div> | |||
<div class=" btn-group btn-group-sm" learun-authorize="yes"> | |||
<a id="lr_add" class="btn btn-default"><i class="fa fa-plus"></i> 新增</a> | |||
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i> 编辑</a> | |||
<a id="lr_delete" class="btn btn-default"><i class="fa fa-trash-o"></i> 删除</a> | |||
<a id="lr_check" class="btn btn-default"><i class="fa fa-lock"></i> 提交</a> | |||
<a id="lr_uncheck" class="btn btn-default"><i class="fa fa-unlock"></i> 取消提交</a> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="lr-layout-body" id="gridtable"></div> | |||
</div> | |||
</div> | |||
</div> | |||
@Html.AppendJsFile("/Areas/EducationalAdministration/Views/PM_Certificate/Index.js") |
@@ -0,0 +1,174 @@ | |||
/* * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn) | |||
* Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
* 创建人:超级管理员 | |||
* 日 期:2020-11-07 14:08 | |||
* 描 述:资格证获取情况 | |||
*/ | |||
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.CertificateStatus; | |||
} | |||
} | |||
}); | |||
}, | |||
bind: function () { | |||
$('#multiple_condition_query').lrMultipleQuery(function (queryJson) { | |||
page.search(queryJson); | |||
}, 220, 400); | |||
$('#TeacherQualifications').lrDataItemSelect({ code: 'TeacherQualifications' }); | |||
$('#MandarinLevel').lrDataItemSelect({ code: 'MandarinLevel' }); | |||
// 刷新 | |||
$('#lr_refresh').on('click', function () { | |||
location.reload(); | |||
}); | |||
// 新增 | |||
$('#lr_add').on('click', function () { | |||
if (status == 'true') { | |||
learun.alert.warning('已提交,不能再修改!'); | |||
return; | |||
} | |||
learun.layerForm({ | |||
id: 'formInPM_Certificate', | |||
title: '新增', | |||
url: top.$.rootUrl + '/EducationalAdministration/PM_Certificate/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_Certificate', | |||
title: '编辑', | |||
url: top.$.rootUrl + '/EducationalAdministration/PM_Certificate/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_Certificate/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_Certificate/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_Certificate/Submit', { empId: empId, status: false }, function () { | |||
refreshGirdData(); | |||
}); | |||
} | |||
}); | |||
}); | |||
}, | |||
// 初始化列表 | |||
initGird: function () { | |||
$('#gridtable').jfGrid({ | |||
url: top.$.rootUrl + '/EducationalAdministration/PM_Certificate/GetPageList', | |||
headData: [ | |||
{ label: "证书编号", name: "TeacherQualificationsNo", width: 100, align: "left" }, | |||
{ | |||
label: "教师资格证种类", name: "TeacherQualifications", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op, $cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'TeacherQualifications', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
} | |||
}, | |||
{ label: "其他职业资格证", name: "OtherTeacherQualifications", width: 100, align: "left" }, | |||
{ | |||
label: "普通话等级", name: "MandarinLevel", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op, $cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'MandarinLevel', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
} | |||
}, | |||
{ label: "备注", name: "Remark", width: 100, align: "left" }, | |||
{ label: "是否同步", name: "IsSync", width: 100, align: "left", formatter: function (cellvalue) { return cellvalue == true ? "是" : "否" } }, | |||
{ | |||
label: "提交状态", name: "SubmitStatus", width: 100, align: "left", | |||
formatter: function (cellvalue) { | |||
return cellvalue == true ? "<i class=\"fa fa-toggle-on\"></i>" : "<i class=\"fa fa-toggle-off\"></i>"; | |||
} | |||
}, | |||
], | |||
mainId: 'ID', | |||
isPage: true, | |||
sidx:'UpdateTime desc' | |||
}); | |||
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(); | |||
} |
@@ -0,0 +1,56 @@ | |||
@{ | |||
ViewBag.Title = "资格证获取情况"; | |||
Layout = "~/Views/Shared/_Index.cshtml"; | |||
} | |||
<style> | |||
.lr-form-item-title { | |||
width: 100px; | |||
} | |||
.lr-form-item { | |||
padding-left: 100px; | |||
} | |||
</style> | |||
<div class="lr-layout " > | |||
<div class="lr-layout-center"> | |||
<div class="lr-layout-wrap lr-layout-wrap-notitle "> | |||
<div class="lr-layout-tool"> | |||
<div class="lr-layout-tool-left"> | |||
<div class="lr-layout-tool-item"> | |||
<div id="multiple_condition_query"> | |||
<div class="lr-query-formcontent"> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">教师姓名</div> | |||
<input id="EmpName" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">证书编号</div> | |||
<input id="TeacherQualificationsNo" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">教师资格证种类</div> | |||
<div id="TeacherQualifications"></div> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">其他职业资格证</div> | |||
<input id="OtherTeacherQualifications" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item"> | |||
<div class="lr-form-item-title">普通话等级</div> | |||
<div id="MandarinLevel"></div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="lr-layout-tool-right"> | |||
<div class=" btn-group btn-group-sm"> | |||
<a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="lr-layout-body" id="gridtable"></div> | |||
</div> | |||
</div> | |||
</div> | |||
@Html.AppendJsFile("/Areas/EducationalAdministration/Views/PM_Certificate/StatisticIndex.js") |
@@ -0,0 +1,98 @@ | |||
/* * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn) | |||
* Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
* 创建人:超级管理员 | |||
* 日 期:2020-11-07 14:08 | |||
* 描 述:资格证获取情况 | |||
*/ | |||
var refreshGirdData; | |||
var bootstrap = function ($, learun) { | |||
"use strict"; | |||
var page = { | |||
init: function () { | |||
page.initGird(); | |||
page.bind(); | |||
}, | |||
bind: function () { | |||
$('#multiple_condition_query').lrMultipleQuery(function (queryJson) { | |||
page.search(queryJson); | |||
}, 220, 400); | |||
$('#TeacherQualifications').lrDataItemSelect({ code: 'TeacherQualifications' }); | |||
$('#MandarinLevel').lrDataItemSelect({ code: 'MandarinLevel' }); | |||
// 刷新 | |||
$('#lr_refresh').on('click', function () { | |||
location.reload(); | |||
}); | |||
}, | |||
// 初始化列表 | |||
initGird: function () { | |||
$('#gridtable').lrAuthorizeJfGrid({ | |||
url: top.$.rootUrl + '/EducationalAdministration/PM_Certificate/GetPageStatisticList', | |||
headData: [ | |||
{ | |||
label: "教师", name: "EmpId", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op, $cell) { | |||
learun.clientdata.getAsync('custmerData', { | |||
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'EmpInfo', | |||
key: value, | |||
keyId: 'empid', | |||
callback: function (_data) { | |||
callback(_data['empname']); | |||
} | |||
}); | |||
} | |||
}, | |||
{ label: "证书编号", name: "TeacherQualificationsNo", width: 100, align: "left" }, | |||
{ | |||
label: "教师资格证种类", name: "TeacherQualifications", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op, $cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'TeacherQualifications', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
} | |||
}, | |||
{ label: "其他职业资格证", name: "OtherTeacherQualifications", width: 100, align: "left" }, | |||
{ | |||
label: "普通话等级", name: "MandarinLevel", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op, $cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'MandarinLevel', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
} | |||
}, | |||
{ label: "变更时间", name: "UpdateTime", width: 130, align: "left" }, | |||
{ | |||
label: "变更人", name: "Updater", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row) { | |||
learun.clientdata.getAsync('user', { | |||
key: value, | |||
callback: function (item) { | |||
callback(item.name); | |||
} | |||
}); | |||
} | |||
}, | |||
], | |||
mainId: 'ID', | |||
isPage: true, | |||
sidx:'UpdateTime desc' | |||
}); | |||
page.search(); | |||
}, | |||
search: function (param) { | |||
param = param || {}; | |||
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) }); | |||
} | |||
}; | |||
refreshGirdData = function () { | |||
page.search(); | |||
}; | |||
page.init(); | |||
} |
@@ -5,11 +5,11 @@ | |||
<div class="lr-form-wrap"> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_YearAssess"> | |||
<div class="lr-form-item-title">考核时间<font face="宋体">*</font></div> | |||
<input id="AssessTime" type="text" class="form-control lr-input-wdatepicker" onfocus="WdatePicker({ dateFmt:'yyyy-MM-dd',onpicked: function () { $('#AssessTime').trigger('change'); } })" /> | |||
<input id="AssessTime" type="text" class="form-control lr-input-wdatepicker" isvalid="yes" checkexpession="NotNull" onfocus="WdatePicker({ dateFmt:'yyyy-MM-dd',onpicked: function () { $('#AssessTime').trigger('change'); } })" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_YearAssess"> | |||
<div class="lr-form-item-title">考核年度<font face="宋体">*</font></div> | |||
<input id="AssessYear" type="text" class="form-control" /> | |||
<input id="AssessYear" type="text" class="form-control" isvalid="yes" checkexpession="NotNull"/> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="PM_YearAssess"> | |||
<div class="lr-form-item-title">考核结果</div> | |||
@@ -340,6 +340,7 @@ | |||
<Compile Include="Areas\EducationalAdministration\Controllers\LeaveSchoolAController.cs" /> | |||
<Compile Include="Areas\EducationalAdministration\Controllers\LR_Base_LogoController.cs" /> | |||
<Compile Include="Areas\EducationalAdministration\Controllers\MealCardRunTabController.cs" /> | |||
<Compile Include="Areas\EducationalAdministration\Controllers\PM_CertificateController.cs" /> | |||
<Compile Include="Areas\EducationalAdministration\Controllers\PM_YearAssessController.cs" /> | |||
<Compile Include="Areas\EducationalAdministration\Controllers\PM_PositionChangeController.cs" /> | |||
<Compile Include="Areas\EducationalAdministration\Controllers\PracticeBaseController.cs" /> | |||
@@ -1107,6 +1108,9 @@ | |||
<Content Include="Areas\EducationalAdministration\Views\MealCardRunTab\Form.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\MealCardRunTab\Index.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\StatisticIndex.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_Certificate\Form.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_Certificate\Index.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_Certificate\StatisticIndex.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_YearAssess\Form.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_YearAssess\Index.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_YearAssess\StatisticIndex.js" /> | |||
@@ -1265,6 +1269,9 @@ | |||
<Content Include="Areas\EducationalAdministration\Views\PM_YearAssess\Form.cshtml" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_YearAssess\Index.cshtml" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_YearAssess\StatisticIndex.cshtml" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_Certificate\Form.cshtml" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_Certificate\Index.cshtml" /> | |||
<Content Include="Areas\EducationalAdministration\Views\PM_Certificate\StatisticIndex.cshtml" /> | |||
<None Include="Areas\EducationalAdministration\Views\StuInfoBasic\Printxjk.cshtml" /> | |||
<Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationClassDC.js" /> | |||
<Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticClassIndex.js" /> | |||
@@ -20,6 +20,7 @@ | |||
<li><a data-value="tab6">家庭情况</a></li> | |||
<li><a data-value="tab7">教师聘任变更记录</a></li> | |||
<li><a data-value="tab8">年度考核结果管理</a></li> | |||
<li><a data-value="tab9">资格证获取情况</a></li> | |||
} | |||
</ul> | |||
<div class="tab-content" id="lr_tab_content"> | |||
@@ -835,6 +836,9 @@ | |||
<div class="tab-pane" id="tab8"> | |||
<iframe id="PM_YearAssess" width="100%" scrolling="no" height="100%" frameborder="0"></iframe> | |||
</div> | |||
<div class="tab-pane" id="tab9"> | |||
<iframe id="PM_Certificate" width="100%" scrolling="no" height="100%" frameborder="0"></iframe> | |||
</div> | |||
</div> | |||
</div> | |||
@@ -23,6 +23,7 @@ var bootstrap = function ($, learun) { | |||
$("#PM_FamilySituation").attr("src", "/EducationalAdministration/PM_FamilySituation/Index?empId=" + NewEmpId); | |||
$("#PM_PositionChange").attr("src", "/EducationalAdministration/PM_PositionChange/Index?empId=" + NewEmpId); | |||
$("#PM_YearAssess").attr("src", "/EducationalAdministration/PM_YearAssess/Index?empId=" + NewEmpId); | |||
$("#PM_Certificate").attr("src", "/EducationalAdministration/PM_Certificate/Index?empId=" + NewEmpId); | |||
// 显示信息选项卡 | |||
$('#tablist').lrFormTabEx(); | |||
@@ -0,0 +1,29 @@ | |||
using Learun.Application.TwoDevelopment.EducationalAdministration; | |||
using System.Data.Entity.ModelConfiguration; | |||
namespace Learun.Application.Mapping | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 | |||
/// Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2020-11-07 14:08 | |||
/// 描 述:资格证获取情况 | |||
/// </summary> | |||
public class PM_CertificateMap : EntityTypeConfiguration<PM_CertificateEntity> | |||
{ | |||
public PM_CertificateMap() | |||
{ | |||
#region 表、主键 | |||
//表 | |||
this.ToTable("PM_CERTIFICATE"); | |||
//主键 | |||
this.HasKey(t => t.ID); | |||
#endregion | |||
#region 配置关系 | |||
#endregion | |||
} | |||
} | |||
} | |||
@@ -98,6 +98,7 @@ | |||
<Compile Include="EducationalAdministration\Exam_InvigilateTeacherMap.cs" /> | |||
<Compile Include="EducationalAdministration\LeaveSchoolMap.cs" /> | |||
<Compile Include="EducationalAdministration\MealCardRunTabMap.cs" /> | |||
<Compile Include="EducationalAdministration\PM_CertificateMap.cs" /> | |||
<Compile Include="EducationalAdministration\PM_YearAssessMap.cs" /> | |||
<Compile Include="EducationalAdministration\PM_PositionChangeMap.cs" /> | |||
<Compile Include="EducationalAdministration\PracticeBaseMap.cs" /> | |||
@@ -0,0 +1,171 @@ | |||
using Learun.Util; | |||
using System; | |||
using System.Data; | |||
using System.Collections.Generic; | |||
namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 | |||
/// Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2020-11-07 14:08 | |||
/// 描 述:资格证获取情况 | |||
/// </summary> | |||
public class PM_CertificateBLL : PM_CertificateIBLL | |||
{ | |||
private PM_CertificateService pM_CertificateService = new PM_CertificateService(); | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<PM_CertificateEntity> GetPageList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
return pM_CertificateService.GetPageList(pagination, queryJson); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取PM_Certificate表实体数据 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public PM_CertificateEntity GetPM_CertificateEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
return pM_CertificateService.GetPM_CertificateEntity(keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<PM_CertificateEntity> GetPageStatisticList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
return pM_CertificateService.GetPageStatisticList(pagination, queryJson); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public void DeleteEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
pM_CertificateService.DeleteEntity(keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public void SaveEntity(string keyValue, PM_CertificateEntity entity) | |||
{ | |||
try | |||
{ | |||
pM_CertificateService.SaveEntity(keyValue, entity); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 修改提交状态 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public void Submit(string keyValue, bool status) | |||
{ | |||
try | |||
{ | |||
pM_CertificateService.Submit(keyValue, status); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
} | |||
} |
@@ -0,0 +1,95 @@ | |||
using Learun.Util; | |||
using System; | |||
using System.ComponentModel.DataAnnotations.Schema; | |||
namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 | |||
/// Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2020-11-07 14:08 | |||
/// 描 述:资格证获取情况 | |||
/// </summary> | |||
public class PM_CertificateEntity | |||
{ | |||
#region 实体成员 | |||
/// <summary> | |||
/// 编号 | |||
/// </summary> | |||
[Column("ID")] | |||
public string ID { get; set; } | |||
/// <summary> | |||
/// 人员ID | |||
/// </summary> | |||
[Column("EMPID")] | |||
public string EmpId { get; set; } | |||
/// <summary> | |||
/// 证书编号 | |||
/// </summary> | |||
[Column("TEACHERQUALIFICATIONSNO")] | |||
public string TeacherQualificationsNo { get; set; } | |||
/// <summary> | |||
/// 教师资格证种类 | |||
/// </summary> | |||
[Column("TEACHERQUALIFICATIONS")] | |||
public string TeacherQualifications { get; set; } | |||
/// <summary> | |||
/// 其他职业资格证 | |||
/// </summary> | |||
[Column("OTHERTEACHERQUALIFICATIONS")] | |||
public string OtherTeacherQualifications { get; set; } | |||
/// <summary> | |||
/// 普通话等级 | |||
/// </summary> | |||
[Column("MANDARINLEVEL")] | |||
public string MandarinLevel { get; set; } | |||
/// <summary> | |||
/// 备注 | |||
/// </summary> | |||
[Column("REMARK")] | |||
public string Remark { get; set; } | |||
/// <summary> | |||
/// 是否同步 | |||
/// </summary> | |||
[Column("ISSYNC")] | |||
public bool? IsSync { get; set; } | |||
/// <summary> | |||
/// 最后修改人 | |||
/// </summary> | |||
[Column("UPDATER")] | |||
public string Updater { get; set; } | |||
/// <summary> | |||
/// 最后修改时间 | |||
/// </summary> | |||
[Column("UPDATETIME")] | |||
public DateTime? UpdateTime { get; set; } | |||
#endregion | |||
#region 扩展操作 | |||
/// <summary> | |||
/// 新增调用 | |||
/// </summary> | |||
public void Create() | |||
{ | |||
this.ID = Guid.NewGuid().ToString(); | |||
} | |||
/// <summary> | |||
/// 编辑调用 | |||
/// </summary> | |||
/// <param name="keyValue"></param> | |||
public void Modify(string keyValue) | |||
{ | |||
this.ID = keyValue; | |||
} | |||
#endregion | |||
#region 扩展字段 | |||
/// <summary> | |||
/// 提交状态 | |||
/// </summary> | |||
[NotMapped] | |||
public bool? SubmitStatus { get; set; } | |||
#endregion | |||
} | |||
} | |||
@@ -0,0 +1,57 @@ | |||
using Learun.Util; | |||
using System.Data; | |||
using System.Collections.Generic; | |||
namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 | |||
/// Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2020-11-07 14:08 | |||
/// 描 述:资格证获取情况 | |||
/// </summary> | |||
public interface PM_CertificateIBLL | |||
{ | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
IEnumerable<PM_CertificateEntity> GetPageList(Pagination pagination, string queryJson); | |||
/// <summary> | |||
/// 获取PM_Certificate表实体数据 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
PM_CertificateEntity GetPM_CertificateEntity(string keyValue); | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
IEnumerable<PM_CertificateEntity> GetPageStatisticList(Pagination pagination, string queryJson); | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
void DeleteEntity(string keyValue); | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
void SaveEntity(string keyValue, PM_CertificateEntity entity); | |||
void Submit(string keyValue, bool status); | |||
#endregion | |||
} | |||
} |
@@ -0,0 +1,267 @@ | |||
using Dapper; | |||
using Learun.DataBase.Repository; | |||
using Learun.Util; | |||
using System; | |||
using System.Collections.Generic; | |||
using System.Data; | |||
using System.Text; | |||
namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 | |||
/// Copyright (c) 2013-2018 北京泉江科技有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2020-11-07 14:08 | |||
/// 描 述:资格证获取情况 | |||
/// </summary> | |||
public class PM_CertificateService : RepositoryFactory | |||
{ | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<PM_CertificateEntity> GetPageList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
var strSql = new StringBuilder(); | |||
strSql.Append("SELECT t.*,e.CertificateStatus as SubmitStatus "); | |||
strSql.Append(" FROM PM_Certificate t "); | |||
strSql.Append(" left join EmpInfo e on t.EmpId=e.EmpId "); | |||
strSql.Append(" WHERE 1=1 "); | |||
var queryParam = queryJson.ToJObject(); | |||
// 虚拟参数 | |||
var dp = new DynamicParameters(new { }); | |||
if (!queryParam["TeacherQualificationsNo"].IsEmpty()) | |||
{ | |||
dp.Add("TeacherQualificationsNo", "%"+queryParam["TeacherQualificationsNo"].ToString() + "%", DbType.String); | |||
strSql.Append(" AND t.TeacherQualificationsNo like @TeacherQualificationsNo "); | |||
} | |||
if (!queryParam["TeacherQualifications"].IsEmpty()) | |||
{ | |||
dp.Add("TeacherQualifications", queryParam["TeacherQualifications"].ToDate(), DbType.DateTime); | |||
strSql.Append(" AND t.TeacherQualifications = @TeacherQualifications "); | |||
} | |||
if (!queryParam["OtherTeacherQualifications"].IsEmpty()) | |||
{ | |||
dp.Add("OtherTeacherQualifications", "%" + queryParam["OtherTeacherQualifications"].ToString() + "%", DbType.String); | |||
strSql.Append(" AND t.OtherTeacherQualifications like @OtherTeacherQualifications "); | |||
} | |||
if (!queryParam["MandarinLevel"].IsEmpty()) | |||
{ | |||
dp.Add("MandarinLevel", queryParam["MandarinLevel"].ToDate(), DbType.DateTime); | |||
strSql.Append(" AND t.MandarinLevel = @MandarinLevel "); | |||
} | |||
if (!queryParam["EmpId"].IsEmpty()) | |||
{ | |||
dp.Add("EmpId", queryParam["EmpId"].ToString(), DbType.String); | |||
strSql.Append(" AND t.EmpId = @EmpId "); | |||
} | |||
return this.BaseRepository("CollegeMIS").FindList<PM_CertificateEntity>(strSql.ToString(), dp, pagination); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取PM_Certificate表实体数据 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public PM_CertificateEntity GetPM_CertificateEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
return this.BaseRepository("CollegeMIS").FindEntity<PM_CertificateEntity>(keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// <summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<PM_CertificateEntity> GetPageStatisticList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
var strSql = new StringBuilder(); | |||
strSql.Append("SELECT t.* "); | |||
strSql.Append(" FROM PM_Certificate t "); | |||
strSql.Append(" left join EmpInfo e on t.EmpId=e.EmpId "); | |||
strSql.Append(" WHERE 1=1 and t.IsSync=1 "); | |||
var queryParam = queryJson.ToJObject(); | |||
// 虚拟参数 | |||
var dp = new DynamicParameters(new { }); | |||
if (!queryParam["TeacherQualificationsNo"].IsEmpty()) | |||
{ | |||
dp.Add("TeacherQualificationsNo", "%" + queryParam["TeacherQualificationsNo"].ToString() + "%", DbType.String); | |||
strSql.Append(" AND t.TeacherQualificationsNo like @TeacherQualificationsNo "); | |||
} | |||
if (!queryParam["TeacherQualifications"].IsEmpty()) | |||
{ | |||
dp.Add("TeacherQualifications", queryParam["TeacherQualifications"].ToDate(), DbType.DateTime); | |||
strSql.Append(" AND t.TeacherQualifications = @TeacherQualifications "); | |||
} | |||
if (!queryParam["OtherTeacherQualifications"].IsEmpty()) | |||
{ | |||
dp.Add("OtherTeacherQualifications", "%" + queryParam["OtherTeacherQualifications"].ToString() + "%", DbType.String); | |||
strSql.Append(" AND t.OtherTeacherQualifications like @OtherTeacherQualifications "); | |||
} | |||
if (!queryParam["MandarinLevel"].IsEmpty()) | |||
{ | |||
dp.Add("MandarinLevel", queryParam["MandarinLevel"].ToDate(), DbType.DateTime); | |||
strSql.Append(" AND t.MandarinLevel = @MandarinLevel "); | |||
} | |||
if (!queryParam["EmpId"].IsEmpty()) | |||
{ | |||
dp.Add("EmpId", queryParam["EmpId"].ToString(), DbType.String); | |||
strSql.Append(" AND t.EmpId = @EmpId "); | |||
} | |||
if (!queryParam["EmpName"].IsEmpty()) | |||
{ | |||
dp.Add("EmpName", "%" + queryParam["EmpName"].ToString() + "%", DbType.String); | |||
strSql.Append(" AND e.EmpName like @EmpName "); | |||
} | |||
return this.BaseRepository("CollegeMIS").FindList<PM_CertificateEntity>(strSql.ToString(), dp, pagination); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public void DeleteEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
this.BaseRepository("CollegeMIS").Delete<PM_CertificateEntity>(t => t.ID == keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public void SaveEntity(string keyValue, PM_CertificateEntity entity) | |||
{ | |||
var db = this.BaseRepository("CollegeMIS").BeginTrans(); | |||
try | |||
{ | |||
if (!string.IsNullOrEmpty(keyValue)) | |||
{ | |||
entity.Modify(keyValue); | |||
db.Update(entity); | |||
} | |||
else | |||
{ | |||
entity.Create(); | |||
db.Insert(entity); | |||
} | |||
//“是否同步”:选是,则更新教师表; | |||
if (entity.IsSync.HasValue && entity.IsSync.Value == true) | |||
{ | |||
db.ExecuteBySql("update EmpInfo set TeacherQualificationsNo='" + entity.TeacherQualificationsNo + "',TeacherQualifications='" + entity.TeacherQualifications + "',OtherTeacherQualifications='" + entity.OtherTeacherQualifications + "',MandarinLevel='"+entity.MandarinLevel + "' where EmpId='" + entity.EmpId + "' "); | |||
} | |||
db.Commit(); | |||
} | |||
catch (Exception ex) | |||
{ | |||
db.Rollback(); | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 修改提交状态 | |||
/// <param name="keyValue">主键</param> | |||
/// <summary> | |||
/// <returns></returns> | |||
public void Submit(string keyValue, bool status) | |||
{ | |||
try | |||
{ | |||
var empEntity = this.BaseRepository("CollegeMIS").FindEntity<EmpInfoEntity>(a => a.EmpId == keyValue); | |||
if (empEntity != null) | |||
{ | |||
empEntity.CertificateStatus = status; | |||
this.BaseRepository("CollegeMIS").Update(empEntity); | |||
} | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
} | |||
} |
@@ -224,6 +224,10 @@ | |||
<Compile Include="EducationalAdministration\OpenLessonPlan\OpenLessonPlanBLL.cs" /> | |||
<Compile Include="EducationalAdministration\OpenLessonPlan\OpenLessonPlanIBLL.cs" /> | |||
<Compile Include="EducationalAdministration\OpenLessonPlan\OpenLessonPlanService.cs" /> | |||
<Compile Include="EducationalAdministration\PM_Certificate\PM_CertificateBLL.cs" /> | |||
<Compile Include="EducationalAdministration\PM_Certificate\PM_CertificateEntity.cs" /> | |||
<Compile Include="EducationalAdministration\PM_Certificate\PM_CertificateIBLL.cs" /> | |||
<Compile Include="EducationalAdministration\PM_Certificate\PM_CertificateService.cs" /> | |||
<Compile Include="EducationalAdministration\PM_YearAssess\PM_YearAssessBLL.cs" /> | |||
<Compile Include="EducationalAdministration\PM_YearAssess\PM_YearAssessEntity.cs" /> | |||
<Compile Include="EducationalAdministration\PM_YearAssess\PM_YearAssessIBLL.cs" /> | |||