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.

299 lines
14 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var saArrOrderBy = [],
  4. canDo = new CanDo({
  5. /**
  6. * 當前程式所有ID名稱集合
  7. */
  8. idKeys: ['OrgID', 'ProgramID'],
  9. /**
  10. * 當前程式所有參數名稱集合
  11. */
  12. paramKeys: ['ProgramID'],
  13. /**
  14. * 客製化驗證規則
  15. * @param {Object} pargs CanDo 對象
  16. */
  17. validRulesCus: function (pargs) {
  18. $.validator.addMethod("programidrule", function (value) {
  19. var bRetn = true;
  20. if (value) {
  21. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  22. {
  23. ProgramID: value,
  24. },
  25. function (res) {
  26. if (res.RESULT && res.DATA.rel > 0) {
  27. bRetn = false;
  28. }
  29. }, null, false);
  30. }
  31. return bRetn;
  32. });
  33. },
  34. /**
  35. * 驗證規則
  36. */
  37. validRules: function (pargs) {
  38. return {
  39. ignore: '',
  40. onfocusout: false,
  41. rules: {
  42. ProgramID: { programidrule: pargs.action === 'add' ? true : false },
  43. },
  44. messages: {
  45. ProgramID: { programidrule: i18next.t("message.Data_Repeat") }// ╠message.Data_Repeat⇒此筆資料已建檔╣
  46. }
  47. };
  48. },
  49. /**
  50. * 處理新增資料參數
  51. * @param {Object} pargs CanDo 對象
  52. * @param {Object} data 當前表單資料
  53. */
  54. getInsertParams: function (pargs, data) {
  55. data.ImgPath = '';
  56. data.ShowTop = data.ShowTop || false;
  57. data.GroupTag = data.ProgramID.split('_')[0];
  58. data.AllowRight = fnGetRights();
  59. data.updorder = [];
  60. $.each(saArrOrderBy, function (idx, order) {
  61. var saOrders = order.split(';');
  62. data.updorder.push({
  63. OldOrderByValue: saOrders[1],
  64. NewOrderByValue: saOrders[2],
  65. ModuleID: saOrders[0]
  66. });
  67. });
  68. return data;
  69. },
  70. /**
  71. * 處理修改資料參數
  72. * @param {Object} pargs CanDo 對象
  73. * @param {Object} data 當前表單資料
  74. */
  75. getUpdateParams: function (pargs, data) {
  76. data = pargs.options.getInsertParams(pargs, data);
  77. return data;
  78. },
  79. /**
  80. * 頁面初始化
  81. * @param {Object} pargs CanDo 對象
  82. */
  83. pageInit: function (pargs) {
  84. if (pargs.action === 'upd') {
  85. $('#ProgramID').prop('disabled', true);
  86. pargs._getOne().done(function (res) {
  87. var saActins = res.DATA.actions,
  88. saLeft = [],
  89. saRight = [];
  90. if (pargs.data.AllowRight) {
  91. $.each(saActins, function (idx, item) {
  92. if (('|' + $.trim(pargs.data.AllowRight || '') + '|').indexOf('|' + item.ArgumentID + '|') > -1) {
  93. saRight.push(item);
  94. }
  95. else {
  96. saLeft.push(item);
  97. }
  98. });
  99. $('#lstLeft').html(createOptions(saLeft, 'ArgumentID', 'ArgumentValue'))[0].remove(0);
  100. $('#lstRight').html(createOptions(saRight, 'ArgumentID', 'ArgumentValue'))[0].remove(0);
  101. }
  102. else {
  103. $('#lstLeft').html(createOptions(saActins, 'ArgumentID', 'ArgumentValue'))[0].remove(0);
  104. }
  105. $('#BackgroundCSS').spectrum("set", pargs.data.BackgroundCSS);
  106. fnJsPost();
  107. });
  108. }
  109. else {
  110. fnSetArgDrop([
  111. {
  112. ArgClassID: '99999',
  113. CallBack: function (data) {
  114. $('#lstLeft').html(createOptions(data, 'id', 'text'))[0].remove(0);
  115. }
  116. }
  117. ]);
  118. }
  119. $('[name=Effective]').click(function () {
  120. if (this.value == 'N') {
  121. $('[name=ShowInList][value=N]').click();
  122. $('[name=ShowInHome][value=N]').click();
  123. }
  124. });
  125. $('[name=ShowInList],[name=ShowInHome]').click(function () {
  126. if (this.value == 'Y' && $('[name=Effective]:checked').val() == 'N') {
  127. showMsg(i18next.t('ProgramMaintain_Upd.PrgIsDisable'));//程式已停用,不能顯示於選單!
  128. $('[name=ShowInList][value=N]').click();
  129. $('[name=ShowInHome][value=N]').click();
  130. }
  131. });
  132. $('#btnToRight').click(function () {
  133. optionListMove($('#lstLeft'), $('#lstRight'));
  134. });
  135. $('#btnToLeft').click(function () {
  136. optionListMove($('#lstRight'), $('#lstLeft'));
  137. });
  138. $('#btnData').click(function () {
  139. var oConfig = {
  140. Id: 'ModuleList',
  141. Get: fnGetPopData,
  142. SearchFields: [
  143. { id: "Pop_ModuleID", type: 'text', i18nkey: 'common.ModuleID' },
  144. { id: "Pop_ModuleName", type: 'text', i18nkey: 'common.ModuleName' }
  145. ],
  146. Fields: [
  147. { name: "RowIndex", title: 'common.RowNumber', sorting: false, align: 'center', width: 50 },
  148. { name: "ModuleID", title: 'common.ModuleID', width: 200 },
  149. { name: "ModuleName", title: 'common.ModuleName', width: 200 }
  150. ],
  151. Callback: function (data) {
  152. var saId = [],
  153. saName = [];
  154. $.each(data, function (idx, item) {
  155. saId.push(item.ModuleID);
  156. saName.push(item.ModuleName);
  157. });
  158. $('#ModuleID').val(saId.join(','));
  159. fnJsPost();
  160. }
  161. };
  162. oPenPopm(oConfig);
  163. });
  164. }
  165. }),
  166. /**
  167. * 獲取出口帳單資料
  168. * @param {Object} args 查詢條件參數
  169. * @return {Object} Ajax 物件
  170. */
  171. fnGetPopData = function (args) {
  172. args = args || {};
  173. args.ModuleID = $('#Pop_ModuleID').val();
  174. args.ModuleName = $('#Pop_ModuleName').val();
  175. args.sortField = args.sortField || 'OrderByValue';
  176. args.sortOrder = args.sortOrder || 'asc';
  177. args.pageIndex = args.pageIndex || 1;
  178. args.pageSize = args.pageSize || 10;
  179. return g_api.ConnectLite('ModuleMaintain_Qry', canDo._api.getpage, args,
  180. function (res) {
  181. if (res.RESULT) {
  182. var iOrderByCount = res.DATA.rel;
  183. if (canDo.action === 'add') {
  184. iOrderByCount++;
  185. }
  186. $('#OrderByValue').html(createOptions(iOrderByCount));
  187. if (canDo.action === 'add') {
  188. $('#OrderByValue').val(iOrderByCount);
  189. }
  190. }
  191. });
  192. },
  193. /**
  194. * 獲取已選權限
  195. * @return {Array} 可用權限
  196. */
  197. fnGetRights = function () {
  198. var saRights = [];
  199. $('#lstRight option').each(function () {
  200. saRights.push(this.value);
  201. });
  202. return saRights.join('|');
  203. },
  204. /**
  205. * 目的記錄舊的排序值
  206. */
  207. fnSetOrderBy = function (obj) {
  208. var saNewArrOrderBy = [];
  209. if (saArrOrderBy.length > 0) {
  210. for (var IntCount = 0; IntCount < saArrOrderBy.length; IntCount++) {
  211. var ArrOrder_S = saArrOrderBy[IntCount].split(';');
  212. if (ArrOrder_S[0] == obj.id) {
  213. saNewArrOrderBy.push(ArrOrder_S[0] + ';' + ArrOrder_S[1] + ';' + $(obj).val());
  214. }
  215. else {
  216. saNewArrOrderBy.push(saArrOrderBy[IntCount]);
  217. }
  218. }
  219. saArrOrderBy = saNewArrOrderBy;
  220. }
  221. },
  222. /**
  223. * 加載模組資料
  224. */
  225. fnJsPost = function () {
  226. g_api.ConnectLite(canDo.ProgramId, 'GetModuleInfo', {
  227. OrgID: parent.OrgID,
  228. AllModuleID: $('#ModuleID').val(),
  229. ProgramID: $('#ProgramID').val()
  230. }, function (res) {
  231. if (res.RESULT) {
  232. var JsonArray = res.DATA.rel,
  233. $ul = $('.ModuleList');
  234. $ul.html('');//先清空資料
  235. saArrOrderBy = [];
  236. var $lititle = $('<li />').html('<div class="col-sm-12"><div class="col-sm-8"><span>模組名稱</span> </div><div class="col-sm-4"><span>程式排序</span></div></div>');
  237. $lititle.appendTo($ul);
  238. for (var i = 0; i < JsonArray.length; i++) {
  239. var $li = $('<li />'),
  240. $div = $('<div class="col-sm-12" />'),
  241. $div_L = $('<div class="col-sm-8" style="padding-top: 8px;" />'),
  242. $div_R = $('<div class="col-sm-4" />'),
  243. $span_L = $('<span />'),
  244. $span_R = $('<span />'),
  245. $select = $('<select />', { change: function () { fnSetOrderBy(this); } });
  246. $span_L.css({ 'color': '#267eb1' }).html(JsonArray[i].ModuleName).appendTo($div_L);
  247. $select.attr({ 'id': JsonArray[i].ModuleID, 'class': 'form-control w70' }).appendTo($div_R);
  248. $div_L.appendTo($div);
  249. $div_R.appendTo($div);
  250. $div.appendTo($li);
  251. if (canDo.action == 'add') {
  252. var AllCount = parseInt(JsonArray[i].PrgCount) + 2;
  253. for (IntCount = 1; IntCount < AllCount; IntCount++) {
  254. var $option = $('<option />');
  255. if (IntCount == AllCount - 1) {
  256. //選中
  257. $option.attr({ 'value': IntCount, 'selected': 'selected' }).html(IntCount).appendTo($select);
  258. }
  259. else {
  260. $option.attr('value', IntCount).html(IntCount).appendTo($select);
  261. }
  262. }
  263. $li.appendTo($ul);
  264. //記錄排序值Mod|OldOrderBy|NewOrderBy|
  265. saArrOrderBy.push(JsonArray[i].ModuleID + ';' + (AllCount - 1).toString() + ';' + (AllCount - 1).toString());
  266. }
  267. else {
  268. //獲取舊資料OrderBy
  269. var JsonOrderBy = JsonArray[i].OrderByValue,
  270. OrderBy = JsonOrderBy != null ? JsonOrderBy : '',//新增則取最大修改取OrderBy
  271. selectCount = parseInt(JsonArray[i].PrgCount),
  272. AllCount = 0,
  273. IntCount;
  274. OrderBy == '' ? (AllCount = selectCount + 2, OrderBy = selectCount + 1) : (AllCount = selectCount + 1, OrderBy = OrderBy);//新增+2,修改+1
  275. for (IntCount = 1; IntCount < AllCount; IntCount++) {
  276. var $option = $('<option />');
  277. if (IntCount == OrderBy) {
  278. //選中
  279. $option.attr({ 'value': IntCount, 'selected': 'selected' }).html(IntCount).appendTo($select);
  280. }
  281. else {
  282. $option.attr('value', IntCount).html(IntCount).appendTo($select);
  283. }
  284. }
  285. $li.appendTo($ul);
  286. //記錄排序值Mod|OldOrderBy|NewOrderBy|
  287. saArrOrderBy.push(JsonArray[i].ModuleID + ';' + OrderBy + ';' + OrderBy);
  288. }
  289. }
  290. }
  291. });
  292. };
  293. };
  294. require(['base', 'jsgrid', 'spectrum', 'cando'], fnPageInit);