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.

320 lines
16 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. oTimeOut = null,
  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, 'QueryPage', oQueryPm, function (res) {
  24. var oRes = res.DATA.rel;
  25. if (args.Excel) {//匯出
  26. var oRes = res.DATA.rel;
  27. DownLoadFile(oRes);
  28. layer.close(args.Index);
  29. }
  30. });
  31. },
  32. /**
  33. * 打開要匯出的pop選擇匯出類別
  34. */
  35. fnOpenPopToExcel = function () {
  36. layer.open({
  37. type: 1,
  38. title: i18next.t('common.DownLoadDocuments'),// ╠common.DownLoadDocuments⇒下載文檔╣
  39. area: ['200px', '160px'],//寬度
  40. shade: 0.75,//遮罩
  41. shadeClose: true,
  42. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  43. content: '<div class="pop-box">\
  44. <button type="button" data-i18n="common.BasicInformation" id="OtherBusiness_BasicInformation" class="btn-custom green">基本資料</button>\
  45. </div>',
  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. * ToolBar 按鈕事件 function
  61. * @param {Object}inst 按鈕物件對象
  62. * @param {Object} e 事件對象
  63. */
  64. fnButtonHandler = function (inst, e) {
  65. var sId = inst.id;
  66. switch (sId) {
  67. case "Toolbar_Qry":
  68. var iNum = $('#PerPageNum').val();
  69. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  70. cacheQueryCondition();
  71. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  72. break;
  73. case "Toolbar_Save":
  74. fnSave('add');
  75. break;
  76. case "Toolbar_ReAdd":
  77. break;
  78. case "Toolbar_Clear":
  79. clearPageVal();
  80. break;
  81. case "Toolbar_Leave":
  82. break;
  83. case "Toolbar_Add":
  84. parent.openPageTab(sEditPrgId, '?Action=Add');
  85. break;
  86. case "Toolbar_Upd":
  87. break;
  88. case "Toolbar_Copy":
  89. break;
  90. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  91. break;
  92. case "Toolbar_Exp":
  93. if (oGrid.data.length === 0) {
  94. showMsg(i18next.t("message.NoDataExport"));// ╠message.NoDataExport⇒沒有資料匯出╣
  95. return false;
  96. }
  97. fnOpenPopToExcel();
  98. break;
  99. default:
  100. alert("No handle '" + sId + "'");
  101. break;
  102. }
  103. },
  104. /**
  105. * 初始化 function
  106. */
  107. init = function () {
  108. if (parent.OrgID !== 'TE') {
  109. $('.dept-box').hide();
  110. }
  111. commonInit({
  112. PrgId: sProgramId,
  113. ButtonHandler: fnButtonHandler,
  114. SearchBar: true
  115. });
  116. $.whenArray([
  117. fnSetDeptDrop($('#DepartmentID'), parent.SysSet.SearchDeptList),
  118. fnSetUserDrop([
  119. {
  120. Select: $('#ResponsiblePerson'),
  121. Select2: true,
  122. ShowId: true,
  123. ServiceCode: parent.SysSet.IMCode
  124. }
  125. ]),
  126. fnSetArgDrop([
  127. {
  128. ArgClassID: 'DeclClass',
  129. Select: $('#DeclarationClass'),
  130. ShowId: true
  131. }
  132. ])])
  133. .done(function () {
  134. reSetQueryPm(sProgramId);
  135. var sCode = parent.UserInfo.ServiceCode;
  136. if (sCode && parent.SysSet.IMCode.indexOf(sCode) > -1 && parent.UserInfo.roles.indexOf('CDD') === -1) {
  137. $('#ResponsiblePerson').val(parent.UserInfo.MemberID);
  138. }
  139. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87;
  140. $("#jsGrid").jsGrid({
  141. width: "100%",
  142. height: iHeight + "px",
  143. autoload: true,
  144. pageLoading: true,
  145. sorting: true,
  146. paging: true,
  147. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  148. pageSize: parent.SysSet.GridRecords || 10,
  149. pageButtonCount: parent.SysSet.GridPages || 15,
  150. pagePrevText: "<",
  151. pageNextText: ">",
  152. pageFirstText: "<<",
  153. pageLastText: ">>",
  154. headerClick: function () {
  155. },
  156. onPageChanged: function (args) {
  157. cacheQueryCondition(args.pageIndex);
  158. },
  159. rowClick: function (args) {
  160. if ((args.item.IsVoid === 'Y' && parent.UserInfo.IsManager) || args.item.IsVoid === 'N') {
  161. if (navigator.userAgent.match(/mobile/i)) {
  162. goToEdit(sEditPrgId, '?Action=Upd&ImportBillNO=' + args.item.Guid);
  163. }
  164. }
  165. else {
  166. showMsg(i18next.t("message.NoPermission")); // ╠message.NoPermission⇒沒有權限╣
  167. }
  168. },
  169. rowDoubleClick: function (args) {
  170. if ((args.item.IsVoid === 'Y' && parent.UserInfo.IsManager) || args.item.IsVoid === 'N') {
  171. parent.openPageTab(sEditPrgId, '?Action=Upd&ImportBillNO=' + args.item.Guid);
  172. }
  173. else {
  174. showMsg(i18next.t("message.NoPermission")); // ╠message.NoPermission⇒沒有權限╣
  175. }
  176. },
  177. rowClass: function (item) {
  178. var sClass = '';
  179. if (item.IsVoid === 'Y') {
  180. sClass = 'data-void';
  181. }
  182. return sClass;
  183. },
  184. fields: [
  185. {
  186. name: "RowIndex", title: 'common.RowNumber', type: "text", width: 50, align: "center", sorting: false
  187. },
  188. {
  189. name: "ExhibitionName", title: 'common.ExhibitionName', type: "text", width: 150
  190. },
  191. {
  192. name: "CustomerNM", title: 'common.Customer', type: "text", width: 150
  193. },
  194. {// ╠common.DeclarationNO⇒報單號碼╣
  195. name: "ImportDeclarationNO", title: 'common.DeclarationNO', type: "text", width: 100
  196. },
  197. {
  198. name: "AgentName", title: 'ExhibitionImport_Upd.Agent', type: "text", width: 150
  199. },
  200. {
  201. name: "ResponsiblePersonName", title: 'common.ResponsiblePerson', type: "text", width: 100
  202. },
  203. {
  204. type: "control", title: 'common.Bill_Status', itemTemplate: function (val, item) {// ╠common.Bill_Status⇒帳單狀態╣
  205. var iTips = 0,
  206. sTipsHtml = '<div class="layui-layer-btn-c">' + i18next.t("common.Bill_Status") + '</div>',// ╠common.Bill_Status⇒帳單狀態╣
  207. saBills = $.parseJSON(!(item.Bills) ? '[]' : item.Bills),
  208. bOK = true,
  209. oOption = {
  210. btnAlign: 'c',
  211. time: 600000 //一個小時(如果不配置,默认是3秒)
  212. },
  213. oTips = $('<span>', {
  214. 'class': 'glyphicon glyphicon-info-sign',
  215. 'aria-hidden': true
  216. }).on({
  217. click: function () {
  218. oOption.btn = [i18next.t("common.Close")];// ╠common.Close⇒關閉╣
  219. layer.msg(sTipsHtml, oOption);
  220. },
  221. mouseenter: function (event) {
  222. delete oOption.btn;
  223. iTips = layer.msg(sTipsHtml, oOption);
  224. },
  225. mouseleave: function (event) {
  226. layer.close(iTips);
  227. }
  228. });
  229. if (saBills.length > 0) {
  230. sTipsHtml += '<ul class="bill-status">';
  231. $.each(saBills, function (idx, bill) {
  232. var sStatusName = '';
  233. switch (bill.AuditVal) {
  234. case '0':// ╠common.NotAudit⇒未提交審核╣
  235. sStatusName = i18next.t("common.NotAudit");
  236. if (bOK) { bOK = false; }
  237. break;
  238. case '1':// ╠common.InAudit⇒提交審核中╣
  239. sStatusName = i18next.t("common.InAudit");
  240. if (bOK) { bOK = false; }
  241. break;
  242. case '2':// ╠common.Audited⇒已審核╣
  243. sStatusName = i18next.t("common.Audited");
  244. break;
  245. case '3':// ╠common.NotPass⇒不通過╣
  246. sStatusName = i18next.t("common.NotPass");
  247. if (bOK) { bOK = false; }
  248. break;
  249. case '4':// ╠common.HasBeenRealized⇒已銷帳╣
  250. sStatusName = i18next.t("common.HasBeenRealized");
  251. break;
  252. case '5':// ╠common.HasBeenPost⇒已過帳╣
  253. sStatusName = i18next.t("common.HasBeenPost");
  254. break;
  255. case '6':// ╠common.HasVoid⇒已作廢╣
  256. sStatusName = i18next.t("common.HasVoid");
  257. break;
  258. case '7':// ╠common.HasReEdit⇒抽單中╣
  259. sStatusName = i18next.t("common.HasReEdit");
  260. break;
  261. }
  262. sTipsHtml += "<li><a class='gopagetab' onclick='parent.openPageTab(\"" + sEditPrgId + "\",\"?Action=Upd&GoTab=2&ImportBillNO=" + item.Guid + "&BillNO=" + bill.BillNO + "\")' ><div>" + bill.BillNO + "</div><div>" + sStatusName + "</div></a></li>";
  263. });
  264. sTipsHtml += '</ul>';
  265. if (saBills.length > 15) {
  266. oOption.area = ['340px', '500px'];
  267. }
  268. }
  269. else {
  270. sTipsHtml = '<div>' + i18next.t("common.NOBills") + '</div>';// ╠common.NOBills⇒還沒有帳單╣
  271. bOK = false;
  272. }
  273. if (bOK) {
  274. oTips.css('color', 'blue');
  275. }
  276. else {
  277. oTips.css('color', 'red');
  278. }
  279. return oTips;
  280. }
  281. }
  282. ],
  283. controller: {
  284. loadData: function (args) {
  285. return fnGetPro(args);
  286. }
  287. },
  288. onInit: function (args) {
  289. oGrid = args.grid;
  290. }
  291. });
  292. if (parent.UserInfo.roles.indexOf('Business') > -1 || parent.UserInfo.roles.indexOf('CDD') > -1) {//報關||業務
  293. $('.slide-box').click();
  294. }
  295. });
  296. };
  297. init();
  298. };
  299. require(['base', 'select2', 'jsgrid', 'util'], fnPageInit);