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.

256 lines
14 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. case "Toolbar_Exp":
  64. if (oGrid.data.length === 0) {
  65. showMsg(i18next.t("message.NoDataExport"));// ╠message.NoDataExport⇒沒有資料匯出╣
  66. return false;
  67. }
  68. fnGet({ Excel: true });
  69. break;
  70. default:
  71. alert("No handle '" + sId + "'");
  72. break;
  73. }
  74. },
  75. /**
  76. * 頁面初始化
  77. */
  78. init = function () {
  79. commonInit({
  80. PrgId: sProgramId,
  81. ButtonHandler: fnButtonHandler,
  82. SearchBar: true
  83. });
  84. fnSetUserDrop([
  85. {
  86. Select: $('#AskTheDummy'),
  87. ShowId: true,
  88. Select2: true,
  89. CallBack: function () {
  90. reSetQueryPm(sProgramId);
  91. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87;
  92. $("#jsGrid").jsGrid({
  93. width: "100%",
  94. height: iHeight + "px",
  95. autoload: true,
  96. pageLoading: true,
  97. inserting: false,
  98. editing: true,
  99. sorting: true,
  100. paging: true,
  101. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  102. pageSize: parent.SysSet.GridRecords || 10,
  103. pageButtonCount: parent.SysSet.GridPages || 15,
  104. pagePrevText: "<",
  105. pageNextText: ">",
  106. pageFirstText: "<<",
  107. pageLastText: ">>",
  108. rowClass: function (item) {
  109. if (item.Status === 'X') {
  110. return 'data-void';
  111. }
  112. },
  113. onPageChanged: function (args) {
  114. cacheQueryCondition(args.pageIndex);
  115. },
  116. rowClick: function (args) {
  117. if (navigator.userAgent.match(/mobile/i)) {
  118. if ('A,C'.indexOf(args.item.Status) > -1 && args.item.AskTheDummy === parent.UserID) {
  119. goToEdit(sEditPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  120. }
  121. else {
  122. goToEdit(sViewPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  123. }
  124. }
  125. },
  126. rowDoubleClick: function (args) {
  127. if ('A,C'.indexOf(args.item.Status) > -1 && args.item.AskTheDummy === parent.UserID) {
  128. parent.openPageTab(sEditPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  129. }
  130. else {
  131. parent.openPageTab(sViewPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  132. }
  133. },
  134. fields: [
  135. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 40, sorting: false },
  136. { name: "SignedNumber", title: 'common.SignedNumber', width: 60 },
  137. {
  138. name: "KeyNote", title: 'common.KeyNote', width: 200, itemTemplate: function (val, item) {
  139. var sVal = val,
  140. oStatus = {
  141. 'A': i18next.t('common.Draft'),// ╠common.Draft⇒草稿╣
  142. 'B': i18next.t('common.InAudit'),// ╠common.InAudit⇒審核中╣
  143. 'C-O': i18next.t('common.HasReEdited'),// ╠common.HasReEdited⇒已抽單╣
  144. 'D-O': i18next.t('common.HasReturned'),// ╠common.HasReturned⇒已退件╣
  145. 'H-O': i18next.t('common.Hashandle'),// ╠common.Hashandle⇒已經辦╣
  146. 'E': i18next.t('common.ToHandle'),// ╠common.ToHandle⇒待經辦╣
  147. 'X': i18next.t('common.HasVoid')// ╠common.HasVoid⇒已作廢╣
  148. };
  149. sVal += oStatus[item.Status] ? '<span style="color:#DF5F09">(' + oStatus[item.Status] + ')</span>' : '';
  150. if (item.Important > 1) {
  151. for (var i = 0; i < item.Important - 1; i++) {
  152. sVal += ' <img src="../../images/star.gif">';
  153. }
  154. }
  155. return $('<a>', { html: sVal });
  156. }
  157. },
  158. { name: "AskTheDummyName", title: 'common.Applicant', width: 70, align: 'center' },
  159. {
  160. name: "FillBrushDate", title: 'common.FillBrushDate', width: 90, align: 'center', itemTemplate: function (val, item) {
  161. return newDate(val, true);
  162. }
  163. },
  164. {
  165. name: "FillBrushType", title: 'common.FillBrushType', width: 90, align: 'center', itemTemplate: function (val, item) {
  166. // ╠common.AllDay⇒全天╣ ╠common.Morning⇒上午╣ ╠common.Afternoon⇒下午╣
  167. return val === 'O' ? i18next.t('common.AllDay') : (val === 'A' ? i18next.t('common.Morning') : i18next.t('common.Afternoon'));
  168. }
  169. },
  170. {
  171. name: "CheckFlows", title: 'common.Progress', width: 50, itemTemplate: function (val, item) {
  172. var saCheckFlows = $.parseJSON(val),
  173. iProgress = 0;
  174. var saNewList = Enumerable.From(saCheckFlows).GroupBy("$.Order").ToArray();
  175. $.each(saNewList, function (idx, _data) {
  176. var sSignedWay = _data.source[0].SignedWay,
  177. iCount = Enumerable.From(_data.source).Where(function (e) { return e.SignedDecision !== ''; }).Count();
  178. if ((iCount === _data.source.length && sSignedWay !== 'flow3') || (iCount > 0 && sSignedWay === 'flow3')) {
  179. iProgress = idx + 1;
  180. }
  181. else {
  182. return false;
  183. }
  184. });
  185. return $('<a>', { html: iProgress + '/' + saNewList.length });
  186. }
  187. },
  188. {
  189. name: "CheckFlows", title: 'common.CurAuditor', width: 100, itemTemplate: function (val, item) {
  190. var saCheckFlows = $.parseJSON(val),
  191. sCurAuditor = '';
  192. var saNewList = Enumerable.From(saCheckFlows).GroupBy("$.Order").ToArray();
  193. $.each(saNewList, function (idx, _data) {
  194. var sSignedWay = _data.source[0].SignedWay,
  195. sFlowType = i18next.t('common.' + sSignedWay),
  196. iCount = Enumerable.From(_data.source).Where(function (e) { return e.SignedDecision !== ''; }).Count();
  197. if (('flow1,flow3'.indexOf(sSignedWay) > -1 && iCount === 0) || (sSignedWay === 'flow2' && iCount !== _data.source.length)) {
  198. sCurAuditor = Enumerable.From(_data.source).ToString(",", "$.SignedMember");
  199. if (sSignedWay !== 'flow1') {
  200. sCurAuditor = sFlowType + '(' + sCurAuditor + ')';
  201. }
  202. return false;
  203. }
  204. });
  205. if (sCurAuditor === '') {
  206. var saCheckFlows = $.parseJSON(item.HandleFlows);
  207. if (saCheckFlows[0].SignedDecision !== 'Y') {
  208. sCurAuditor = saCheckFlows[0].SignedMember;
  209. }
  210. }
  211. return $('<a>', { html: sCurAuditor.length > 11 ? sCurAuditor.substr(0, 11) + '...' : sCurAuditor, title: sCurAuditor });
  212. }
  213. },
  214. {
  215. name: "CreateDate", title: 'common.CreateDate', width: 90, align: 'center', itemTemplate: function (val, item) {
  216. return newDate(val);
  217. }
  218. }
  219. ],
  220. controller: {
  221. loadData: function (args) {
  222. return fnGet(args);
  223. },
  224. },
  225. onInit: function (args) {
  226. oGrid = args.grid;
  227. }
  228. });
  229. }
  230. }
  231. ]);
  232. };
  233. init();
  234. };
  235. require(['base', 'select2', 'jsgrid', 'util'], fnPageInit);