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.

220 lines
9.9 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. oGrid = null,
  4. fnPageInit = function () {
  5. var oForm = $('#form_main'),
  6. oBaseQueryPm = {
  7. pageIndex: 1,
  8. pageSize: parent.SysSet.GridRecords || 10,
  9. sortField: 'CreateDate',
  10. sortOrder: 'desc'
  11. },
  12. /**
  13. * 獲取資料
  14. * @param {Object} args 查詢條件參數
  15. * @return {Object} Ajax 物件
  16. */
  17. fnGet = function (args) {
  18. var oQueryPm = getFormSerialize(oForm);
  19. $.extend(oQueryPm, oBaseQueryPm, args);
  20. oBaseQueryPm.pageIndex = oQueryPm.pageIndex;
  21. return g_api.ConnectLite(sProgramId, 'QueryPage', oQueryPm, function (res) {
  22. var oRes = res.DATA.rel;
  23. if (args.Excel) {//匯出
  24. var oRes = res.DATA.rel;
  25. DownLoadFile(oRes);
  26. layer.close(args.Index);
  27. }
  28. });
  29. },
  30. /**
  31. * ToolBar 按鈕事件 function
  32. * @param {Object}inst 按鈕物件對象
  33. * @param {Object} e 事件對象
  34. */
  35. fnButtonHandler = function (inst, e) {
  36. var sId = inst.id;
  37. switch (sId) {
  38. case "Toolbar_Qry":
  39. var iNum = $('#PerPageNum').val();
  40. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  41. cacheQueryCondition();
  42. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  43. break;
  44. case "Toolbar_Save":
  45. fnSave('add');
  46. break;
  47. case "Toolbar_ReAdd":
  48. break;
  49. case "Toolbar_Clear":
  50. clearPageVal();
  51. break;
  52. case "Toolbar_Leave":
  53. break;
  54. case "Toolbar_Add":
  55. break;
  56. case "Toolbar_Upd":
  57. break;
  58. case "Toolbar_Copy":
  59. break;
  60. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  61. break;
  62. case "Toolbar_Exp":
  63. if (oGrid.data.length === 0) {
  64. showMsg(i18next.t("message.NoDataExport"));// ╠message.NoDataExport⇒沒有資料匯出╣
  65. return false;
  66. }
  67. fnGet({
  68. Excel: true
  69. });
  70. break;
  71. default:
  72. alert("No handle '" + sId + "'");
  73. break;
  74. }
  75. },
  76. /**
  77. * 頁面初始化
  78. */
  79. init = function () {
  80. commonInit({
  81. PrgId: sProgramId,
  82. ButtonHandler: fnButtonHandler,
  83. SearchBar: true
  84. }).done(function () {
  85. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87;
  86. $("#jsGrid").jsGrid({
  87. width: "100%",
  88. height: iHeight + "px",
  89. autoload: true,
  90. pageLoading: true,
  91. inserting: false,
  92. editing: false,
  93. sorting: true,
  94. paging: true,
  95. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  96. pageSize: parent.SysSet.GridRecords || 10,
  97. pageButtonCount: parent.SysSet.GridPages || 15,
  98. pagePrevText: "<",
  99. pageNextText: ">",
  100. pageFirstText: "<<",
  101. pageLastText: ">>",
  102. onPageChanged: function (args) {
  103. cacheQueryCondition(args.pageIndex);
  104. },
  105. rowClick: function (args) {
  106. if (navigator.userAgent.match(/mobile/i)) {
  107. var saUrl = args.item.Url.split('|');
  108. if (saUrl.length > 1) {
  109. var sPrgId = saUrl[0],
  110. sParam = saUrl[1];
  111. goToEdit(sPrgId, sParam);
  112. }
  113. }
  114. },
  115. rowDoubleClick: function (args) {
  116. var saUrl = args.item.Url.split('|');
  117. if (saUrl.length > 1) {
  118. var sPrgId = saUrl[0],
  119. sParam = saUrl[1];
  120. parent.openPageTab(sPrgId, sParam);
  121. }
  122. },
  123. fields: [
  124. { name: "RowIndex", title: 'common.RowNumber', align: "center", type: "text", width: 50, sorting: false },
  125. {
  126. name: "BillNO", title: 'common.BillNO', align: "left", type: "text", width: 80
  127. },
  128. {
  129. name: "ResponsiblePersonCodeName", title: 'common.ResponsiblePerson', align: "left", type: "text", width: 70
  130. },
  131. {
  132. name: "Payer", title: 'ExhibitionImport_Upd.Payer', align: "left", type: "text", width: 150
  133. },
  134. {
  135. name: "ForeignCurrencyCode", title: 'common.Financial_Currency', align: "left", type: "text", width: 50,
  136. itemTemplate: function (val, item) {
  137. return !val ? (parent.OrgID === 'SG' ? 'RMB' : 'NTD') : val;
  138. }
  139. },
  140. {
  141. name: "ExchangeRate", title: 'common.ExchangeRate', align: "left", type: "text", width: 50
  142. },
  143. {
  144. name: "Advance", title: 'common.Financial_Advance', align: "right", type: "text", width: 60,
  145. itemTemplate: function (val, item) {
  146. return fMoney(parseFloat(val), 2, item.ForeignCurrencyCode);
  147. }
  148. },
  149. {
  150. name: "TWNOTaxAmount", title: 'common.NOTaxAmount', align: "right", type: "text", width: 60,
  151. itemTemplate: function (val, item) {
  152. return fMoney(parseFloat(val), 2, item.ForeignCurrencyCode);
  153. }
  154. },
  155. {
  156. name: "TaxSum", title: 'common.TaxAmount', align: "right", type: "text", width: 60,
  157. itemTemplate: function (val, item) {
  158. return fMoney(parseFloat(val), 2, item.ForeignCurrencyCode);
  159. }
  160. },
  161. {
  162. name: "BillAmount", title: 'common.Financial_Sum', align: "right", type: "text", width: 60,
  163. itemTemplate: function (val, item) {
  164. return fMoney(parseFloat(val), 2, item.ForeignCurrencyCode);
  165. }
  166. },
  167. {
  168. name: "TotalReceivable", title: 'common.TotalReceivable', align: "right", type: "text", width: 60, sorting: false,
  169. itemTemplate: function (val, item) {
  170. return fMoney(parseFloat(val), 2, item.ForeignCurrencyCode);
  171. }
  172. },
  173. {// ╠common.AuditSer⇒審核人員╣
  174. name: "CreateUser", title: 'common.AuditSer', align: "left", type: "text", width: 70
  175. },
  176. {// ╠common.BillFirstCheckDate⇒第一次審核時間╣
  177. name: "BillFirstCheckDate", title: 'common.BillFirstCheckDate', type: "text", align: "center", width: 100,
  178. itemTemplate: function (val, item) {
  179. var rDate = !val ? item.CreateDate : val;
  180. return newDate(rDate);
  181. }
  182. },
  183. {
  184. name: "CreateDate", title: 'common.TransferDate', type: "text", align: "center", width: 100,
  185. itemTemplate: function (val, item) {
  186. return newDate(val);
  187. }
  188. }
  189. ],
  190. controller: {
  191. loadData: function (args) {
  192. return fnGet(args);
  193. }
  194. },
  195. onInit: function (args) {
  196. oGrid = args.grid;
  197. }
  198. });
  199. });
  200. };
  201. init();
  202. };
  203. require(['base', 'jsgrid', 'util'], fnPageInit);