123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963 |
- /**
- * 初始化人才认定申报详情对话框
- */
- var TalentAllowanceInfoDlg = {
- talentAllowanceData: {},
- validateFields: {
- talentId: {validators: {notEmpty: {message: '申报对象不能为空'}}},
- allowanceType: {validators: {notEmpty: {message: '津补贴类型不能为空'}}},
- wage: {
- validators: {
- callback: {
- message: "请填写上一年度年薪",
- callback: function (value, validator) {
- if ($("#allowanceType").val() == 1 && $("#wage").val().trim().length == 0) {
- //return false;
- }
- return true;
- }
- }
- }
- },
- }
- };
- /**
- * 清除数据
- */
- TalentAllowanceInfoDlg.clearData = function () {
- this.talentAllowanceData = {};
- }
- /**
- * 设置对话框中的数据
- *
- * @param key 数据的名称
- * @param val 数据的具体值
- */
- TalentAllowanceInfoDlg.set = function (key, val) {
- this.talentAllowanceData[key] = (typeof val == "undefined") ? $("#" + key).val() : val;
- return this;
- }
- /**
- * 设置对话框中的数据
- *
- * @param key 数据的名称
- * @param val 数据的具体值
- */
- TalentAllowanceInfoDlg.get = function (key) {
- return $("#" + key).val();
- }
- /**
- * 关闭此对话框
- */
- TalentAllowanceInfoDlg.close = function () {
- parent.layer.close(window.parent.TalentAllowanceInfo.layerIndex);
- }
- /**
- * 收集数据
- */
- TalentAllowanceInfoDlg.collectData = function () {
- this.set('id')
- .set('talentId')
- .set('year')
- .set('allowanceType')
- .set('wage');
- }
- /**
- * 验证数据
- */
- TalentAllowanceInfoDlg.validate = function () {
- $('#talentAllowanceForm').data("bootstrapValidator").resetForm();
- $('#talentAllowanceForm').bootstrapValidator('validate');
- return $("#talentAllowanceForm").data('bootstrapValidator').isValid();
- }
- TalentAllowanceInfoDlg.onAllowanceTypeChange = function (allowanceType) {
- $("#wageDiv").val("");
- if (allowanceType == 1) {
- //$("#wageDiv").css("display", "block");
- } else {
- $("#wageDiv").css("display", "none");
- }
- }
- TalentAllowanceInfoDlg.calculator = function () {
- var id = $("#id").val();
- if (!id) {
- Feng.error("请先保存再进行计算");
- return;
- }
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/calculator/id/" + id, function (data) {
- var message = data.recommendAllowanceMsg.join("<br>");
- if (data.recommendAllowanceType != 3) {
- message += "\n" + "试算补贴金额:" + data.recommendMoney;
- }
- Feng.confirm(message);
- }, function (data) {
- Feng.error("查询失败!" + data.responseJSON.message + "!");
- });
- ajax.start();
- }
- /**
- * 选择申报对象初始化
- */
- TalentAllowanceInfoDlg.init = function () {
- var talentId = $("#name").val();
- var year = $("#year").val();
- if (Feng.isNotEmptyStr(talentId)) {
- //var ajax = new $ax(Feng.ctxPath + "/enterprise/talent/getInfoById/id/" + talentId, function (data) {
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/getInfoByIdAndYear/id/" + talentId + "/year/" + year, function (data) {
- if (data.code == 200) {
- var info = data.obj;
- $("#active").val(info.active);
- $("#talentId").val(talentId);
- $("#talentTypeName").val(info.talentTypeName);
- $("#enterpriseName").val(info.enterpriseName);
- $("#sex").val(info.sex == 1 ? "男" : "女");
- $("#idCard").val(info.card_number);
- //$("#introductionModeName").val(info.introductionModeName);
- $("#firstInJJTime").val(info.fst_work_time);
- $("#entryTime").val(info.cur_entry_time);
- $("#post").val(info.position);
- $("#phone").val(info.phone);
- $("#bank").val(info.bank);
- $("#bankNumber").val(info.bank_number);
- $("#bankNetwork").val(info.bank_branch_name).attr("title", info.bank_branch_name);
- $("#bankAccount").val(info.bank_account);
- $("#talentArrangeName").val(info.talentArrangeName);
- $("#identifyConditionText").val(info.talentConditionName).attr("title", info.talentConditionName);
- $("#identifyConditionName").val(info.identifyConditionName).attr("title", info.identifyConditionName);
- $("#identifyGetTime").val(info.identifyGetTime);
- $("#provinceCode").val(info.provinceName + info.cityName + (info.countyName ? info.countyName : ""));
- } else {
- $("#active").val("");
- $("#talentId").val("");
- $("#talentTypeName").val("");
- $("#enterpriseName").val("");
- $("#sex").val("");
- $("#idCard").val("");
- //$("#introductionModeName").val(info.introductionModeName);
- $("#firstInJJTime").val("");
- $("#entryTime").val("");
- $("#post").val("");
- $("#phone").val("");
- $("#bank").val("");
- $("#bankNumber").val("");
- $("#bankNetwork").val("").attr("title", "");
- $("#bankAccount").val("");
- $("#talentArrangeName").val("");
- $("#identifyConditionText").val("").attr("title", "");
- $("#identifyConditionName").val("").attr("title", "");
- $("#identifyGetTime").val("");
- $("#provinceCode").val("");
- Feng.error(data.msg);
- }
- }, function (data) {
- Feng.error("查询失败!" + data.responseJSON.message + "!");
- });
- ajax.start();
- }
- }
- /**
- * 提交添加
- */
- TalentAllowanceInfoDlg.addSubmit = function () {
- this.clearData();
- this.collectData();
- if (!TalentAllowanceInfoDlg.validate()) {
- return;
- }
- var id = $('#id').val();
- if (Feng.isNotEmptyStr(id)) {
- TalentAllowanceInfoDlg.editSubmit();
- return;
- }
- /*var allowanceType = $("#allowanceType").val();
- if (allowanceType == 1) {
- if (Feng.isEmptyStr(TalentAllowanceInfoDlg.talentAllowanceData.wage)) {
- Feng.info("请填写上一年度年薪");
- return;
- }
- if (!/^([1-9][0-9]*)+(\.[0-9]{1,10})?$/.test(TalentAllowanceInfoDlg.talentAllowanceData.wage)) {
- Feng.info("上一年度年薪格式不合法,无需填写单位元");
- return;
- }
- }*/
- var operation = function () {
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/apply", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- $("#id").val(data.obj.id);
- $("#name").prop("disabled", true).trigger("chosen:updated");
- $("#fileLi").removeAttr("style");
- $("#checkState").val(data.obj.checkState);
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("提交失败!" + data.responseJSON.message + "!");
- });
- ajax.set(TalentAllowanceInfoDlg.talentAllowanceData);
- ajax.start();
- }
- Feng.confirm("请确认当前申报人是否已完成所有的离职变更、工作单位变更、人才层次变更以及银行账号变更且已审核通过,一旦保存无法追加,确认保存吗?", operation);
- }
- TalentAllowanceInfoDlg.editSubmit = function () {
- this.clearData();
- this.collectData();
- if (!TalentAllowanceInfoDlg.validate()) {
- return;
- }
- if (!TalentAllowanceInfoDlg.validateIsEdit())
- return;
- /*var active = $("#active").val();
- if (active == 2) {
- if (Feng.isEmptyStr(TalentAllowanceInfoDlg.talentAllowanceData.wage)) {
- Feng.info("请填写上一年度年薪");
- return;
- }
- if (!/^([1-9][0-9]*)+(\.[0-9]{1,10})?$/.test(TalentAllowanceInfoDlg.talentAllowanceData.wage)) {
- Feng.info("上一年度年薪格式不合法,无需填写单位元");
- return;
- }
- }*/
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/apply", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("提交失败!" + data.responseJSON.message + "!");
- });
- ajax.set(TalentAllowanceInfoDlg.talentAllowanceData);
- ajax.start();
- }
- /**
- * 初始化工作单位及核查项目情况表
- */
- TalentAllowanceInfoDlg.initContract = function () {
- $("#projectTable").bootstrapTable("destroy", {});
- $("#projectTable").bootstrapTable({
- url: Feng.ctxPath + "/enterprise/talentAllowance/findAllowanceContractDetail",
- method: 'POST',
- contentType: "application/x-www-form-urlencoded; charset=UTF-8",
- search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
- showRefresh: false, // 是否显示刷新按钮
- clickToSelect: true, // 是否启用点击选中行
- singleSelect: true, // 设置True 将禁止多选
- striped: true, // 是否显示行间隔色
- escape: true,
- pagination: false, // 设置为 true 会在表格底部显示分页条
- paginationHAlign: "left",
- paginationDetailHAlign: "right",
- sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
- showColumns: false,
- detailView: true, //父子表
- queryParams: function (params) {
- return $.extend({"mainId": $("#id").val()}, params)
- },
- columns: TalentAllowanceInfoDlg.initContractColumns(),
- onPostBody: function () {
- $("td.uitd_showTip").bind("mouseover", function () {
- var htm = $(this).html();
- $(this).webuiPopover({title: '详情', content: htm, trigger: 'hover'}).webuiPopover('show');
- });
- },
- onLoadSuccess: function (data) {
- $("#projectTable").bootstrapTable('expandAllRows');
- },
- onExpandRow: function (index, row, $detail) {
- var enterpriseId = row.enterpriseId;
- var cur_table = $detail.html('<table id="' + enterpriseId + '" class="mytable-hover"></table>').find('table');
- $(cur_table).bootstrapTable("destroy", {});
- $(cur_table).bootstrapTable({
- url: Feng.ctxPath + "/enterprise/talentAllowance/findAllowanceProject",
- method: 'POST',
- contentType: "application/x-www-form-urlencoded; charset=UTF-8",
- search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
- showRefresh: false, // 是否显示刷新按钮
- clickToSelect: true, // 是否启用点击选中行
- singleSelect: true, // 设置True 将禁止多选
- escape: true,
- pagination: false, // 设置为 true 会在表格底部显示分页条
- paginationHAlign: "left",
- paginationDetailHAlign: "right",
- sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
- showColumns: false,
- queryParams: function (params) {
- return $.extend({"mainId": $("#id").val(), "baseId": row.id}, params)
- },
- columns: TalentAllowanceInfoDlg.initProjectColumns(),
- onLoadSuccess: function (data) {
- //TalentAllowanceInfoDlg.initICheck();
- //layer.tips('请勾选个税缴纳情况', '.tips', {tips: [1, "#1ab394"], time: 0, closeBtn: 2});
- },
- });
- }
- });
- }
- //显示修改工作单位合同情况模态框
- TalentAllowanceInfoDlg.showEditContractModel = function (id) {
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/validateIsEdit", function (data) {
- if (data.code == 200) {
- $("#contractForm")[0].reset();
- $("#contractId").val(id);
- $("#contractModal").modal("show");
- } else {
- 1
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("校验失败!" + data.responseJSON.message + "!");
- });
- ajax.set("id", id);
- ajax.set("type", 1);
- ajax.start();
- }
- //修改合同起止时间提交
- TalentAllowanceInfoDlg.editContract = function () {
- var id = $("#contractId").val();
- var startTime = $("#startTime").val();
- var endTime = $("#endTime").val();
- if (startTime == null || startTime == '') {
- Feng.info("请选择合同起始时间");
- return;
- }
- if (endTime == null || endTime == '') {
- Feng.info("请选择合同截止时间");
- return;
- }
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/editContract", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- $("#projectTable").bootstrapTable("refresh", {});
- $("#contractModal").modal("hide");
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("提交失败!" + data.responseJSON.message + "!");
- });
- ajax.set({"id": id, "startTime": startTime, "endTime": endTime});
- ajax.start();
- }
- TalentAllowanceInfoDlg.saveProjectData = function (id, project, allowanceType) {
- var description = $("#d" + id).val();
- var months = [];
- var error = "";
- if (project == 4 && allowanceType == 2) {
- $("#m" + id + " input[name=day]").each(function () {
- var days = $(this).val();
- var max = $(this).attr("max");
- var num = $(this).attr("num");
- if (isNaN(days)) {
- error = error + num + "月的考勤天数不是数字;";
- } else {
- if (days < 0 || days > max) {
- error = error + num + "月的考勤天数不在范围内(1-" + max + ");";
- }
- }
- if (days == null || days == '') {
- days = 0;
- }
- months.push(num + "=" + days);
- })
- } else {
- $("#m" + id + " input[name=month]").each(function () {
- if (this.checked) {
- months.push($(this).val());
- }
- })
- }
- if (error != "") {
- Feng.error(error);
- return;
- }
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/editProject", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("提交失败!" + data.responseJSON.message + "!");
- });
- ajax.set({"id": id, "months": months.join(","), "description": description});
- ajax.start();
- }
- //显示
- // 项目模态框
- TalentAllowanceInfoDlg.showEditProjectModal = function (project, id, enterpriseId, months, days, content) {
- var desc = $(content).attr("data-value");
- var type = $("#type").val();
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/validateIsEdit", function (data) {
- if (data.code == 200) {
- TalentAllowanceInfoDlg.initICheck();
- $("#description").val(desc);
- if (project == 4 || project == 15 || project == 16) {
- if (type == 2) {
- if (project == 4) {
- $("#attendanceModalLabel").html("考勤");
- $("#heading").html("请填写每月考勤天数<span style=\"color: red\">(不填写或填写0则代表无考勤记录)</span>");
- }
- if (project == 15) {
- $("#attendanceModalLabel").html("在境时间");
- $("#heading").html("请填写每月在境内天数<span style=\"color: red\">(不填写则代表为0天)</span>");
- }
- if (project == 16) {
- $("#attendanceModalLabel").html("境内工作日时间");
- $("#heading").html("请填写每月境内工作日天数<span style=\"color: red\">(不填写则代表为0天)</span>");
- }
- $("#attendanceForm")[0].reset();
- $("#attendanceId").val(id);
- $("#attendanceEnterpriseId").val(enterpriseId);
- if (months != null && months != '') {
- var arr = months.split(",");
- for (var key in arr) {
- var num = arr[key].split("=")[0];
- var day = arr[key].split("=")[1];
- $("#attendMonths input").each(function () {
- if ($(this).attr('num') == num)
- $(this).val(day);
- });
- }
- }
- $("#attendanceModal").modal("show");
- } else if (type == 1) {
- $('#jjAttendanceModal').on('show.bs.modal', function () {
- $("#jjmonths input").each(function () {
- $(this).iCheck("uncheck");
- });
- $("#jjAttendanceId").val(id);
- $("#jjAttendanceEnterpriseId").val(enterpriseId);
- if (Feng.isNotEmptyStr(months) && months.indexOf(",") != -1) {
- var arr = months.split(",");
- for (var key in arr) {
- $("#jjmonths input").each(function () {
- if ($(this).val() == arr[key])
- $(this).iCheck("check");
- });
- }
- }
- });
- if (days != null && days != '')
- $("#days").val(days);
- $("#jjAttendanceModal").modal("show");
- }
- } else {
- $('#projectModal').on('show.bs.modal', function () {
- $("#months input").each(function () {
- $(this).iCheck("uncheck");
- });
- $("#projectId").val(id);
- $("#enterpriseId").val(enterpriseId);
- if (Feng.isNotEmptyStr(months)) {
- var arr = months.split(",");
- for (var key in arr) {
- $("#months input").each(function () {
- if ($(this).val() == arr[key])
- $(this).iCheck("check");
- });
- }
- }
- });
- $("#projectModal").modal("show");
- }
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("校验失败!" + data.responseJSON.message + "!");
- });
- ajax.set("id", id);
- ajax.set("type", 2);
- ajax.start();
- }
- //编辑项目提交
- TalentAllowanceInfoDlg.editProject = function () {
- var id = $("#projectId").val();
- var enterpriseId = $("#enterpriseId").val();
- var description = $("#description").val();
- var months = "";
- $("#months input").each(function () {
- if (this.checked) {
- months = months + $(this).val() + ",";
- }
- })
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/editProject", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- $("#" + enterpriseId).bootstrapTable("refresh", {});
- $("#projectModal").modal("hide");
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("提交失败!" + data.responseJSON.message + "!");
- });
- ajax.set({"id": id, "months": months, "description": description});
- ajax.start();
- }
- TalentAllowanceInfoDlg.editJJAttendance = function () {
- var id = $("#jjAttendanceId").val();
- var enterpriseId = $("#jjAttendanceEnterpriseId").val();
- var description = $("#jjDescription").val();
- var days = $("#days").val();
- var months = "";
- $("#jjmonths input").each(function () {
- if (this.checked) {
- months = months + $(this).val() + ",";
- }
- })
- if (months == "" && (days == null || days == "")) {
- Feng.info("请填写考勤信息");
- return;
- }
- if (months != null && months != '' && days != null && days != '') {
- Feng.info("考勤天数和考勤月份只能选择一个填写");
- return;
- }
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/editProject", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- $("#" + enterpriseId).bootstrapTable("refresh", {});
- $("#projectModal").modal("hide");
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("提交失败!" + data.responseJSON.message + "!");
- });
- ajax.set({"id": id, "months": months, "days": days, "description": description});
- ajax.start();
- }
- TalentAllowanceInfoDlg.editAttendanceProject = function () {
- var id = $("#attendanceId").val();
- var enterpriseId = $("#attendanceEnterpriseId").val();
- var description = $("#attendanceDescription").val();
- var months = "";
- var error = "";
- var name = $("#attendanceModalLabel").html();
- $("#attendMonths input").each(function () {
- var days = $(this).val();
- var num = $(this).attr("num");
- if (isNaN(days)) {
- error = error + num + "月的" + name + "天数不是数字;";
- } else {
- if (days < 0 || days > 31) {
- error = error + num + "月的" + name + "天数不在范围内(1-31);";
- }
- }
- if (days == null || days == '') {
- days = 0;
- }
- months = months + num + "=" + days + ",";
- });
- if (error != "") {
- Feng.error(error);
- return;
- }
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/editProject", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- $("#" + enterpriseId).bootstrapTable("refresh", {});
- $("#attendanceModal").modal("hide");
- } else {
- Feng.info(data.msg);
- }
- }, function (data) {
- Feng.error("提交失败!" + data.responseJSON.message + "!");
- });
- ajax.set({"id": id, "months": months, "description": description});
- ajax.start();
- }
- //初始化附件类别表单
- TalentAllowanceInfoDlg.initFileTable = function () {
- TalentAllowanceInfoDlg.initContract();
- // Feng.showMiniFileModal(CONFIG.project_jbt,$("#type").val(),$("#id").val());
- var queryData = {};
- queryData['project'] = CONFIG.project_jbt;
- queryData['type'] = $("#type").val();
- queryData['allowanceType'] = $("#allowanceType").val();
- $("#fileTable").bootstrapTable({
- url: Feng.ctxPath + "/common/api/findCommonFileType",
- method: 'POST',
- contentType: "application/x-www-form-urlencoded; charset=UTF-8",
- search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
- showRefresh: false, // 是否显示刷新按钮
- clickToSelect: true, // 是否启用点击选中行
- singleSelect: true, // 设置True 将禁止多选
- striped: true, // 是否显示行间隔色
- escape: true,
- pagination: false, // 设置为 true 会在表格底部显示分页条
- paginationHAlign: "left",
- paginationDetailHAlign: "right",
- sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
- showColumns: false,
- detailView: true, //是否显示父子表
- pageList: [10, 30, 50],
- queryParams: function (params) {
- return $.extend(queryData, params)
- },
- rowStyle: function (row, index) {
- return {classes: "info"};
- },
- columns: TalentAllowanceInfoDlg.initFileTypeColumn(),
- onPostBody: function () {
- $("td.uitd_showTip").bind("mouseover", function () {
- var htm = $(this).html();
- $(this).webuiPopover({title: '详情', content: htm, trigger: 'hover'}).webuiPopover('show');
- });
- },
- onLoadSuccess: function (data) {
- $("#fileTable").bootstrapTable('expandAllRows');
- },
- onExpandRow: function (index, row, $detail) {
- var ajax = new $ax(Feng.ctxPath + "/common/api/listTalentFile", function (data) {
- if (data == null || data.length == 0) {
- return;
- }
- var html = '<ul class="imgs"><li style="width: 80%;font-weight: bold;padding-top: 5px;">附件原名</li><li style="width: 10%;font-weight: bold;padding-top: 5px;">预览</li><li style="width: 10%;font-weight: bold;padding-top: 5px;">操作</li>';
- var files = $("#files").val();
- var checkState = $("#checkState").val();
- for (var key in data) {
- var btn = "";
- if (checkState == 1 || (checkState == 10 && files.indexOf(row.id) != -1)) {
- btn = "<button type=\'button\' onclick=\"TalentAllowanceInfoDlg.checkFile(this,'" + row.id + "','" + data[key].id + "')\" style=\'margin-left: 5px\' class=\"btn btn-xs btn-success\">" +
- "<i class=\"fa fa-paste\"></i>修改" +
- "</button>" +
- "<button type='button' onclick=\"TalentAllowanceInfoDlg.deleteFile('" + data[key].id + "','" + row.fState + "')\" class=\"btn btn-xs btn-danger\">" +
- "<i class=\"fa fa-times\"></i>删除" +
- "</button>";
- } else {
- btn = "";
- }
- var sn = data[key].url.lastIndexOf(".");
- var suffix = data[key].url.substring(sn + 1, data[key].url.length);
- var imgStr = "";
- if (suffix == "pdf" || suffix == "PDF") {
- imgStr = "<button type='button' onclick=\"Feng.showPdf('" + data[key].url + "','" + data[key].id + "','" + data[key].orignName + "')\" class=\"btn btn-xs btn-danger\"><i class=\"fa fa-file-pdf-o\" aria-hidden=\"true\"></i></button>";
- } else if (suffix == "xlsx" || suffix == "XLSX" || suffix == 'xls' || suffix == 'XLS') {
- imgStr = "<button type='button' onclick=\"Feng.showExcel('" + data[key].url + "','" + data[key].id + "','" + data[key].orignName + "')\" class=\"btn btn-xs btn-danger\"><i class=\"fa fa-file-excel-o\" aria-hidden=\"true\"></i></button>";
- } else {
- imgStr = '<img class=\"imgUrl\" src=\"' + data[key].url + '\" style=\"width:25px;height:25px;\">';
- }
- html = html + '<li style="display: none">' + data[key].id + '</li>\n' +
- '<li style="width: 80%;padding-top: 5px;">' + data[key].orignName + '</li>\n' +
- '<li style="width: 10%;">' + imgStr + '</li>\n' +
- '<li style="width: 10%;padding-top: 2px;">' + btn + '</li>';
- }
- html = html + '</ul>';
- $detail.html(html);
- $(".imgs").viewer({
- // toolbar:false,
- fullscreen: false
- });
- }, function (data) {
- Feng.error("查询失败!" + data.responseJSON.message + "!");
- });
- var queryData = {};
- queryData["mainId"] = $("#id").val();
- queryData["fileTypeId"] = row.id;
- ajax.set(queryData);
- ajax.start();
- }
- });
- TalentAllowanceInfoDlg.initCommonFileTable();
- }
- //初始化通用附件
- TalentAllowanceInfoDlg.initCommonFileTable = function () {
- var queryData = {};
- queryData.id = $("#id").val();
- $("#commonFileTable").bootstrapTable({
- url: Feng.ctxPath + "/common/api/listTalentAllowanceCommonFile",
- method: 'POST',
- contentType: "application/x-www-form-urlencoded; charset=UTF-8",
- search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
- showRefresh: false, // 是否显示刷新按钮
- clickToSelect: true, // 是否启用点击选中行
- singleSelect: true, // 设置True 将禁止多选
- striped: true, // 是否显示行间隔色
- pagination: false, // 设置为 true 会在表格底部显示分页条
- paginationHAlign: "left",
- paginationDetailHAlign: "right",
- sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
- showColumns: false,
- queryParams: function (params) {
- return $.extend(queryData, params)
- },
- rowStyle: function (row, index) {
- return {css: {"word-break": "break-word", "white-space": "inherit"}}
- },
- columns: [
- {title: '附件原名', field: 'originalName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: '70%', formatter: function (value, row, index) {
- return value;
- }},
- {title: '预览', field: 'url', visible: true, align: 'center', valign: 'middle', width: "20%",
- formatter: function (value, row, index) {
- var sn = value.lastIndexOf(".");
- var suffix = value.substring(sn + 1, value.length);
- var imgStr = "";
- if (suffix == "pdf" || suffix == "PDF") {
- imgStr = "<button type='button' onclick=\"Feng.showPdf('" + value + "','" + row.id + "','" + row.originalName + "')\" class=\"btn btn-xs btn-danger\"><i class=\"fa fa-file-pdf-o\" aria-hidden=\"true\"></i></button>";
- } else if (suffix == "xlsx" || suffix == "XLSX" || suffix == 'xls' || suffix == 'XLS') {
- imgStr = "<button type='button' onclick=\"Feng.showExcel('" + value + "','" + row.id + "','" + row.originalName + "')\" class=\"btn btn-xs btn-danger\"><i class=\"fa fa-file-excel-o\" aria-hidden=\"true\"></i></button>";
- } else {
- imgStr = '<img class=\"cImgUrl\" src=\"' + value + '\" style=\"width:25px;height:25px;\">';
- }
- return imgStr;
- }
- },
- {title: '操作', field: 'url', visible: true, align: 'center', valign: 'middle', width: '10%',
- formatter: function (value, row, index) {
- return "";
- }
- }
- ],
- onPostBody: function () {
- $("td.uitd_showTip").bind("mouseover", function () {
- var htm = $(this).html();
- $(this).webuiPopover({title: '详情', content: htm, trigger: 'hover'}).webuiPopover('show');
- });
- $(".cImgUrl").viewer({fullscreen: false});
- }
- });
- }
- //校验是否保存基础信息
- TalentAllowanceInfoDlg.validId = function () {
- var id = $("#id").val();
- if (id != null && id != '') {
- $("#fileLi").removeAttr("style");
- } else {
- $("#fileLi").attr("style", "pointer-events: none");
- $("#name").on('chosen:ready', function (e, params) {
- $(".chosen-container-single .chosen-single").css("padding", "4px 0px 0px 4px");
- });
- $("#name").chosen({
- search_contains: true, //关键字模糊搜索。设置为true,只要选项包含搜索词就会显示;设置为false,则要求从选项开头开始匹配
- disable_search: false,
- width: "100%",
- enable_split_word_search: true
- });
- }
- }
- //选择附件并显示附件名
- TalentAllowanceInfoDlg.checkFile = function (content, fileTypeId, fileId) {
- if (!TalentAllowanceInfoDlg.validateIsEdit())
- return;
- $("#upload_file ").unbind("change");
- $("#upload_file ").change(function () {
- TalentAllowanceInfoDlg.upload(fileTypeId, fileId);
- });
- $('#upload_file').val("");
- $('#upload_file').click()
- }
- //上传附件
- TalentAllowanceInfoDlg.upload = function (fileTypeId, fileId) {
- var id = $("#id").val();
- if (!TalentAllowanceInfoDlg.validateIsEdit())
- return;
- if (fileId != null && fileId != 'null') {
- $("#fileId").val(fileId)
- } else {
- $("#fileId").val("");
- }
- $("#mainId").val(id);
- $("#fileTypeId").val(fileTypeId);
- var index = layer.load(0, {shade: false, time: 0});
- $("#index").val(index);
- $("#uploadForm").submit();
- }
- //删除附件
- TalentAllowanceInfoDlg.deleteFile = function (id) {
- if (!TalentAllowanceInfoDlg.validateIsEdit())
- return;
- var operation = function () {
- var ajax = new $ax(Feng.ctxPath + "/common/api/deleteFile", function (data) {
- if (data.code = 200) {
- Feng.success(data.msg);
- $("#fileTable").bootstrapTable("refresh", {});
- } else {
- Feng.error(data.msg);
- }
- }, function (data) {
- Feng.error("删除失败!" + data.responseJSON.message + "!");
- });
- ajax.set("id", id);
- ajax.set("type", CONFIG.project_jbt);
- ajax.start();
- }
- Feng.confirm("删除后无法恢复,确认删除吗?", operation);
- }
- /**
- * 提交审核
- */
- TalentAllowanceInfoDlg.submitToCheck = function () {
- var id = $("#id").val();
- if (id == null || id == "") {
- Feng.info("请先填写基础信息并上传附件");
- return;
- }
- TalentAllowanceInfoDlg.clearData();
- TalentAllowanceInfoDlg.collectData();
- if (!TalentAllowanceInfoDlg.validateIsEdit())
- return;
- /*var active = $("#active").val();
- if (active == 2) {
- if (Feng.isEmptyStr(TalentAllowanceInfoDlg.talentAllowanceData.wage)) {
- Feng.info("请填写上一年度年薪");
- return;
- }
- if (!/^([1-9][0-9]*)+(\.[0-9]{1,10})?$/.test(TalentAllowanceInfoDlg.talentAllowanceData.wage)) {
- Feng.info("上一年度年薪格式不合法,无需填写单位元");
- return;
- }
- }*/
- var operation = function () {
- var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/submitToCheck", function (data) {
- if (data.code == 200) {
- Feng.success(data.msg);
- window.parent.TalentAllowanceInfo.table.refresh();
- TalentAllowanceInfoDlg.close();
- } else {
- Feng.error(data.msg);
- }
- }, function (data) {
- Feng.error("提交审核失败!" + data.responseJSON.message + "!");
- });
- ajax.set(TalentAllowanceInfoDlg.talentAllowanceData)
- // ajax.set("id", id);
- ajax.start();
- }
- Feng.confirm("请确认基础信息已核对无误,相应附件已上传,一旦提交,无法修改", operation);
- }
- /**
- * 校验是否可以修改/提交审核
- */
- TalentAllowanceInfoDlg.validateIsEdit = function () {
- var id = $("#id").val();
- if (id == null || id == '') {
- Feng.info("请先添加基本信息并保存后再试");
- return false;
- }
- var checkState = $("#checkState").val();
- if (checkState != 1 && checkState != 10) {
- if (checkState == -1) {
- Feng.error("您的申报审核不通过,无法再修改");
- return false;
- } else if (checkState == 30) {
- Feng.error("您的申报已审核通过,无法再修改");
- return false;
- } else {
- Feng.error("您的申报正在审核中,请耐心等待");
- return false;
- }
- }
- return true;
- }
- TalentAllowanceInfoDlg.initICheck = function () {
- $('input[type=checkbox]').iCheck({
- labelHover: false,
- cursor: true,
- checkboxClass: 'icheckbox_square-green',
- radioClass: 'iradio_square-greene',
- increaseArea: '20%'
- });
- }
- TalentAllowanceInfoDlg.showAllLog = function () {
- var id = $("#id").val();
- if (Feng.isNotEmptyStr(id)) {
- Feng.getCheckLog("logTable", {"type": CONFIG.project_jbt, "mainId": $("#id").val(), "typeFileId": "", "active": 1})
- }
- }
- $(function () {
- Feng.initValidatorTip("talentAllowanceForm", TalentAllowanceInfoDlg.validateFields);
- Feng.addAjaxSelect({
- "id": 'name',
- "displayCode": "id",
- "displayName": "name",
- "type": "GET",
- "url": Feng.ctxPath + "/enterprise/talent/findTalentByEnterpriseInLibrary?type=1&year=" + $("#year").val()
- });
- TalentAllowanceInfoDlg.validId();
- if ($("#type").val() == 2) {
- $("#bankNumberSpan,#talentTypeSpan,#introductionModeSpan,#firstInJJTimeSpan").attr("style", "display:none");
- }
- //批量加载时间控件
- $(".date").each(function () {
- laydate.render({elem: "#" + $(this).attr("id"), type: 'date', trigger: 'click'});
- });
- $("select").each(function () {
- $(this).val($(this).attr("value"));
- });
- if ($("#allowanceType").val() == 1) {
- //$("#wageDiv").css("display", "block");
- }
- //设置禁止字段
- var checkState = $("#checkState").val();
- if ($("#id").val() != "" && checkState != 1) {
- $("#allowanceType").attr("style", "pointer-events: none;background-color: #eee;");
- $("#wage").prop("readonly", true);
- }
- if (checkState == 10) {
- var fields = $("#fields").val().split(",");
- if (fields.indexOf("wage") > -1) {
- $("#wage").removeAttr("readonly");
- }
- if (fields.indexOf("allowanceType") > -1) {
- $("#allowanceType").removeAttr("style");
- }
- }
- TalentAllowanceInfoDlg.showAllLog();
- toastr.options = {
- "closeButton": true,
- "debug": false,
- "positionClass": "toast-bottom-right",
- "onclick": null,
- "showDuration": "300",
- "hideDuration": "1000",
- "timeOut": "600000",
- "extendedTimeOut": "1000",
- "showEasing": "swing",
- "hideEasing": "linear",
- "showMethod": "fadeIn",
- "hideMethod": "fadeOut",
- "tapToDismiss": true
- };
- toastr.success("请确保申报对象在申报津补贴之前已完成离职变更、工作单位变更、人才层次变更、银行账号变更且审核通过,否则可能带来不必要的损失,请在申报之前再次确认!!!");
- });
|