talentAllowanceInfo_select.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. /**
  2. * 初始化人才认定申报详情对话框
  3. */
  4. var TalentAllowanceInfoDlg = {
  5. talentAllowanceData: {},
  6. validateFields: {
  7. talentId: {validators: {notEmpty: {message: '申报对象不能为空'}}}
  8. }
  9. };
  10. //初始化附件类别表单
  11. TalentAllowanceInfoDlg.initFileTable = function () {
  12. TalentAllowanceInfoDlg.initContract();
  13. var queryData = {};
  14. queryData["mainId"] = $("#id").val();
  15. queryData['project'] = CONFIG.project_jbt;
  16. queryData['type'] = $("#type").val();
  17. queryData['allowanceType'] = $("#allowanceType").val();
  18. $("#fileTable").bootstrapTable({
  19. url: Feng.ctxPath + "/common/api/findCommonFileType",
  20. method: 'POST',
  21. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  22. search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
  23. showRefresh: false, // 是否显示刷新按钮
  24. clickToSelect: true, // 是否启用点击选中行
  25. singleSelect: true, // 设置True 将禁止多选
  26. striped: true, // 是否显示行间隔色
  27. escape: true,
  28. pagination: false, // 设置为 true 会在表格底部显示分页条
  29. paginationHAlign: "left",
  30. paginationDetailHAlign: "right",
  31. sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
  32. showColumns: false,
  33. detailView: true, //是否显示父子表
  34. pageList: [10, 30, 50],
  35. queryParams: function (params) {
  36. return $.extend(queryData, params)
  37. },
  38. rowStyle: function (row, index) {
  39. return {classes: "info"};
  40. },
  41. columns: TalentAllowanceInfoDlg.initFileTypeColumn(),
  42. onPostBody: function () {
  43. $("td.uitd_showTip").bind("mouseover", function () {
  44. var htm = $(this).html();
  45. $(this).webuiPopover({title: '详情', content: htm, trigger: 'hover'}).webuiPopover('show');
  46. });
  47. },
  48. onLoadSuccess: function (data) {
  49. $("#fileTable").bootstrapTable('expandAllRows');
  50. },
  51. onExpandRow: function (index, row, $detail) {
  52. var ajax = new $ax(Feng.ctxPath + "/common/api/listTalentFile", function (data) {
  53. if (data == null || data.length == 0) {
  54. return;
  55. }
  56. 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>';
  57. for (var key in data) {
  58. var sn = data[key].url.lastIndexOf(".");
  59. var suffix = data[key].url.substring(sn + 1, data[key].url.length);
  60. var imgStr = "";
  61. if (suffix == "pdf" || suffix == "PDF") {
  62. 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>";
  63. } else if (suffix == "xlsx" || suffix == "XLSX" || suffix == 'xls' || suffix == 'XLS') {
  64. 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>";
  65. } else {
  66. imgStr = '<img class=\"imgUrl\" src=\"' + data[key].url + '\" style=\"width:25px;height:25px;\">';
  67. }
  68. html = html + '<li style="display: none">' + data[key].id + '</li>\n' +
  69. '<li style="width: 80%;padding-top: 5px;">' + data[key].orignName + '</li>\n' +
  70. '<li style="width: 10%;">' + imgStr + '</li>\n';
  71. }
  72. html = html + '</ul>';
  73. $detail.html(html);
  74. $(".imgs").viewer({
  75. fullscreen: false
  76. });
  77. }, function (data) {
  78. Feng.error("查询失败!" + data.responseJSON.message + "!");
  79. });
  80. var queryData = {};
  81. queryData["mainId"] = $("#id").val();
  82. queryData["fileTypeId"] = row.id;
  83. ajax.set(queryData);
  84. ajax.start();
  85. }
  86. });
  87. TalentAllowanceInfoDlg.initCommonFileTable();
  88. }
  89. //初始化通用附件
  90. TalentAllowanceInfoDlg.initCommonFileTable = function () {
  91. var queryData = {};
  92. queryData.id = $("#id").val();
  93. $("#commonFileTable").bootstrapTable({
  94. url: Feng.ctxPath + "/common/api/listTalentAllowanceCommonFile",
  95. method: 'POST',
  96. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  97. search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
  98. showRefresh: false, // 是否显示刷新按钮
  99. clickToSelect: true, // 是否启用点击选中行
  100. singleSelect: true, // 设置True 将禁止多选
  101. striped: true, // 是否显示行间隔色
  102. pagination: false, // 设置为 true 会在表格底部显示分页条
  103. paginationHAlign: "left",
  104. paginationDetailHAlign: "right",
  105. sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
  106. showColumns: false,
  107. queryParams: function (params) {
  108. return $.extend(queryData, params)
  109. },
  110. rowStyle: function (row, index) {
  111. return {css: {"word-break": "break-word", "white-space": "inherit"}}
  112. },
  113. columns: [
  114. {title: '附件原名', field: 'originalName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: '70%', formatter: function (value, row, index) {
  115. return value;
  116. }},
  117. {title: '预览', field: 'url', visible: true, align: 'center', valign: 'middle', width: "20%",
  118. formatter: function (value, row, index) {
  119. var sn = value.lastIndexOf(".");
  120. var suffix = value.substring(sn + 1, value.length);
  121. var imgStr = "";
  122. if (suffix == "pdf" || suffix == "PDF") {
  123. 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>";
  124. } else if (suffix == "xlsx" || suffix == "XLSX" || suffix == 'xls' || suffix == 'XLS') {
  125. 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>";
  126. } else {
  127. imgStr = '<img class=\"cImgUrl\" src=\"' + value + '\" style=\"width:25px;height:25px;\">';
  128. }
  129. return imgStr;
  130. }
  131. },
  132. {title: '操作', field: 'url', visible: true, align: 'center', valign: 'middle', width: '10%',
  133. formatter: function (value, row, index) {
  134. return "";
  135. }
  136. }
  137. ],
  138. onPostBody: function () {
  139. $("td.uitd_showTip").bind("mouseover", function () {
  140. var htm = $(this).html();
  141. $(this).webuiPopover({title: '详情', content: htm, trigger: 'hover'}).webuiPopover('show');
  142. });
  143. $(".cImgUrl").viewer({fullscreen: false});
  144. }
  145. });
  146. }
  147. /**
  148. * 初始化工作单位及核查项目情况表
  149. */
  150. TalentAllowanceInfoDlg.initContract = function () {
  151. $("#projectTable").bootstrapTable("destroy", {});
  152. $("#projectTable").bootstrapTable({
  153. url: Feng.ctxPath + "/enterprise/talentAllowance/findAllowanceContractDetail",
  154. method: 'POST',
  155. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  156. search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
  157. showRefresh: false, // 是否显示刷新按钮
  158. clickToSelect: true, // 是否启用点击选中行
  159. singleSelect: true, // 设置True 将禁止多选
  160. striped: true, // 是否显示行间隔色
  161. escape: true,
  162. pagination: false, // 设置为 true 会在表格底部显示分页条
  163. paginationHAlign: "left",
  164. paginationDetailHAlign: "right",
  165. sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
  166. showColumns: false,
  167. detailView: true, //父子表
  168. queryParams: function (params) {
  169. return $.extend({"mainId": $("#id").val()}, params)
  170. },
  171. columns: TalentAllowanceInfoDlg.initContractColumns(),
  172. onPostBody: function () {
  173. $("td.uitd_showTip").bind("mouseover", function () {
  174. var htm = $(this).html();
  175. $(this).webuiPopover({title: '详情', content: htm, trigger: 'hover'}).webuiPopover('show');
  176. });
  177. },
  178. onLoadSuccess: function (data) {
  179. $("#projectTable").bootstrapTable('expandAllRows');
  180. },
  181. onExpandRow: function (index, row, $detail) {
  182. var enterpriseId = row.enterpriseId;
  183. var cur_table = $detail.html('<table id="' + enterpriseId + '" class="mytable-hover"></table>').find('table');
  184. $(cur_table).bootstrapTable("destroy", {});
  185. $(cur_table).bootstrapTable({
  186. url: Feng.ctxPath + "/enterprise/talentAllowance/findAllowanceProject",
  187. method: 'POST',
  188. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  189. search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
  190. showRefresh: false, // 是否显示刷新按钮
  191. clickToSelect: true, // 是否启用点击选中行
  192. singleSelect: true, // 设置True 将禁止多选
  193. escape: true,
  194. pagination: false, // 设置为 true 会在表格底部显示分页条
  195. paginationHAlign: "left",
  196. paginationDetailHAlign: "right",
  197. sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
  198. showColumns: false,
  199. queryParams: function (params) {
  200. return $.extend({"mainId": $("#id").val(), "baseId": row.id}, params)
  201. },
  202. columns: TalentAllowanceInfoDlg.initProjectColumns(),
  203. });
  204. }
  205. });
  206. }
  207. //初始化工作单位表的列
  208. TalentAllowanceInfoDlg.initContractColumns = function () {
  209. var type = $("#type").val();
  210. if (type == 1) {
  211. return [
  212. {field: 'selectItem', checkbox: false, visible: false},
  213. {title: '企业名称', field: 'enterpriseName', visible: true, align: 'center', valign: 'middle', width: "120px", 'class': 'uitd_showTip'},
  214. {title: '合同起始时间', field: 'startTime', visible: true, align: 'center', valign: 'middle', width: "120px", 'class': 'uitd_showTip'},
  215. {title: '合同截止时间', field: 'endTime', visible: true, align: 'center', valign: 'middle', width: "120px", 'class': 'uitd_showTip'},
  216. {title: '入职时间', field: 'entryTime', visible: true, align: 'center', valign: 'middle', width: "100px"},
  217. {title: '本年度工作截止时间', field: 'quitTime', visible: true, align: 'center', valign: 'middle', width: "100px"},
  218. {title: '人才标签', field: 'talentTypeName', visible: true, align: 'center', valign: 'middle', width: "100px", 'class': 'uitd_showTip'},
  219. {title: '首次来晋行政介绍信时间', field: 'letterTime', visible: true, align: 'center', valign: 'middle', width: "120px"},
  220. /*{title: '操作', field: 'id', visible: true, align: 'center', valign: 'middle', width: "120px",
  221. formatter: function (value, row, index) {
  222. return "<button type='button' onclick='TalentAllowanceInfoDlg.showLog(\"" + row.id + "\")' style='margin-right: 10px' class='btn btn-xs btn-success'>" +
  223. "<i class=\"fa fa-book\"></i>日志" +
  224. "</button>";
  225. }
  226. }*/
  227. ];
  228. } else {
  229. return [
  230. {field: 'selectItem', checkbox: false, visible: false},
  231. {title: '企业名称', field: 'enterpriseName', visible: true, align: 'center', valign: 'middle', width: "120px", 'class': 'uitd_showTip'},
  232. {title: '合同起始时间', field: 'startTime', visible: true, align: 'center', valign: 'middle', width: "120px"},
  233. {title: '合同截止时间', field: 'endTime', visible: true, align: 'center', valign: 'middle', width: "120px", 'class': 'uitd_showTip'},
  234. {title: '入职时间', field: 'entryTime', visible: true, align: 'center', valign: 'middle', width: "100px"},
  235. {title: '本年度工作截止时间', field: 'quitTime', visible: true, align: 'center', valign: 'middle', width: "100px"},
  236. /*{title: '操作', field: 'id', visible: true, align: 'center', valign: 'middle', width: "120px",
  237. formatter: function (value, row, index) {
  238. return "<button type='button' onclick='TalentAllowanceInfoDlg.showLog(\"" + row.id + "\")' style='margin-right: 10px' class='btn btn-xs btn-success'>" +
  239. "<i class=\"fa fa-book\"></i>日志" +
  240. "</button>"
  241. }
  242. }*/
  243. ];
  244. }
  245. }
  246. //初始化项目表的列
  247. TalentAllowanceInfoDlg.initProjectColumns = function () {
  248. return [
  249. {field: 'selectItem', checkbox: false, visible: false},
  250. {title: '核查项目名称', field: 'projectName', visible: true, align: 'center', valign: 'middle', width: "15%", 'class': 'uitd_showTip'},
  251. {title: '详情', field: 'months', visible: true, align: 'center', valign: 'middle', width: "45%", 'class': 'uitd_showTip',
  252. formatter: function (value, row, index) {
  253. var allowanceType = $("#allowanceType").val();
  254. var tmp = [];
  255. if (row.project == 4 && allowanceType == 2) {
  256. var dayArr = value ? value.split(",") : [];
  257. var totalDays = 0;
  258. for (var d = 0; d < dayArr.length; d++) {
  259. var kv = dayArr[d].split("=");
  260. if (kv[0] && kv[1]) {
  261. totalDays += parseInt(kv[1]);
  262. tmp.push(kv[0] + "月(" + kv[1] + "天)");
  263. }
  264. }
  265. tmp.push("共计" + totalDays + "天");
  266. } else {
  267. var monthArr = value ? value.split(",") : [];
  268. for (var d = 0; d < monthArr.length; d++) {
  269. if (monthArr[d]) {
  270. tmp.push(monthArr[d] + "月");
  271. }
  272. }
  273. }
  274. return tmp.join(",");
  275. }
  276. },
  277. {title: '备注', field: 'description', visible: true, align: 'center', valign: 'middle', width: "25%", 'class': 'uitd_showTip'},
  278. {title: '操作', field: 'project', visible: true, align: 'center', valign: 'middle', width: "15%",
  279. formatter: function (value, row, index) {
  280. return "<button type='button' onclick='TalentAllowanceInfoDlg.showLog(\"" + row.id + "\")' style='margin-right: 10px' class='btn btn-xs btn-success'><i class=\"fa fa-book\"></i>日志</button>";
  281. }
  282. }
  283. ];
  284. }
  285. /**
  286. * 初始化附件类别表的列
  287. */
  288. TalentAllowanceInfoDlg.initFileTypeColumn = function () {
  289. return [
  290. {field: 'selectItem', checkbox: false, visible: false},
  291. {title: '名称', field: 'name', visible: true, align: 'center', valign: 'middle', width: "30%", 'class': 'uitd_showTip',
  292. formatter: function (value, row, index) {
  293. if (row.must == 1) {
  294. return '<i class="fa fa-paste"></i><span style="font-weight:bold;color:red;font-size:14px;font-family:宋体"> * </span> ' + value;
  295. }
  296. if (row.must == 2) {
  297. return '<i class="fa fa-paste"></i>' + value;
  298. }
  299. }
  300. },
  301. {title: '模板', field: 'templateUrl', visible: true, align: 'center', valign: 'middle', width: "8%",
  302. formatter: function (value, row, index) {
  303. if (value == null || value == '' || value == 'null') {
  304. return '无';
  305. }
  306. return "<button type='button' onclick=\"Feng.downloadFile('" + row.id + "',3)\" style='margin-right: 10px' class=\"btn btn-xs btn-primary\">" +
  307. "<i class=\"fa fa-download\"></i>下载" +
  308. "</button>";
  309. }
  310. },
  311. {title: '备注', field: 'description', visible: true, align: 'center', valign: 'middle', width: "52%", 'class': 'uitd_showTip'},
  312. ]
  313. };
  314. TalentAllowanceInfoDlg.showLog = function (id) {
  315. layer.open({
  316. type: 1,
  317. title: "日志",
  318. fixed: false,
  319. content: '<table id="' + id + '"></table>',
  320. area: ['80%', '80%'],
  321. maxmin: true,
  322. success: function (layero, index) {
  323. $('#' + id).bootstrapTable({
  324. url: Feng.ctxPath + "/common/api/getJbtCheckLog",
  325. method: 'POST',
  326. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  327. search: false, // 是否显示表格搜索,此搜索是客户端搜索,不会进服务端
  328. showRefresh: false, // 是否显示刷新按钮
  329. clickToSelect: true, // 是否启用点击选中行
  330. singleSelect: true, // 设置True 将禁止多选
  331. striped: true, // 是否显示行间隔色
  332. pagination: false, // 设置为 true 会在表格底部显示分页条
  333. paginationHAlign: "left",
  334. paginationDetailHAlign: "right",
  335. sidePagination: "server", // 设置在哪里进行分页,可选值为 'client' 或者 'server'
  336. showColumns: false,
  337. queryParams: function (params) {
  338. return {"type": CONFIG.project_jbt, "mainId": $("#id").val(), "typeFileId": id, "active": 1}
  339. },
  340. columns:
  341. [
  342. {title: '步骤', field: 'stepName', visible: true, align: 'center', valign: 'middle', width: "10%",
  343. formatter: function (value, row, index) {
  344. return "" + value;
  345. }
  346. },
  347. {title: '操作人', field: 'createUser', visible: true, align: 'center', valign: 'middle', width: "15%"},
  348. {title: '操作时间', field: 'createTime', visible: true, align: 'center', valign: 'middle', width: "20%"},
  349. {title: '描述', field: 'description', visible: true, align: 'center', valign: 'middle', width: "45%",
  350. formatter: function (value, row, index) {
  351. return '<span data-toggle="tooltip" title="' + value + '">"' + value + '"</span>';
  352. }
  353. }
  354. ]
  355. ,
  356. onPostBody: function () {
  357. $('#' + id + "td.uitd_showTip").bind("mouseover", function () {
  358. var htm = $(this).html();
  359. $(this).webuiPopover({title: '详情', content: htm, trigger: 'hover'}).webuiPopover('show');
  360. });
  361. }
  362. });
  363. }
  364. });
  365. }
  366. //回调
  367. TalentAllowanceInfoDlg.callBack = function (data) {
  368. layer.close(data.obj);
  369. Feng.info(data.msg);
  370. if (data.code == 200) {
  371. var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/updateSuppleState", function (data) {
  372. if (data.code == 200) {
  373. } else {
  374. }
  375. }, function (data) {
  376. Feng.error("修改失败!" + data.responseJSON.message + "!");
  377. });
  378. ajax.set("id", $("#id").val());
  379. ajax.start();
  380. $("#fileTable").bootstrapTable("refresh", {});
  381. }
  382. }
  383. TalentAllowanceInfoDlg.showAllLog = function () {
  384. var id = $("#id").val();
  385. if (Feng.isNotEmptyStr(id)) {
  386. Feng.getCheckLog("logTable", {"type": CONFIG.project_jbt, "mainId": id, "typeFileId": "", "active": 1})
  387. }
  388. }
  389. TalentAllowanceInfoDlg.calculator = function () {
  390. var id = $("#id").val();
  391. if (!id) {
  392. Feng.error("请先保存再进行计算");
  393. return;
  394. }
  395. var ajax = new $ax(Feng.ctxPath + "/enterprise/talentAllowance/calculator/id/" + id, function (data) {
  396. var message = data.recommendAllowanceMsg.join("<br>");
  397. if (data.recommendAllowanceType != 3) {
  398. message += "<br>试算补贴金额:<span style='color:red;font-weight:bold;'>" + data.recommendMoney + "</span>";
  399. }
  400. Feng.confirm(message, function () {});
  401. }, function (data) {
  402. Feng.error("查询失败!" + data.responseJSON.message + "!");
  403. });
  404. ajax.start();
  405. }
  406. $(function () {
  407. Feng.initValidatorTip("talentAllowanceForm", TalentAllowanceInfoDlg.validateFields);
  408. Feng.addAjaxSelect({
  409. "id": 'name',
  410. "displayCode": "id",
  411. "displayName": "name",
  412. "type": "GET",
  413. "url": Feng.ctxPath + "/enterprise/talent/findTalentByEnterpriseInLibrary?type=1&year=" + $("#year").val()
  414. });
  415. if ($("#type").val() == 2) {
  416. $("#bankNumberSpan,#talentTypeSpan,#introductionModeSpan,#firstInJJTimeSpan").attr("style", "display:none");
  417. }
  418. if ($("#allowanceType").val() == 1) {
  419. //$("#wageDiv").css("display", "block");
  420. }
  421. //批量加载时间控件
  422. $(".date").each(function () {
  423. laydate.render({elem: "#" + $(this).attr("id"), type: 'date', trigger: 'click'});
  424. });
  425. $("select").each(function () {
  426. $(this).val($(this).attr("value"));
  427. });
  428. TalentAllowanceInfoDlg.showAllLog();
  429. });