You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

422 lines
24 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sEditPrgId = getEditPrgId(),
  4. oGrid = null,
  5. fnPageInit = function () {
  6. var oForm = $('#form_main'),
  7. saAllHolidays = [],
  8. oBaseQueryPm = {
  9. pageIndex: 1,
  10. pageSize: parent.SysSet.GridRecords || 10,
  11. sortField: '',
  12. sortOrder: 'asc'
  13. },
  14. /**
  15. * 獲取資料
  16. * @param {Object} args 查詢參數
  17. * @return {Object} Ajax 物件
  18. */
  19. fnGetPro = function (args) {
  20. var oQueryPm = getFormSerialize(oForm);
  21. $.extend(oQueryPm, oBaseQueryPm, args);
  22. oBaseQueryPm.pageIndex = oQueryPm.pageIndex;
  23. return g_api.ConnectLite(sProgramId, args.Excel ? 'GetExcel' : 'QueryPage', oQueryPm, function (res) {
  24. if (args.Excel) {//匯出
  25. var oRes = res.DATA.rel;
  26. DownLoadFile(oRes);
  27. layer.close(args.Index);
  28. }
  29. });
  30. },
  31. /**
  32. * 打開要匯出的pop選擇匯出類別
  33. */
  34. fnOpenPopToExcel = function () {
  35. layer.open({
  36. type: 1,
  37. title: i18next.t('common.DownLoadDocuments'),// ╠common.DownLoadDocuments⇒下載文檔╣
  38. area: ['300px', '160px'],//寬度
  39. shade: 0.75,//遮罩
  40. shadeClose: true,
  41. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  42. content: '<div class="pop-box">\
  43. <button type="button" data-i18n="common.BasicInformation" id="Export_BasicInformation" class="btn-custom green">基本資料</button>\
  44. <button type="button" data-i18n="common.BusinessTrackingSchedule" id="Export_BusinessTrackingSchedule" class="btn-custom green">業務追蹤進度表</button>\
  45. </div>',//common.BasicInformation基本資料common.BusinessTrackingSchedule業務追蹤進度表
  46. success: function (layero, idx) {
  47. $('.pop-box :button').click(function () {
  48. var sToExcelType = this.id;
  49. fnGetPro({
  50. Excel: true,
  51. ExcelType: sToExcelType,
  52. Index: idx
  53. });
  54. });
  55. transLang(layero);
  56. }
  57. });
  58. },
  59. /**
  60. * 設置Grid行樣式
  61. * @param {String} val 欄位值
  62. * @param {Object} item 欄位值
  63. * @return {String} 新字串
  64. */
  65. setGridRow = function (val, item) {
  66. var sVal = val || '';
  67. if (item.IsAlert === 'Y') {
  68. sVal = '<span class="t-red t-bold">' + sVal + '</span>';
  69. }
  70. return sVal
  71. },
  72. /**
  73. * ToolBar 按鈕事件 function
  74. * @param {Object}inst 按鈕物件對象
  75. * @param {Object} e 事件對象
  76. */
  77. fnButtonHandler = function (inst, e) {
  78. var sId = inst.id;
  79. switch (sId) {
  80. case "Toolbar_Qry":
  81. var iNum = $('#PerPageNum').val();
  82. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  83. cacheQueryCondition();
  84. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  85. break;
  86. case "Toolbar_Save":
  87. fnSave('add');
  88. break;
  89. case "Toolbar_ReAdd":
  90. break;
  91. case "Toolbar_Clear":
  92. clearPageVal();
  93. break;
  94. case "Toolbar_Leave":
  95. break;
  96. case "Toolbar_Add":
  97. parent.openPageTab(sEditPrgId, '?Action=Add');
  98. break;
  99. case "Toolbar_Upd":
  100. break;
  101. case "Toolbar_Copy":
  102. break;
  103. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  104. fnDelete();
  105. break;
  106. case "Toolbar_Exp":
  107. if (oGrid.data.length === 0) {
  108. showMsg(i18next.t("message.NoDataExport"));// ╠message.NoDataExport⇒沒有資料匯出╣
  109. return false;
  110. }
  111. fnOpenPopToExcel();
  112. break;
  113. default:
  114. alert("No handle '" + sId + "'");
  115. break;
  116. }
  117. },
  118. /**
  119. * 初始化 function
  120. */
  121. init = function () {
  122. if (parent.OrgID !== 'TE') {
  123. $('.dept-box').hide();
  124. }
  125. commonInit({
  126. PrgId: sProgramId,
  127. ButtonHandler: fnButtonHandler,
  128. SearchBar: true
  129. });
  130. $.whenArray([
  131. fnSetDeptDrop($('#DepartmentID'), parent.SysSet.SearchDeptList),
  132. fnSetUserDrop([
  133. {
  134. Select: $('#ResponsiblePerson'),
  135. Select2: true,
  136. ShowId: true,
  137. ServiceCode: parent.SysSet.EXCode
  138. }
  139. ])
  140. ])
  141. .done(function () {
  142. reSetQueryPm(sProgramId);
  143. var sCode = parent.UserInfo.ServiceCode;
  144. if (sCode && parent.SysSet.EXCode.indexOf(sCode) > -1 && parent.UserInfo.roles.indexOf('CDD') === -1) {
  145. $('#ResponsiblePerson').val(parent.UserInfo.MemberID);
  146. }
  147. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87;
  148. $("#jsGrid").jsGrid({
  149. width: "100%",
  150. height: iHeight + "px",
  151. autoload: true,
  152. pageLoading: true,
  153. sorting: true,
  154. paging: true,
  155. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  156. pageSize: parent.SysSet.GridRecords || 10,
  157. pageButtonCount: parent.SysSet.GridPages || 15,
  158. pagePrevText: "<",
  159. pageNextText: ">",
  160. pageFirstText: "<<",
  161. pageLastText: ">>",
  162. headerClick: function () {
  163. },
  164. onPageChanged: function (args) {
  165. cacheQueryCondition(args.pageIndex);
  166. },
  167. rowClick: function (args) {
  168. if ((args.item.IsVoid === 'Y' && parent.UserInfo.IsManager) || args.item.IsVoid === 'N') {
  169. if (navigator.userAgent.match(/mobile/i)) {
  170. goToEdit(sEditPrgId, '?Action=Upd&ExportBillNO=' + args.item.ExportBillNO);
  171. }
  172. }
  173. else {
  174. showMsg(i18next.t("message.NoPermission")); // ╠message.NoPermission⇒沒有權限╣
  175. }
  176. },
  177. rowDoubleClick: function (args) {
  178. if ((args.item.IsVoid === 'Y' && parent.UserInfo.IsManager) || args.item.IsVoid === 'N') {
  179. parent.openPageTab(sEditPrgId, '?Action=Upd&ExportBillNO=' + args.item.ExportBillNO);
  180. }
  181. else {
  182. showMsg(i18next.t("message.NoPermission")); // ╠message.NoPermission⇒沒有權限╣
  183. }
  184. },
  185. rowClass: function (item) {
  186. var sClass = '';
  187. if (item.IsVoid === 'Y') {
  188. sClass = 'data-void';
  189. }
  190. return sClass;
  191. },
  192. fields: [
  193. {
  194. name: "RowIndex", title: 'common.RowNumber', type: "text", width: 40, align: "center", sorting: false, itemTemplate: function (val, item) {
  195. var sVal = setGridRow(val, item);
  196. return sVal;
  197. }
  198. },
  199. {
  200. name: "RefNumber", title: 'ExhibitionExport_Upd.RefNumber', type: "text", width: 80, itemTemplate: function (val, item) {
  201. var sVal = setGridRow(val, item);
  202. return sVal;
  203. }
  204. },
  205. {
  206. name: "ExportBillName", title: 'ExhibitionExport_Upd.ExportBillName', type: "text", width: 150, itemTemplate: function (val, item) {
  207. var sVal = setGridRow(val, item);
  208. return sVal;
  209. }
  210. },
  211. {
  212. name: "BillLadNO", title: 'ExhibitionExport_Upd.BillLadNO', type: "text", width: 80, itemTemplate: function (val, item) {
  213. var sVal = setGridRow(val, item);
  214. return sVal;
  215. }
  216. },
  217. {
  218. name: "AgentName", title: 'ExhibitionExport_Upd.Agent', type: "text", width: 120, itemTemplate: function (val, item) {
  219. var sVal = setGridRow(val, item);
  220. return sVal;
  221. }
  222. },
  223. {
  224. name: "ResponsiblePersonName", title: 'ExhibitionExport_Upd.ResponsiblePerson', type: "text", width: 60, itemTemplate: function (val, item) {
  225. var sVal = setGridRow(val, item);
  226. return sVal;
  227. }
  228. },
  229. {
  230. name: "Flow_Status", title: 'common.Flow_Status', type: "text", width: 60, itemTemplate: function (val, item) {
  231. var sVal = setGridRow(val, item);
  232. return sVal;
  233. }
  234. },
  235. {
  236. name: "REF", title: 'ExhibitionImport_Upd.REF', type: "text", width: 80, itemTemplate: function (val, item) {
  237. var sVal = setGridRow(val, item);
  238. return sVal;
  239. }
  240. },
  241. {//╠ExhibitionExport_Upd.ExhibitionDateStart⇒活動日期起╣
  242. name: "ExhibitionDateStart", title: 'ExhibitionExport_Upd.ExhibitionDateStart', type: "text", width: 70, itemTemplate: function (val, item) {
  243. var sVal = setGridRow(newDate(val, 'date', true), item);
  244. return sVal;
  245. }
  246. },
  247. {//╠ExhibitionExport_Upd.ExhibitionDateEnd⇒活動日期訖╣
  248. name: "ExhibitionDateEnd", title: 'ExhibitionExport_Upd.ExhibitionDateEnd', type: "text", width: 70, itemTemplate: function (val, item) {
  249. var sVal = setGridRow(newDate(val, 'date', true), item);
  250. return sVal;
  251. }
  252. },
  253. {
  254. type: "control", title: 'common.Bill_Status', itemTemplate: function (val, item) {// ╠common.Bill_Status⇒帳單狀態╣
  255. var iTips = 0,
  256. sTipsHtml = '<div class="layui-layer-btn-c">' + i18next.t("common.Bill_Status") + '</div>',
  257. saBills = $.parseJSON(!(item.Bills) ? '[]' : item.Bills),
  258. saReturnBills = $.parseJSON(!(item.ReturnBills) ? '[]' : item.ReturnBills),
  259. saReBills = [],
  260. bOK = true,
  261. oOption = {
  262. btnAlign: 'c',
  263. time: 600000 //一個小時(如果不配置,默认是3秒)
  264. },
  265. oTips = $('<span>', {
  266. 'class': 'glyphicon glyphicon-info-sign',
  267. 'aria-hidden': true
  268. }).on({
  269. click: function () {
  270. oOption.btn = [i18next.t("common.Close")];// ╠common.Close⇒關閉╣
  271. layer.msg(sTipsHtml, oOption);
  272. },
  273. mouseenter: function (event) {
  274. delete oOption.btn;
  275. iTips = layer.msg(sTipsHtml, oOption);
  276. },
  277. mouseleave: function (event) {
  278. layer.close(iTips);
  279. }
  280. });
  281. if (saReturnBills.length > 0) {
  282. $.each(saReturnBills, function (idx, _return) {
  283. if (_return.Bills && _return.Bills.length > 0) {
  284. $.each(_return.Bills, function (idx, bill) {
  285. saReBills.push(bill);
  286. });
  287. }
  288. });
  289. }
  290. if (saBills.length > 0 || saReBills.length > 0) {
  291. sTipsHtml += '<ul class="bill-status">';
  292. if (saBills.length > 0) {
  293. $.each(saBills, function (idx, bill) {
  294. var sStatusName = '';
  295. switch (bill.AuditVal) {
  296. case '0':// ╠common.NotAudit⇒未提交審核╣
  297. sStatusName = i18next.t("common.NotAudit");
  298. if (bOK) { bOK = false; }
  299. break;
  300. case '1':// ╠common.InAudit⇒提交審核中╣
  301. sStatusName = i18next.t("common.InAudit");
  302. if (bOK) { bOK = false; }
  303. break;
  304. case '2':// ╠common.Audited⇒已審核╣
  305. sStatusName = i18next.t("common.Audited");
  306. break;
  307. case '3':// ╠common.NotPass⇒不通過╣
  308. sStatusName = i18next.t("common.NotPass");
  309. if (bOK) { bOK = false; }
  310. break;
  311. case '4':// ╠common.HasBeenRealized⇒已銷帳╣
  312. sStatusName = i18next.t("common.HasBeenRealized");
  313. break;
  314. case '5':// ╠common.HasBeenPost⇒已過帳╣
  315. sStatusName = i18next.t("common.HasBeenPost");
  316. break;
  317. case '6':// ╠common.HasVoid⇒已作廢╣
  318. sStatusName = i18next.t("common.HasVoid");
  319. break;
  320. case '7':// ╠common.HasReEdit⇒抽單中╣
  321. sStatusName = i18next.t("common.HasReEdit");
  322. break;
  323. }
  324. sTipsHtml += "<li><a class='gopagetab' onclick='parent.openPageTab(\"" + sEditPrgId + "\",\"?Action=Upd&GoTab=3&ExportBillNO=" + item.ExportBillNO + "&BillNO=" + bill.BillNO + "\")' ><div>" + (bill.SupplierName || bill.SupplierEName || '') + '(' + bill.BillNO + ")</div><div>" + sStatusName + "</div></a></li>";
  325. });
  326. }
  327. if (saReBills.length > 0) {
  328. sTipsHtml += '<li>' + i18next.t("common.ReturnBills") + '</li>';// ╠common.ReturnBills⇒退運賬單╣
  329. $.each(saReBills, function (idx, bill) {
  330. var sStatusName = '';
  331. switch (bill.AuditVal) {
  332. case '0':// ╠common.NotAudit⇒未提交審核╣
  333. sStatusName = i18next.t("common.NotAudit");
  334. if (bOK) { bOK = false; }
  335. break;
  336. case '1':// ╠common.InAudit⇒提交審核中╣
  337. sStatusName = i18next.t("common.InAudit");
  338. if (bOK) { bOK = false; }
  339. break;
  340. case '2':// ╠common.Audited⇒已審核╣
  341. sStatusName = i18next.t("common.Audited");
  342. break;
  343. case '3':// ╠common.NotPass⇒不通過╣
  344. sStatusName = i18next.t("common.NotPass");
  345. if (bOK) { bOK = false; }
  346. break;
  347. case '4':// ╠common.HasBeenRealized⇒已銷帳╣
  348. sStatusName = i18next.t("common.HasBeenRealized");
  349. break;
  350. case '5':// ╠common.HasBeenPost⇒已過帳╣
  351. sStatusName = i18next.t("common.HasBeenPost");
  352. break;
  353. case '6':// ╠common.HasVoid⇒已作廢╣
  354. sStatusName = i18next.t("common.HasVoid");
  355. break;
  356. case '7':// ╠common.HasReEdit⇒抽單中╣
  357. sStatusName = i18next.t("common.HasReEdit");
  358. break;
  359. }
  360. sTipsHtml += "<li><a class='gopagetab' onclick='parent.openPageTab(\"" + sEditPrgId + "\",\"?Action=Upd&GoTab=5&ExportBillNO=" + item.ExportBillNO + "&BillNO=" + bill.BillNO + "\")' ><div>" + (bill.SupplierName || bill.SupplierEName || '') + '(' + bill.BillNO + ")</div><div>" + sStatusName + "</div></a></li>";
  361. });
  362. }
  363. sTipsHtml += '</ul>';
  364. oOption.area = ['550px'];
  365. if (saBills.length + saReBills.length > 15) {
  366. oOption.area = ['550px', '500px'];
  367. }
  368. }
  369. else {
  370. sTipsHtml = '<div>' + i18next.t("common.NOBills") + '</div>';// ╠common.NOBills⇒還沒有帳單╣
  371. bOK = false;
  372. }
  373. if (bOK) {
  374. oTips.css('color', 'blue');
  375. }
  376. else {
  377. oTips.css('color', 'red');
  378. }
  379. return oTips;
  380. }
  381. }
  382. ],
  383. controller: {
  384. loadData: function (args) {
  385. return fnGetPro(args);
  386. }
  387. },
  388. onInit: function (args) {
  389. oGrid = args.grid;
  390. }
  391. });
  392. if (parent.UserInfo.roles.indexOf('Business') > -1 || parent.UserInfo.roles.indexOf('CDD') > -1) {//報關||業務
  393. $('.slide-box').click();
  394. }
  395. });
  396. };
  397. init();
  398. };
  399. require(['base', 'select2', 'jsgrid', 'util'], fnPageInit);