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.

244 lines
13 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sEditPrgId = getEditPrgId(),
  4. sViewPrgId = sProgramId.replace('_Qry', '_View'),
  5. oGrid = null,
  6. fnPageInit = function () {
  7. var oForm = $('#form_main'),
  8. oBaseQueryPm = {
  9. pageIndex: 1,
  10. pageSize: parent.SysSet.GridRecords || 10,
  11. sortField: 'ModifyDate',
  12. sortOrder: 'desc'
  13. },
  14. /**
  15. * 獲取資料
  16. */
  17. fnGet = function (args) {
  18. var oQueryPm = getFormSerialize(oForm);
  19. $.extend(oQueryPm, oBaseQueryPm, args);
  20. oBaseQueryPm.pageIndex = oQueryPm.pageIndex;
  21. oQueryPm.Roles = parent.UserInfo.roles;
  22. return g_api.ConnectLite(sProgramId, ComFn.GetPage, oQueryPm, function (res) {
  23. if (res.RESULT) {
  24. var oRes = res.DATA.rel;
  25. if (args.Excel) {//匯出
  26. DownLoadFile(oRes);
  27. }
  28. }
  29. });
  30. },
  31. /**
  32. * ToolBar 按鈕事件 function
  33. * @param {Object} inst 按鈕物件對象
  34. * @param {Object} e 事件對象
  35. */
  36. fnButtonHandler = function (inst, e) {
  37. var sId = inst.id;
  38. switch (sId) {
  39. case "Toolbar_Qry":
  40. var iNum = $('#PerPageNum').val();
  41. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  42. cacheQueryCondition();
  43. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  44. break;
  45. case "Toolbar_Save":
  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. parent.openPageTab(sEditPrgId, '?Action=Add');
  56. break;
  57. case "Toolbar_Upd":
  58. break;
  59. case "Toolbar_Copy":
  60. break;
  61. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  62. break;
  63. default:
  64. alert("No handle '" + sId + "'");
  65. break;
  66. }
  67. },
  68. /**
  69. * 頁面初始化
  70. */
  71. init = function () {
  72. commonInit({
  73. PrgId: sProgramId,
  74. ButtonHandler: fnButtonHandler,
  75. SearchBar: true
  76. });
  77. fnSetUserDrop([
  78. {
  79. Select: $('#Applicant'),
  80. ShowId: true,
  81. Select2: true,
  82. CallBack: function () {
  83. reSetQueryPm(sProgramId);
  84. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87;
  85. $("#jsGrid").jsGrid({
  86. width: "100%",
  87. height: iHeight + "px",
  88. autoload: true,
  89. pageLoading: true,
  90. inserting: false,
  91. editing: true,
  92. sorting: true,
  93. paging: true,
  94. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  95. pageSize: parent.SysSet.GridRecords || 10,
  96. pageButtonCount: parent.SysSet.GridPages || 15,
  97. pagePrevText: "<",
  98. pageNextText: ">",
  99. pageFirstText: "<<",
  100. pageLastText: ">>",
  101. rowClass: function (item) {
  102. if (item.Status === 'X') {
  103. return 'data-void';
  104. }
  105. },
  106. onPageChanged: function (args) {
  107. cacheQueryCondition(args.pageIndex);
  108. },
  109. rowClick: function (args) {
  110. if (navigator.userAgent.match(/mobile/i)) {
  111. if ('A,C'.indexOf(args.item.Status) > -1 && args.item.AskTheDummy === parent.UserID) {
  112. goToEdit(sEditPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  113. }
  114. else {
  115. goToEdit(sViewPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  116. }
  117. }
  118. },
  119. rowDoubleClick: function (args) {
  120. if ('A,C'.indexOf(args.item.Status) > -1 && args.item.Applicant === parent.UserID) {
  121. parent.openPageTab(sEditPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  122. }
  123. else {
  124. parent.openPageTab(sViewPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  125. }
  126. },
  127. fields: [
  128. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 40, sorting: false },
  129. { name: "SignedNumber", title: 'common.SignedNumber', width: 60 },
  130. {
  131. name: "KeyNote", title: 'common.KeyNote', width: 200, itemTemplate: function (val, item) {
  132. var sVal = val,
  133. oStatus = {
  134. 'A': i18next.t('common.Draft'),// ╠common.Draft⇒草稿╣
  135. 'B': i18next.t('common.InAudit'),// ╠common.InAudit⇒審核中╣
  136. 'C-O': i18next.t('common.HasReEdited'),// ╠common.HasReEdited⇒已抽單╣
  137. 'D-O': i18next.t('common.HasReturned'),// ╠common.HasReturned⇒已退件╣
  138. 'H-O': i18next.t('common.Hashandle'),// ╠common.Hashandle⇒已經辦╣
  139. 'E': i18next.t('common.ToHandle'),// ╠common.ToHandle⇒待經辦╣
  140. 'X': i18next.t('common.HasVoid')// ╠common.HasVoid⇒已作廢╣
  141. };
  142. sVal += oStatus[item.Status] ? '<span style="color:#DF5F09">(' + oStatus[item.Status] + ')</span>' : '';
  143. if (item.Important > 1) {
  144. for (var i = 0; i < item.Important - 1; i++) {
  145. sVal += ' <img src="../../images/star.gif">';
  146. }
  147. }
  148. return $('<a>', { html: sVal });
  149. }
  150. },
  151. { name: "ApplicantName", title: 'common.Applicant', width: 70, align: 'center' },
  152. {
  153. name: "BillChanges", title: 'common.BillChanges', width: 200, itemTemplate: function (val, item) {
  154. var oBillChanges = $.parseJSON(val);
  155. return oBillChanges.ExhibitionName + '[' + oBillChanges.BillNO + ']';
  156. }
  157. },
  158. {
  159. name: "CheckFlows", title: 'common.Progress', width: 50, itemTemplate: function (val, item) {
  160. var saCheckFlows = $.parseJSON(val),
  161. iProgress = 0;
  162. var saNewList = Enumerable.From(saCheckFlows).GroupBy("$.Order").ToArray();
  163. $.each(saNewList, function (idx, _data) {
  164. var sSignedWay = _data.source[0].SignedWay,
  165. iCount = Enumerable.From(_data.source).Where(function (e) { return e.SignedDecision !== ''; }).Count();
  166. if ((iCount === _data.source.length && sSignedWay !== 'flow3') || (iCount > 0 && sSignedWay === 'flow3')) {
  167. iProgress = idx + 1;
  168. }
  169. else {
  170. return false;
  171. }
  172. });
  173. return $('<a>', { html: iProgress + '/' + saNewList.length });
  174. }
  175. },
  176. {
  177. name: "CheckFlows", title: 'common.CurAuditor', width: 100, itemTemplate: function (val, item) {
  178. var saCheckFlows = $.parseJSON(val),
  179. sCurAuditor = '';
  180. var saNewList = Enumerable.From(saCheckFlows).GroupBy("$.Order").ToArray();
  181. $.each(saNewList, function (idx, _data) {
  182. var sSignedWay = _data.source[0].SignedWay,
  183. sFlowType = i18next.t('common.' + sSignedWay),
  184. iCount = Enumerable.From(_data.source).Where(function (e) { return e.SignedDecision !== ''; }).Count();
  185. if (('flow1,flow3'.indexOf(sSignedWay) > -1 && iCount === 0) || (sSignedWay === 'flow2' && iCount !== _data.source.length)) {
  186. sCurAuditor = Enumerable.From(_data.source).ToString(",", "$.SignedMember");
  187. if (sSignedWay !== 'flow1') {
  188. sCurAuditor = sFlowType + '(' + sCurAuditor + ')';
  189. }
  190. return false;
  191. }
  192. });
  193. if (sCurAuditor === '') {
  194. var saCheckFlows = $.parseJSON(item.HandleFlows);
  195. if (saCheckFlows[0].SignedDecision !== 'Y') {
  196. sCurAuditor = saCheckFlows[0].SignedMember;
  197. }
  198. }
  199. return $('<a>', { html: sCurAuditor.length > 11 ? sCurAuditor.substr(0, 11) + '...' : sCurAuditor, title: sCurAuditor });
  200. }
  201. },
  202. {
  203. name: "CreateDate", title: 'common.CreateDate', width: 90, align: 'center', itemTemplate: function (val, item) {
  204. return newDate(val);
  205. }
  206. }
  207. ],
  208. controller: {
  209. loadData: function (args) {
  210. return fnGet(args);
  211. },
  212. },
  213. onInit: function (args) {
  214. oGrid = args.grid;
  215. }
  216. });
  217. }
  218. }
  219. ]);
  220. };
  221. init();
  222. };
  223. require(['base', 'select2', 'jsgrid', 'util'], fnPageInit);