考试是申请逻辑
This commit is contained in:
parent
261b449c8e
commit
5099a92f1e
@ -174,4 +174,15 @@ public class ClassPlanController extends DefaultBaseController {
|
|||||||
return classPlanService.listExamUser(classPlanId);
|
return classPlanService.listExamUser(classPlanId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation(value = "查询参考人员", notes = "查询参考人员接口")
|
||||||
|
@ApiImplicitParams({
|
||||||
|
@ApiImplicitParam(name = "orgId", value = "orgId", paramType = "query"),
|
||||||
|
@ApiImplicitParam(name = "workerCatalog", value = "workerCatalog", paramType = "query")
|
||||||
|
})
|
||||||
|
@ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)})
|
||||||
|
@GetMapping("get-exam-check-type")
|
||||||
|
public Map<String, Object> getExamCheckType() {
|
||||||
|
Map<String, Object> params = requestParams();
|
||||||
|
return classPlanService.getExamCheckType(params);
|
||||||
|
}
|
||||||
}
|
}
|
@ -250,4 +250,11 @@ public interface IClassPlanService {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
SuccessResultList<List<ClassPlanDTO>> listSignUpPage(ListPage page);
|
SuccessResultList<List<ClassPlanDTO>> listSignUpPage(ListPage page);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取是否能开班
|
||||||
|
* @param params
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Map<String, Object> getExamCheckType(Map<String, Object> params);
|
||||||
}
|
}
|
@ -221,9 +221,9 @@
|
|||||||
|
|
||||||
<insert id="saveTeacherLessonsTime" parameterType="map">
|
<insert id="saveTeacherLessonsTime" parameterType="map">
|
||||||
INSERT INTO e_teach_lessons_time (
|
INSERT INTO e_teach_lessons_time (
|
||||||
teacher_id,teacher_id_card,org_id,project_catalog_id,worker_catalog,lesson_id,start_time,end_time
|
class_plan_id,teacher_id,teacher_id_card,org_id,project_catalog_id,worker_catalog,lesson_id,start_time,end_time
|
||||||
) VALUES(
|
) VALUES(
|
||||||
#{teacherId}, #{teacherIdCard},#{orgId},#{projectCatalogId},#{workerCatalog},#{lessonId}, #{startTime},#{endTime}
|
#{classPlanId},#{teacherId}, #{teacherIdCard},#{orgId},#{projectCatalogId},#{workerCatalog},#{lessonId}, #{startTime},#{endTime}
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
@ -28,16 +28,6 @@
|
|||||||
<div class="layui-inline">
|
<div class="layui-inline">
|
||||||
<input type="text" id="endTime" class="layui-input search-item" placeholder="结束时间" readonly>
|
<input type="text" id="endTime" class="layui-input search-item" placeholder="结束时间" readonly>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-inline layui-form search-item">
|
|
||||||
<select id="applyAuditStates" name="applyAuditStates" lay-search>
|
|
||||||
<option value="">查看全部</option>
|
|
||||||
<option value="0">待审核</option>
|
|
||||||
<option value="1">自行撤回</option>
|
|
||||||
<option value="2">审核通过</option>
|
|
||||||
<option value="3">报名完成</option>
|
|
||||||
<option value="-1">审核不通过</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<button type="button" id="search" class="layui-btn layui-btn-sm">
|
<button type="button" id="search" class="layui-btn layui-btn-sm">
|
||||||
<i class="fa fa-lg fa-search"></i> 搜索
|
<i class="fa fa-lg fa-search"></i> 搜索
|
||||||
</button>
|
</button>
|
||||||
@ -63,8 +53,17 @@
|
|||||||
var laydate = layui.laydate;
|
var laydate = layui.laydate;
|
||||||
var common = layui.common;
|
var common = layui.common;
|
||||||
var resizeTimeout = null;
|
var resizeTimeout = null;
|
||||||
var tableUrl = 'api/apply/listpage';
|
|
||||||
var classPlanId = top.restAjax.params(window.location.href).classPlanId;
|
var classPlanId = top.restAjax.params(window.location.href).classPlanId;
|
||||||
|
var reportType = top.restAjax.params(window.location.href).reportType;
|
||||||
|
var orgId = top.restAjax.params(window.location.href).orgId;
|
||||||
|
var workerCatalog = top.restAjax.params(window.location.href).workerCatalog;
|
||||||
|
var tableUrl = '';
|
||||||
|
if(reportType == '2'){
|
||||||
|
tableUrl = 'api/applystudents/listpage';
|
||||||
|
} else{
|
||||||
|
tableUrl = 'api/apply/listpage';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// 初始化表格
|
// 初始化表格
|
||||||
function initTable() {
|
function initTable() {
|
||||||
@ -77,7 +76,10 @@
|
|||||||
limit: 20,
|
limit: 20,
|
||||||
limits: [20, 40, 60, 80, 100, 200],
|
limits: [20, 40, 60, 80, 100, 200],
|
||||||
where :{
|
where :{
|
||||||
applyClassId: classPlanId
|
applyInstitutionId: orgId,
|
||||||
|
applyWorkTypeId : workerCatalog,
|
||||||
|
applyWorkTypeId : workerCatalog,
|
||||||
|
applyClassId : reportType == "2" ? classPlanId : ''
|
||||||
},
|
},
|
||||||
toolbar: false,
|
toolbar: false,
|
||||||
request: {
|
request: {
|
||||||
@ -86,7 +88,6 @@
|
|||||||
},
|
},
|
||||||
cols: [
|
cols: [
|
||||||
[
|
[
|
||||||
// {type:'checkbox', fixed: 'left'},
|
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'applyName', width: 120, title: '姓名', align:'center',
|
{field: 'applyName', width: 120, title: '姓名', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
@ -97,15 +98,6 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'applySexName', width: 100, title: '性别', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'applyCardNumber', width: 180, title: '证件号码', align:'center',
|
{field: 'applyCardNumber', width: 180, title: '证件号码', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
@ -132,44 +124,7 @@
|
|||||||
}
|
}
|
||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{field: 'applyAuditState', width: 180, title: '报名状态', align:'center', fixed: 'right',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(rowData === 0){
|
|
||||||
return '<span style="color: #ffb836">待审核</span>';
|
|
||||||
}
|
}
|
||||||
if(rowData === 1){
|
|
||||||
return '自行撤回';
|
|
||||||
}
|
|
||||||
if(rowData === 2){
|
|
||||||
return '<span style="color: #0082ff">审核通过</span>';
|
|
||||||
}
|
|
||||||
if(rowData === 3){
|
|
||||||
return '<span style="color: #20ff5c">报名完成</span>';
|
|
||||||
}
|
|
||||||
if(rowData === -1){
|
|
||||||
return '<span style="color: #ff0000">审核不通过</span>';
|
|
||||||
}
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'cz', width: 180, title: '操作', align:'center', fixed: 'right',
|
|
||||||
templet: function(row) {
|
|
||||||
var applyAuditState = row['applyAuditState'];
|
|
||||||
var rowData = '<div class="layui-btn-group">';
|
|
||||||
rowData +='<button type="button" class="layui-btn layui-btn-xs" lay-event="show">详情</button>';
|
|
||||||
if (applyAuditState === 0) {
|
|
||||||
rowData +='<button type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="audit">审核</button>';
|
|
||||||
}
|
|
||||||
if (applyAuditState === 2) {
|
|
||||||
rowData +='<button type="button" class="layui-btn layui-btn-normal layui-btn-xs" lay-event="reports">报道</button>';
|
|
||||||
}
|
|
||||||
rowData +='<button type="button" class="layui-btn layui-btn-warm layui-btn-xs" lay-event="audithistory">审核记录</button>'
|
|
||||||
rowData +='</div>';
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
page: true,
|
page: true,
|
||||||
|
@ -112,9 +112,25 @@
|
|||||||
}
|
}
|
||||||
init();
|
init();
|
||||||
|
|
||||||
|
function getExamCheckType(){
|
||||||
|
var loadIndex = layer.load(1);
|
||||||
|
top.restAjax.get(top.restAjax.path('api/classplan/get-exam-check-type', []),
|
||||||
|
{orgId: orgId, workerCatalog : workerCatalog}, null, function (code, data) {
|
||||||
|
if(data.checkType != '1'){
|
||||||
|
$('#class-plan-btn-event').hide();
|
||||||
|
}
|
||||||
|
layer.close(loadIndex);
|
||||||
|
}, function (code, data) {
|
||||||
|
$('#class-plan-btn-event').hide();
|
||||||
|
top.dialog.msg(data.msg);
|
||||||
|
layer.close(loadIndex);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function getOrgInfo(){
|
function getOrgInfo(){
|
||||||
top.restAjax.get(top.restAjax.path('api/teacher/getorginfo', []), {}, null, function (code, data) {
|
top.restAjax.get(top.restAjax.path('api/teacher/getorginfo', []), {}, null, function (code, data) {
|
||||||
orgId = data.institutionId;
|
orgId = data.institutionId;
|
||||||
|
getExamCheckType();
|
||||||
initTable();
|
initTable();
|
||||||
$('#listContent').attr('src', top.restAjax.path('route/classplan/list-signup.html?orgId={arg1}&workerCatalog={arg2}',
|
$('#listContent').attr('src', top.restAjax.path('route/classplan/list-signup.html?orgId={arg1}&workerCatalog={arg2}',
|
||||||
[orgId,'']));
|
[orgId,'']));
|
||||||
@ -139,14 +155,13 @@
|
|||||||
limitName: 'rows'
|
limitName: 'rows'
|
||||||
},
|
},
|
||||||
where : {
|
where : {
|
||||||
orgId : orgId,
|
applyWorkTypeId : workerCatalog
|
||||||
|
|
||||||
},
|
},
|
||||||
cols: [
|
cols: [
|
||||||
[
|
[
|
||||||
// {type:'checkbox', fixed: 'left'},
|
// {type:'checkbox', fixed: 'left'},
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'applyClassName', width: 180, title: '报名计划', align:'center',
|
{field: 'applyWorkTypeName', width: 180, title: '报考工种', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
@ -267,9 +282,6 @@
|
|||||||
if (applyAuditState === 0) {
|
if (applyAuditState === 0) {
|
||||||
rowData +='<button type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="audit">审核</button>';
|
rowData +='<button type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="audit">审核</button>';
|
||||||
}
|
}
|
||||||
if (applyAuditState === 2) {
|
|
||||||
rowData +='<button type="button" class="layui-btn layui-btn-normal layui-btn-xs" lay-event="reports">报道</button>';
|
|
||||||
}
|
|
||||||
rowData +='<button type="button" class="layui-btn layui-btn-warm layui-btn-xs" lay-event="audithistory">审核记录</button>'
|
rowData +='<button type="button" class="layui-btn layui-btn-warm layui-btn-xs" lay-event="audithistory">审核记录</button>'
|
||||||
rowData +='</div>';
|
rowData +='</div>';
|
||||||
return rowData;
|
return rowData;
|
||||||
@ -297,13 +309,15 @@
|
|||||||
keywords: $('#keywords').val(),
|
keywords: $('#keywords').val(),
|
||||||
startTime: $('#startTime').val(),
|
startTime: $('#startTime').val(),
|
||||||
endTime: $('#endTime').val(),
|
endTime: $('#endTime').val(),
|
||||||
applyAuditStates:$('#applyAuditStates').val()
|
applyAuditStates:$('#applyAuditStates').val(),
|
||||||
|
applyWorkTypeId : workerCatalog
|
||||||
},
|
},
|
||||||
page: {
|
page: {
|
||||||
curr: currentPage
|
curr: currentPage
|
||||||
},
|
},
|
||||||
height: $win.height() - 115,
|
height: $win.height() - 115,
|
||||||
});
|
});
|
||||||
|
getExamCheckType();
|
||||||
}
|
}
|
||||||
|
|
||||||
// 初始化日期
|
// 初始化日期
|
||||||
@ -339,15 +353,13 @@
|
|||||||
area: ['90%', '90%'],
|
area: ['90%', '90%'],
|
||||||
shadeClose: false,
|
shadeClose: false,
|
||||||
anim: 2,
|
anim: 2,
|
||||||
content: top.restAjax.path('route/classplan/save.html?orgId={arg}', [orgId]),
|
content: top.restAjax.path('route/classplan/save.html?orgId={arg}&workerCatalog={arg1}', [orgId,workerCatalog]),
|
||||||
end: function() {
|
end: function() {
|
||||||
reloadTable();
|
reloadTable();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
table.on('tool(dataTable)', function(obj) {
|
table.on('tool(dataTable)', function(obj) {
|
||||||
var layEvent = obj.event;
|
var layEvent = obj.event;
|
||||||
var data = obj.data;
|
var data = obj.data;
|
||||||
|
@ -31,20 +31,6 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<table class="layui-hide" id="dataTable" lay-filter="dataTable"></table>
|
<table class="layui-hide" id="dataTable" lay-filter="dataTable"></table>
|
||||||
<!-- 表头按钮组 -->
|
|
||||||
<script type="text/html" id="headerToolBar">
|
|
||||||
<div class="layui-btn-group">
|
|
||||||
<button type="button" class="layui-btn layui-btn-sm" lay-event="saveEvent">
|
|
||||||
<i class="fa fa-lg fa-plus"></i> 新增
|
|
||||||
</button>
|
|
||||||
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" lay-event="updateEvent">
|
|
||||||
<i class="fa fa-lg fa-edit"></i> 编辑/查看
|
|
||||||
</button>
|
|
||||||
<button type="button" class="layui-btn layui-btn-danger layui-btn-sm" lay-event="removeEvent">
|
|
||||||
<i class="fa fa-lg fa-trash"></i> 删除
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</script>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -93,7 +79,7 @@
|
|||||||
height: $win.height() - 90,
|
height: $win.height() - 90,
|
||||||
limit: 20,
|
limit: 20,
|
||||||
limits: [20, 40, 60, 80, 100, 200],
|
limits: [20, 40, 60, 80, 100, 200],
|
||||||
toolbar: '#headerToolBar',
|
toolbar: false,
|
||||||
request: {
|
request: {
|
||||||
pageName: 'page',
|
pageName: 'page',
|
||||||
limitName: 'rows'
|
limitName: 'rows'
|
||||||
@ -103,32 +89,62 @@
|
|||||||
},
|
},
|
||||||
cols: [
|
cols: [
|
||||||
[
|
[
|
||||||
{type:'checkbox', fixed: 'left'},
|
{width:90, title: '', fixed: 'left', align:'center',
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
|
||||||
{width:100, title: '审核状态', fixed: 'left', align:'center',
|
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var dom = '';
|
var dom = '';
|
||||||
if(row['reportType'] === '1'){
|
dom += '<a type="button" class="layui-btn layui-btn-normal layui-btn-xs" lay-event="signUpUserEvent">报名人员</a>';
|
||||||
return '<a type="button" class="layui-btn layui-btn-warm layui-btn-xs">报备待审</a>';
|
return dom;
|
||||||
}
|
}
|
||||||
if(row['reportType'] === '2'){
|
},
|
||||||
dom += '<a type="button" class="layui-btn layui-btn-info layui-btn-xs">审核通过</a>';
|
{width:150, title: '状态', fixed: 'left', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var dom = '';
|
||||||
|
if(row['reportType'] === '0'){
|
||||||
|
return '<a type="button" class="layui-btn layui-btn-warm layui-btn-xs">开班待审</a>';
|
||||||
|
}
|
||||||
|
if(row['reportType'] === '2' && row['examType'] === '' ){
|
||||||
|
dom += '<a type="button" class="layui-btn layui-btn-info layui-btn-xs">开班通过</a>';
|
||||||
|
return dom;
|
||||||
|
}
|
||||||
|
if(row['reportType'] === '2' && row['examType'] === '0' ){
|
||||||
|
dom += '<a type="button" class="layui-btn layui-btn-warm layui-btn-xs">考试申请中</a>';
|
||||||
|
return dom;
|
||||||
|
}
|
||||||
|
if(row['reportType'] === '2' && row['examType'] === '1' ){
|
||||||
|
dom += '<a type="button" class="layui-btn layui-btn-info layui-btn-xs">考试申请通过</a>';
|
||||||
|
return dom;
|
||||||
|
}
|
||||||
|
if(row['reportType'] === '2' && row['examType'] === '2' ){
|
||||||
|
dom += '<a type="button" class="layui-btn layui-btn-warm layui-btn-xs">考试申请不通过</a>';
|
||||||
return dom;
|
return dom;
|
||||||
}
|
}
|
||||||
if(row['reportType'] === '3'){
|
if(row['reportType'] === '3'){
|
||||||
return '<a type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="unPassEvent">审核不通过</a>';
|
return '<a type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="unPassEvent">开班不通过</a>';
|
||||||
}
|
}
|
||||||
return dom;
|
return dom;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{width:100, title: '操作', fixed: 'left', align:'center',
|
{width:120, title: '操作', fixed: 'left', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var dom = '';
|
var dom = '';
|
||||||
if(row['reportType'] === '0'){
|
if(row['reportType'] === '0'){
|
||||||
return '<a type="button" class="layui-btn layui-btn-normal layui-btn-xs" lay-event="reportEvent">开班报备</a>';
|
dom += '<a type="button" class="layui-btn layui-btn-info layui-btn-xs" lay-event="showEvent">查看开班申请</a>';
|
||||||
|
return dom;
|
||||||
}
|
}
|
||||||
if(row['reportType'] === '2'){
|
if(row['reportType'] === '2' && row['examType'] === ''){
|
||||||
dom += '<a type="button" class="layui-btn layui-btn-normal layui-btn-xs" lay-event="signUpUserEvent">报名人员</a>';
|
dom += '<a type="button" class="layui-btn layui-btn-warm layui-btn-xs" lay-event="examReportEvent">申请考试</a>';
|
||||||
|
return dom;
|
||||||
|
}
|
||||||
|
if(row['reportType'] === '2' && row['examType'] === '0'){
|
||||||
|
dom += '<a type="button" class="layui-btn layui-btn-info layui-btn-xs" lay-event="showExamEvent">查看申请</a>';
|
||||||
|
return dom;
|
||||||
|
}
|
||||||
|
if(row['reportType'] === '2' && row['examType'] === '1'){
|
||||||
|
dom += '<a type="button" class="layui-btn layui-btn-info layui-btn-xs" lay-event="showExamEvent">查看考试安排</a>';
|
||||||
|
return dom;
|
||||||
|
}
|
||||||
|
if(row['reportType'] === '2' && row['examType'] === '1'){
|
||||||
|
dom += '<a type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="reExamEvent">再次申请考试</a>';
|
||||||
return dom;
|
return dom;
|
||||||
}
|
}
|
||||||
if(row['reportType'] === '3'){
|
if(row['reportType'] === '3'){
|
||||||
@ -137,7 +153,7 @@
|
|||||||
return dom;
|
return dom;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'planNumber', width: 190, title: '培训计划编号', align:'center',
|
{field: 'planNumber', width: 190, title: '班号', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
@ -146,30 +162,21 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'planName', width: 180, title: '培训计划名称', align:'center',
|
{field: 'planName', width: 180, title: '班级名称', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
return '-';
|
return '-';
|
||||||
}
|
}
|
||||||
|
if(row['planType'] == '1'){
|
||||||
|
return '[初训] ' + rowData;
|
||||||
|
}
|
||||||
|
if(row['planType'] == '2'){
|
||||||
|
return '[复训] ' + rowData;
|
||||||
|
}
|
||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'planType', width: 90, title: '培训类型', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(rowData == '1'){
|
|
||||||
return '初训';
|
|
||||||
}
|
|
||||||
if(rowData == '2'){
|
|
||||||
return '复训';
|
|
||||||
}
|
|
||||||
if(rowData == '3'){
|
|
||||||
return '换证';
|
|
||||||
}
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'projectCatalogName', width: 180, title: '培训项目', align:'center',
|
{field: 'projectCatalogName', width: 180, title: '培训项目', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
@ -188,25 +195,7 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'planPersonNum', width: 90, title: '计划人数', align:'center',
|
{field: 'signUpUserCount', width: 90, title: '报名人数', align:'center',
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return '<span style="color: #b83023">' + rowData + '</span> 人';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'waitSignUpUser', width: 100, title: '报名待处理', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return '<span style="color: #b87e26">' + rowData + '</span> 人';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'signUpUserCount', width: 90, title: '完成报名', align:'center',
|
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData === '') {
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData === '') {
|
||||||
@ -243,17 +232,10 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{width: 330, title: '培训时间', align:'center',
|
{width: 330, title: '开班时间', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var start = row['planStartTime'];
|
var start = row['planStartTime'].substring(0,10);
|
||||||
var end = row['planEndTime'];
|
var end = row['planEndTime'].substring(0,10);
|
||||||
return start + ' ~ ' + end;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{width: 330, title: '报名时间', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var start = row['signUpStartTime'];
|
|
||||||
var end = row['signUpEndTime'];
|
|
||||||
return start + ' ~ ' + end;
|
return start + ' ~ ' + end;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -335,95 +317,20 @@
|
|||||||
$(document).on('click', '#search', function() {
|
$(document).on('click', '#search', function() {
|
||||||
reloadTable(1);
|
reloadTable(1);
|
||||||
});
|
});
|
||||||
// 事件 - 增删改
|
|
||||||
table.on('toolbar(dataTable)', function(obj) {
|
|
||||||
var layEvent = obj.event;
|
|
||||||
var checkStatus = table.checkStatus('dataTable');
|
|
||||||
var checkDatas = checkStatus.data;
|
|
||||||
if(layEvent === 'saveEvent') {
|
|
||||||
if(typeof (orgInfo.institutionId) === 'undefined'
|
|
||||||
|| orgInfo.institutionId == ''){
|
|
||||||
layer.msg('当前用户未绑定机构信息');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
layer.open({
|
|
||||||
type: 2,
|
|
||||||
title: false,
|
|
||||||
closeBtn: 0,
|
|
||||||
area: ['100%', '100%'],
|
|
||||||
shadeClose: true,
|
|
||||||
anim: 2,
|
|
||||||
content: top.restAjax.path('route/classplan/save.html?orgId={orgId}&orgName={orgName}',
|
|
||||||
[orgInfo.institutionId,orgInfo.institutionName]),
|
|
||||||
end: function() {
|
|
||||||
reloadTable();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if(layEvent === 'updateEvent') {
|
|
||||||
if(checkDatas.length === 0) {
|
|
||||||
top.dialog.msg('请勾选要 修改/查看 的数据');
|
|
||||||
} else if(checkDatas.length > 1) {
|
|
||||||
top.dialog.msg(top.dataMessage.table.selectOneEdit);
|
|
||||||
} else {
|
|
||||||
if(checkDatas[0].reportType == '1'
|
|
||||||
|| checkDatas[0].reportType == '2'){
|
|
||||||
layer.open({
|
|
||||||
type: 2,
|
|
||||||
title: false,
|
|
||||||
closeBtn: 0,
|
|
||||||
area: ['100%', '100%'],
|
|
||||||
shadeClose: true,
|
|
||||||
anim: 2,
|
|
||||||
content: top.restAjax.path('route/classplan/show.html?classPlanId={classPlanId}', [checkDatas[0].classPlanId]),
|
|
||||||
end: function() {
|
|
||||||
reloadTable();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
layer.open({
|
|
||||||
type: 2,
|
|
||||||
title: false,
|
|
||||||
closeBtn: 0,
|
|
||||||
area: ['100%', '100%'],
|
|
||||||
shadeClose: true,
|
|
||||||
anim: 2,
|
|
||||||
content: top.restAjax.path('route/classplan/update.html?classPlanId={classPlanId}', [checkDatas[0].classPlanId]),
|
|
||||||
end: function() {
|
|
||||||
reloadTable();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else if(layEvent === 'removeEvent') {
|
|
||||||
if(checkDatas.length === 0) {
|
|
||||||
top.dialog.msg(top.dataMessage.table.selectDelete);
|
|
||||||
} else {
|
|
||||||
var ids = '';
|
|
||||||
for(var i = 0, item; item = checkDatas[i++];) {
|
|
||||||
if(i > 1) {
|
|
||||||
ids += '_';
|
|
||||||
}
|
|
||||||
ids += item['classPlanId'];
|
|
||||||
}
|
|
||||||
removeData(ids);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
table.on('tool(dataTable)', function(obj) {
|
table.on('tool(dataTable)', function(obj) {
|
||||||
var layEvent = obj.event;
|
var layEvent = obj.event;
|
||||||
var checkStatus = table.checkStatus('dataTable');
|
var checkStatus = table.checkStatus('dataTable');
|
||||||
var checkDatas = checkStatus.data;
|
var checkDatas = checkStatus.data;
|
||||||
if(layEvent == 'reportEvent'){
|
if(layEvent == 'examReportEvent'){
|
||||||
top.dialog.msg('确认提交报备?', {
|
top.dialog.msg('确认提交考试申请?', {
|
||||||
time: 0,
|
time: 0,
|
||||||
btn: [top.dataMessage.button.yes, top.dataMessage.button.no],
|
btn: [top.dataMessage.button.yes, top.dataMessage.button.no],
|
||||||
shade: 0.3,
|
shade: 0.3,
|
||||||
yes: function (index) {
|
yes: function (index) {
|
||||||
top.dialog.close(index);
|
top.dialog.close(index);
|
||||||
var layIndex;
|
var layIndex;
|
||||||
top.restAjax.put(top.restAjax.path('api/classplan/update-report/{classPlanId}', [obj.data.classPlanId]), {reportType: '1'}, null, function (code, data) {
|
top.restAjax.put(top.restAjax.path('api/classplan/update-exam/{classPlanId}', [obj.data.classPlanId]), {reportType: '1'}, null, function (code, data) {
|
||||||
top.dialog.msg('提交成功', {time: 1000});
|
top.dialog.msg('提交成功', {time: 1000});
|
||||||
reloadTable();
|
reloadTable();
|
||||||
}, function (code, data) {
|
}, function (code, data) {
|
||||||
@ -437,6 +344,42 @@
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(layEvent == 'reExamEvent'){
|
||||||
|
top.dialog.msg('重新提交考试申请?', {
|
||||||
|
time: 0,
|
||||||
|
btn: [top.dataMessage.button.yes, top.dataMessage.button.no],
|
||||||
|
shade: 0.3,
|
||||||
|
yes: function (index) {
|
||||||
|
top.dialog.close(index);
|
||||||
|
var layIndex;
|
||||||
|
top.restAjax.put(top.restAjax.path('api/classplan/update-exam-recommit/{classPlanId}', [obj.data.classPlanId]), {reportType: '1'}, null, function (code, data) {
|
||||||
|
top.dialog.msg('提交成功', {time: 1000});
|
||||||
|
reloadTable();
|
||||||
|
}, function (code, data) {
|
||||||
|
top.dialog.msg(data.msg);
|
||||||
|
}, function () {
|
||||||
|
layIndex = top.dialog.msg('提交中', {icon: 16, time: 0, shade: 0.3});
|
||||||
|
}, function () {
|
||||||
|
top.dialog.close(layIndex);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(layEvent == 'showExamEvent') {
|
||||||
|
layer.open({
|
||||||
|
type: 2,
|
||||||
|
title: '查看考试安排',
|
||||||
|
closeBtn: 1,
|
||||||
|
area: ['90%', '90%'],
|
||||||
|
shadeClose: false,
|
||||||
|
anim: 2,
|
||||||
|
content: top.restAjax.path('route/examination/distribution/show.html?planId={classPlanId}', [obj.data.classPlanId]),
|
||||||
|
end: function () {
|
||||||
|
reloadTable();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
if(layEvent == 'unPassEvent') {
|
if(layEvent == 'unPassEvent') {
|
||||||
layer.open({
|
layer.open({
|
||||||
type: 2,
|
type: 2,
|
||||||
@ -454,12 +397,13 @@
|
|||||||
if(layEvent == 'signUpUserEvent') {
|
if(layEvent == 'signUpUserEvent') {
|
||||||
layer.open({
|
layer.open({
|
||||||
type: 2,
|
type: 2,
|
||||||
title: obj.data.planName,
|
title: '报名人员列表',
|
||||||
closeBtn: 1,
|
closeBtn: 1,
|
||||||
area: ['90%', '90%'],
|
area: ['90%', '90%'],
|
||||||
shadeClose: true,
|
shadeClose: true,
|
||||||
anim: 2,
|
anim: 2,
|
||||||
content: top.restAjax.path('route/classplan/list-signup-user.html?classPlanId={classPlanId}', [obj.data.classPlanId]),
|
content: top.restAjax.path('route/classplan/list-signup-user.html?classPlanId={arg}&reportType={arg1}&orgId={arg2}&workerCatalog={arg3}',
|
||||||
|
[obj.data.classPlanId,obj.data.reportType, obj.data.orgId,obj.data.workerCatalog]),
|
||||||
end: function () {
|
end: function () {
|
||||||
reloadTable();
|
reloadTable();
|
||||||
}
|
}
|
||||||
|
@ -207,6 +207,7 @@
|
|||||||
var laydate = layui.laydate;
|
var laydate = layui.laydate;
|
||||||
var teacherList = [];
|
var teacherList = [];
|
||||||
var orgId = top.restAjax.params(window.location.href).orgId;
|
var orgId = top.restAjax.params(window.location.href).orgId;
|
||||||
|
var workerCatalog = top.restAjax.params(window.location.href).workerCatalog;
|
||||||
|
|
||||||
// 初始化内容
|
// 初始化内容
|
||||||
function initData() {
|
function initData() {
|
||||||
@ -429,10 +430,8 @@
|
|||||||
layer.msg('培训开始时间不能大于结束时间');
|
layer.msg('培训开始时间不能大于结束时间');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(verifyDate(formData.field['signUpStartTime'],formData.field['signUpEndTime']) == 1){
|
formData.field['orgId'] = orgId;
|
||||||
layer.msg('报名开始时间不能大于结束时间');
|
formData.field['workerCatalog'] = workerCatalog;
|
||||||
return;
|
|
||||||
}
|
|
||||||
formData.field['lessonList'] = lessonList;
|
formData.field['lessonList'] = lessonList;
|
||||||
top.dialog.confirm(top.dataMessage.commit, function(index) {
|
top.dialog.confirm(top.dataMessage.commit, function(index) {
|
||||||
top.dialog.close(index);
|
top.dialog.close(index);
|
||||||
|
Loading…
Reference in New Issue
Block a user