@@ -38,6 +38,16 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers | |||||
{ | { | ||||
return View(); | return View(); | ||||
} | } | ||||
/// <summary> | |||||
/// 主页面-统计 | |||||
/// <summary> | |||||
/// <returns></returns> | |||||
[HttpGet] | |||||
public ActionResult StatisticIndex() | |||||
{ | |||||
return View(); | |||||
} | |||||
#endregion | #endregion | ||||
#region 获取数据 | #region 获取数据 | ||||
@@ -77,6 +87,27 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers | |||||
}; | }; | ||||
return Success(jsonData); | 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_ResumeIBLL.GetPageStatisticList(paginationobj, queryJson); | |||||
var jsonData = new | |||||
{ | |||||
rows = data, | |||||
total = paginationobj.total, | |||||
page = paginationobj.page, | |||||
records = paginationobj.records | |||||
}; | |||||
return Success(jsonData); | |||||
} | |||||
#endregion | #endregion | ||||
#region 提交数据 | #region 提交数据 | ||||
@@ -34,7 +34,7 @@ | |||||
<li><a data-value="tab2">教师学历变更管理</a></li> | <li><a data-value="tab2">教师学历变更管理</a></li> | ||||
<li><a data-value="tab3">教师职称变更管理</a></li> | <li><a data-value="tab3">教师职称变更管理</a></li> | ||||
<li><a data-value="tab4">工人技术等级经历</a></li> | <li><a data-value="tab4">工人技术等级经历</a></li> | ||||
<li><a data-value="tab5">工作经历</a></li> | |||||
<li><a data-value="tab5">教师部门变更管理</a></li> | |||||
<li><a data-value="tab6">家庭情况</a></li> | <li><a data-value="tab6">家庭情况</a></li> | ||||
</ul> | </ul> | ||||
</div> | </div> | ||||
@@ -3,33 +3,37 @@ | |||||
Layout = "~/Views/Shared/_Form.cshtml"; | Layout = "~/Views/Shared/_Form.cshtml"; | ||||
} | } | ||||
<div class="lr-form-wrap"> | <div class="lr-form-wrap"> | ||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume" > | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">开始时间<font face="宋体">*</font></div> | <div class="lr-form-item-title">开始时间<font face="宋体">*</font></div> | ||||
<input id="RSTime" type="text" class="form-control " isvalid="yes" checkexpession="NotNull" /> | |||||
<input id="RSTime" type="text" class="form-control " isvalid="yes" checkexpession="NotNull" /> | |||||
</div> | </div> | ||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume" > | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">结束时间<font face="宋体">*</font></div> | <div class="lr-form-item-title">结束时间<font face="宋体">*</font></div> | ||||
<input id="RTime" type="text" class="form-control " isvalid="yes" checkexpession="NotNull" /> | |||||
<input id="RTime" type="text" class="form-control " isvalid="yes" checkexpession="NotNull" /> | |||||
</div> | </div> | ||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume" > | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">工作单位<font face="宋体">*</font></div> | <div class="lr-form-item-title">工作单位<font face="宋体">*</font></div> | ||||
<input id="UnitName" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | <input id="UnitName" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | ||||
</div> | </div> | ||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume" > | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">证明人</div> | <div class="lr-form-item-title">证明人</div> | ||||
<input id="Witness" type="text" class="form-control" /> | |||||
<input id="Witness" type="text" class="form-control" /> | |||||
</div> | </div> | ||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume" > | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">部门</div> | <div class="lr-form-item-title">部门</div> | ||||
<input id="DepartmentID" type="text" class="form-control" /> | |||||
<div id="DepartmentID"></div> | |||||
</div> | </div> | ||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume" > | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">岗位</div> | <div class="lr-form-item-title">岗位</div> | ||||
<input id="PostID" type="text" class="form-control" /> | |||||
<input id="PostID" type="text" class="form-control" /> | |||||
</div> | </div> | ||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume" > | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">是否同步</div> | |||||
<div id="IsSync"></div> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="PM_Resume"> | |||||
<div class="lr-form-item-title">工作描述</div> | <div class="lr-form-item-title">工作描述</div> | ||||
<textarea id="Describe" class="form-control" style="height:100px;" ></textarea> | |||||
<textarea id="Describe" class="form-control" style="height:100px;"></textarea> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
@Html.AppendJsFile("/Areas/EducationalAdministration/Views/PM_Resume/Form.js") | @Html.AppendJsFile("/Areas/EducationalAdministration/Views/PM_Resume/Form.js") |
@@ -16,6 +16,8 @@ var bootstrap = function ($, learun) { | |||||
page.initData(); | page.initData(); | ||||
}, | }, | ||||
bind: function () { | bind: function () { | ||||
$('#IsSync').lrDataItemSelect({ code: 'YesOrNoBit' }); | |||||
$('#DepartmentID').lrDataSourceSelect({ code: 'classdata', value: 'id', text: 'name' }); | |||||
}, | }, | ||||
initData: function () { | initData: function () { | ||||
if (!!keyValue) { | if (!!keyValue) { | ||||
@@ -119,9 +119,22 @@ var bootstrap = function ($, learun) { | |||||
{ label: "结束时间", name: "RTime", width: 130, align: "left" }, | { label: "结束时间", name: "RTime", width: 130, align: "left" }, | ||||
{ label: "工作单位", name: "UnitName", width: 100, align: "left" }, | { label: "工作单位", name: "UnitName", width: 100, align: "left" }, | ||||
{ label: "证明人", name: "Witness", width: 100, align: "left" }, | { label: "证明人", name: "Witness", width: 100, align: "left" }, | ||||
{ label: "部门", name: "DepartmentID", width: 100, align: "left" }, | |||||
{ | |||||
label: "部门", name: "DepartmentID", width: 100, align: "left", | |||||
formatterAsync: function (callback, value, row, op, $cell) { | |||||
learun.clientdata.getAsync('custmerData', { | |||||
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'classdata', | |||||
key: value, | |||||
keyId: 'id', | |||||
callback: function (_data) { | |||||
callback(_data['name']); | |||||
} | |||||
}); | |||||
} | |||||
}, | |||||
{ label: "岗位", name: "PostID", width: 100, align: "left" }, | { label: "岗位", name: "PostID", width: 100, align: "left" }, | ||||
{ label: "工作描述", name: "Describe", width: 100, align: "left" }, | { label: "工作描述", name: "Describe", width: 100, align: "left" }, | ||||
{ label: "是否同步", name: "IsSync", width: 100, align: "left", formatter: function (cellvalue) { return cellvalue == true ? "是" : "否" } }, | |||||
{ | { | ||||
label: "提交状态", name: "SubmitStatus", width: 100, align: "left", | label: "提交状态", name: "SubmitStatus", width: 100, align: "left", | ||||
formatter: function (cellvalue) { | formatter: function (cellvalue) { | ||||
@@ -130,7 +143,8 @@ var bootstrap = function ($, learun) { | |||||
}, | }, | ||||
], | ], | ||||
mainId: 'ID', | mainId: 'ID', | ||||
isPage: true | |||||
isPage: true, | |||||
sidx:'UpdateTime desc' | |||||
}); | }); | ||||
page.search(); | page.search(); | ||||
}, | }, | ||||
@@ -0,0 +1,31 @@ | |||||
@{ | |||||
ViewBag.Title = "工作简历统计"; | |||||
Layout = "~/Views/Shared/_Index.cshtml"; | |||||
} | |||||
<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> | |||||
</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_Resume/StatisticIndex.js") |
@@ -0,0 +1,83 @@ | |||||
/* * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn) | |||||
* Copyright (c) 2013-2018 北京泉江科技有限公司 | |||||
* 创建人:超级管理员 | |||||
* 日 期:2020-03-30 14:11 | |||||
* 描 述:工作简历统计 | |||||
*/ | |||||
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); | |||||
// 刷新 | |||||
$('#lr_refresh').on('click', function () { | |||||
location.reload(); | |||||
}); | |||||
}, | |||||
// 初始化列表 | |||||
initGird: function () { | |||||
$('#gridtable').jfGrid({ | |||||
url: top.$.rootUrl + '/EducationalAdministration/PM_Resume/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: "DepartmentID", width: 100, align: "left", | |||||
formatterAsync: function (callback, value, row, op, $cell) { | |||||
learun.clientdata.getAsync('custmerData', { | |||||
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'classdata', | |||||
key: value, | |||||
keyId: 'id', | |||||
callback: function (_data) { | |||||
callback(_data['name']); | |||||
} | |||||
}); | |||||
} | |||||
}, | |||||
{ 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(); | |||||
} |
@@ -955,6 +955,7 @@ | |||||
<Content Include="Areas\EducationalAdministration\Views\LoginUserBind\Form.js" /> | <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\Form.js" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\LoginUserBind\BindAccountIndex.js" /> | <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\BindAccountIndex.js" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\StatisticIndex.js" /> | <Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\StatisticIndex.js" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\PM_Resume\StatisticIndex.js" /> | |||||
<Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\StatisticIndex.js" /> | <Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\StatisticIndex.js" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\PracticeBase\Form.js" /> | <Content Include="Areas\EducationalAdministration\Views\PracticeBase\Form.js" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\PracticeBase\Index.js" /> | <Content Include="Areas\EducationalAdministration\Views\PracticeBase\Index.js" /> | ||||
@@ -7236,6 +7237,7 @@ | |||||
<Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormClaim.cshtml" /> | <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormClaim.cshtml" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\StatisticIndex.cshtml" /> | <Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\StatisticIndex.cshtml" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\StatisticIndex.cshtml" /> | <Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\StatisticIndex.cshtml" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\PM_Resume\StatisticIndex.cshtml" /> | |||||
<None Include="Areas\EducationalAdministration\Views\SchoolNews\Index.cshtml" /> | <None Include="Areas\EducationalAdministration\Views\SchoolNews\Index.cshtml" /> | ||||
<None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | <None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | ||||
<Content Include="Views\Login\Default-beifen.cshtml" /> | <Content Include="Views\Login\Default-beifen.cshtml" /> | ||||
@@ -16,7 +16,7 @@ | |||||
<li><a data-value="tab2">教师学历变更记录</a></li> | <li><a data-value="tab2">教师学历变更记录</a></li> | ||||
<li><a data-value="tab3">教师职称变更记录</a></li> | <li><a data-value="tab3">教师职称变更记录</a></li> | ||||
<li><a data-value="tab4">工人技术等级经历</a></li> | <li><a data-value="tab4">工人技术等级经历</a></li> | ||||
<li><a data-value="tab5">工作简历</a></li> | |||||
<li><a data-value="tab5">教师部门变更记录</a></li> | |||||
<li><a data-value="tab6">家庭情况</a></li> | <li><a data-value="tab6">家庭情况</a></li> | ||||
} | } | ||||
</ul> | </ul> | ||||
@@ -89,6 +89,31 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
} | } | ||||
} | } | ||||
} | } | ||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// <summary> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
public IEnumerable<PM_ResumeEntity> GetPageStatisticList(Pagination pagination, string queryJson) | |||||
{ | |||||
try | |||||
{ | |||||
return pM_ResumeService.GetPageStatisticList(pagination, queryJson); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowServiceException(ex); | |||||
} | |||||
} | |||||
} | |||||
#endregion | #endregion | ||||
#region 提交数据 | #region 提交数据 | ||||
@@ -66,6 +66,11 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
/// </summary> | /// </summary> | ||||
[Column("DESCRIBE")] | [Column("DESCRIBE")] | ||||
public string Describe { get; set; } | public string Describe { get; set; } | ||||
/// <summary> | |||||
/// 是否同步 | |||||
/// </summary> | |||||
[Column("ISSYNC")] | |||||
public bool? IsSync { get; set; } | |||||
#endregion | #endregion | ||||
#region 扩展操作 | #region 扩展操作 | ||||
@@ -34,6 +34,13 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
/// <param name="queryJson">查询参数</param> | /// <param name="queryJson">查询参数</param> | ||||
/// <returns></returns> | /// <returns></returns> | ||||
IEnumerable<PM_ResumeEntity> GetListByEmpId(string empId); | IEnumerable<PM_ResumeEntity> GetListByEmpId(string empId); | ||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// <summary> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
IEnumerable<PM_ResumeEntity> GetPageStatisticList(Pagination pagination, string queryJson); | |||||
#endregion | #endregion | ||||
#region 提交数据 | #region 提交数据 | ||||
@@ -104,6 +104,48 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
} | } | ||||
} | } | ||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// <summary> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
public IEnumerable<PM_ResumeEntity> GetPageStatisticList(Pagination pagination, string queryJson) | |||||
{ | |||||
try | |||||
{ | |||||
var strSql = new StringBuilder(); | |||||
strSql.Append("SELECT t.* "); | |||||
strSql.Append(" FROM PM_Resume 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["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_ResumeEntity>(strSql.ToString(), dp, pagination); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowServiceException(ex); | |||||
} | |||||
} | |||||
} | |||||
#endregion | #endregion | ||||
#region 提交数据 | #region 提交数据 | ||||
@@ -139,21 +181,31 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
/// <returns></returns> | /// <returns></returns> | ||||
public void SaveEntity(string keyValue, PM_ResumeEntity entity) | public void SaveEntity(string keyValue, PM_ResumeEntity entity) | ||||
{ | { | ||||
var db = this.BaseRepository("CollegeMIS").BeginTrans(); | |||||
try | try | ||||
{ | { | ||||
if (!string.IsNullOrEmpty(keyValue)) | if (!string.IsNullOrEmpty(keyValue)) | ||||
{ | { | ||||
entity.Modify(keyValue); | entity.Modify(keyValue); | ||||
this.BaseRepository("CollegeMIS").Update(entity); | |||||
db.Update(entity); | |||||
} | } | ||||
else | else | ||||
{ | { | ||||
entity.Create(); | entity.Create(); | ||||
this.BaseRepository("CollegeMIS").Insert(entity); | |||||
db.Insert(entity); | |||||
} | } | ||||
//“是否同步”:选是,则更新教师表; | |||||
if (entity.IsSync.HasValue && entity.IsSync.Value == true) | |||||
{ | |||||
db.ExecuteBySql("update EmpInfo set F_DepartmentId='" + entity.DepartmentID + "' where EmpId='" + entity.EmpId + "' "); | |||||
} | |||||
db.Commit(); | |||||
} | } | ||||
catch (Exception ex) | catch (Exception ex) | ||||
{ | { | ||||
db.Rollback(); | |||||
if (ex is ExceptionEx) | if (ex is ExceptionEx) | ||||
{ | { | ||||
throw; | throw; | ||||
@@ -168,12 +168,12 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
if (!string.IsNullOrEmpty(keyValue)) | if (!string.IsNullOrEmpty(keyValue)) | ||||
{ | { | ||||
entity.Modify(keyValue); | entity.Modify(keyValue); | ||||
this.BaseRepository("CollegeMIS").Update(entity); | |||||
db.Update(entity); | |||||
} | } | ||||
else | else | ||||
{ | { | ||||
entity.Create(); | entity.Create(); | ||||
this.BaseRepository("CollegeMIS").Insert(entity); | |||||
db.Insert(entity); | |||||
} | } | ||||
//“是否同步”:选是,则更新教师表; | //“是否同步”:选是,则更新教师表; | ||||