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.

55 lines
2.4 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. sortField: 'OrderByValue',
  5. sortOrder: 'asc',
  6. /**
  7. * 當前程式所有ID名稱集合
  8. */
  9. idKeys: ['OrgID', 'ModuleID'],
  10. /**
  11. * Grid欄位設置可以是 function
  12. */
  13. gridFields: [
  14. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 100, sorting: false },
  15. { name: "ModuleID", title: 'common.ModuleID', width: 200 },
  16. { name: "ModuleName", title: 'common.ModuleName', width: 200 },
  17. { name: "ProCount", title: 'ModuleMaintain_Qry.Count', width: 200 }, // ╠ModuleMaintain_Qry.Count⇒程式支數╣
  18. {
  19. name: "OrderByValue", title: 'common.OrderByValue', type: "select", width: 200,
  20. itemTemplate: function (val, item) {
  21. return this._createSelect = $("<select>", {
  22. class: 'w70',
  23. html: createOptions(item.OrderCount),
  24. change: function () {
  25. var sOldValue = val,
  26. sNewValue = this.value;
  27. g_api.ConnectLite(canDo.ProgramId, canDo._api.order, {
  28. Id: item.ModuleID,
  29. OldOrderByValue: sOldValue,
  30. NewOrderByValue: sNewValue
  31. }, function (res) {
  32. if (res.RESULT) {
  33. showMsg(i18next.t('message.Update_Success'), 'success');// ╠message.Update_Success⇒更新成功╣
  34. canDo.Grid.openPage(canDo.options.toFirstPage ? 1 : canDo.options.queryPageidx);
  35. }
  36. else {
  37. showMsg(i18next.t('message.Update_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Update_Failed⇒更新失敗╣
  38. }
  39. });
  40. }
  41. }).val(val);
  42. }
  43. }
  44. ],
  45. /**
  46. * 頁面初始化
  47. * @param {Object} pargs CanDo 對象
  48. */
  49. pageInit: function (pargs) {
  50. pargs._reSetQueryPm();
  51. pargs._initGrid();
  52. }
  53. });
  54. };
  55. require(['base', 'jsgrid', 'cando'], fnPageInit);