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.

304 lines
12 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. /**
  5. * Grid初始化
  6. * @param {Object} pargs CanDo 對象
  7. */
  8. initGrid: function (pargs, data) {
  9. var saFields = [];
  10. saFields.push({ name: "RowId", title: 'common.RowNumber', align: 'center', width: 50, sorting: false });
  11. saFields.push({
  12. name: "ProgramName", title: 'common.ProgramName', width: 120, sorting: false, itemTemplate: function (val, item) {
  13. return $('<a/>', {
  14. html: val, click: function () {
  15. $(this).parents('tr').find(':input[type="checkbox"]').click();
  16. }
  17. });
  18. }
  19. });
  20. $.each(data, function (indx, item) {
  21. saFields.push({
  22. name: item.id, title: 'common.Toolbar_' + item.id, width: 70, sorting: false, align: "center",
  23. itemTemplate: function (val, item) {
  24. if (val != undefined) {
  25. var sAllRight = $.trim(item.AllowRight);
  26. return $("<input>", {
  27. type: 'checkbox',
  28. value: val,
  29. disabled: item.fix === 'Y' ? true : false,
  30. checked: sAllRight.indexOf(val) > -1, click: function (e) {
  31. e.stopPropagation();
  32. var sRight = $.trim(item.AllowRight),
  33. saRight = sRight === '' ? [] : sRight.split('|'),
  34. saLastRight = [];
  35. if (this.checked) {
  36. saRight.push(this.value);
  37. }
  38. else {
  39. if (saRight.indexOf(this.value) > -1)
  40. saRight.splice($.inArray(this.value, saRight), 1);
  41. }
  42. $.each(saRight, function (idx, right) {
  43. if (('|' + $.trim(item.CanAllowRight) + '|').indexOf('|' + right + '|') > -1) {
  44. saLastRight.push(right);
  45. }
  46. });
  47. item.AllowRight = saLastRight.join('|');
  48. }
  49. });
  50. }
  51. else {
  52. return "";
  53. }
  54. }
  55. });
  56. });
  57. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 117;
  58. pargs.jsGrid.jsGrid({
  59. width: "100%",
  60. height: iHeight + "px",
  61. autoload: false,
  62. pageLoading: true,
  63. inserting: false,
  64. editing: false,
  65. sorting: false,
  66. paging: false,
  67. invalidMessage: '输入的数据无效!',
  68. confirmDeleting: true,
  69. deleteConfirm: "確定要刪除嗎?",
  70. pagePrevText: "<",
  71. pageNextText: ">",
  72. pageFirstText: "<<",
  73. pageLastText: ">>",
  74. fields: saFields,
  75. controller: {
  76. loadData: function (args) {
  77. return pargs.getPage(pargs, args);
  78. },
  79. },
  80. onInit: function (args) {
  81. pargs.setGrid(args.grid);
  82. }
  83. });
  84. },
  85. /**
  86. * 客製化按鈕
  87. * @param {Object} pargs CanDo 對象
  88. */
  89. cusBtns: function (pargs) {
  90. var saCusBtns = [{
  91. id: 'CheckAll',
  92. value: 'common.Toolbar_CheckAll',// ╠common.Toolbar_CheckAll⇒全選╣
  93. /**
  94. * 業務提交審核
  95. */
  96. action: function (pargs) {
  97. pargs.jsGrid.find('[type=checkbox]').each(function () {
  98. if (!this.checked) {
  99. $(this).click();
  100. }
  101. });
  102. }
  103. }, {
  104. id: 'CancelAll',
  105. value: 'common.Toolbar_CancelAll',// ╠common.Toolbar_CancelAll⇒全部取消╣
  106. /**
  107. * 主管審核
  108. */
  109. action: function (pargs) {
  110. pargs.jsGrid.find('[type=checkbox]').each(function () {
  111. if (this.checked) {
  112. $(this).click();
  113. }
  114. });
  115. }
  116. }];
  117. return saCusBtns;
  118. },
  119. /**
  120. * 系統權限分頁查詢
  121. */
  122. getPage: function (pargs) {
  123. var sAuthantedtype = $('[name=authantedtype]:checked').val(),
  124. sModuleID = $('#ModuleID').val() || [],
  125. sSubSystem = $('#Subsystem').val(),//子系統
  126. sRuleID = '';
  127. switch (sAuthantedtype) {
  128. case 'Role'://選擇角色查詢
  129. sRuleID = $('#RuleID').val();
  130. break;
  131. case 'Dept': //選擇部門查詢
  132. sRuleID = $('#DepartmentID').val();
  133. break;
  134. case 'Member'://選擇人員查詢
  135. sRuleID = $('#MemberID').val();
  136. break;
  137. }
  138. var oParm = {
  139. Type: sAuthantedtype,
  140. OrgID: parent.OrgID,
  141. RuleID: sRuleID,
  142. ChildSystem: sSubSystem,
  143. ModuleID: sModuleID.join(',')
  144. };
  145. return g_api.ConnectLite(pargs.ProgramId, 'GetAuthorizeBy_', oParm);
  146. },
  147. /**
  148. * 系統權限修改
  149. */
  150. getInsert: function (pargs) {
  151. var data = pargs.Grid.data,
  152. oParm = {},
  153. sAuthantedtype = $('[name=authantedtype]:checked').val(),
  154. sModuleID = $('#ModuleID').val() || [],
  155. sSubSystem = $('#Subsystem').val(),//子系統
  156. sRuleID = '';
  157. switch (sAuthantedtype) {
  158. case 'Role'://選擇角色查詢
  159. sRuleID = $('#RuleID').val();
  160. break;
  161. case 'Dept': //選擇部門查詢
  162. sRuleID = $('#DepartmentID').val();
  163. break;
  164. case 'Member'://選擇人員查詢
  165. sRuleID = $('#MemberID').val();
  166. break;
  167. }
  168. oParm = {
  169. Type: sAuthantedtype,
  170. OrgID: parent.OrgID,
  171. RuleID: sRuleID,
  172. ModuleID: sModuleID.join(','),
  173. ChildSystem: sSubSystem
  174. };
  175. oParm.add = [];
  176. $.each(data, function (i, item) {
  177. if (item.RuleID && item.ProgramID && item.AllowRight) {
  178. var oAddDic = {
  179. OrgID: parent.OrgID,
  180. RuleID: sRuleID,
  181. ProgramID: item.ProgramID,
  182. AllowRight: item.AllowRight,
  183. TopModuleID: sSubSystem,
  184. Memo: item.Memo
  185. };
  186. oAddDic = packParams(oAddDic);
  187. oParm.add.push(oAddDic);
  188. }
  189. });
  190. return g_api.ConnectLite(pargs.ProgramId, 'UpdateAuthorize', oParm,
  191. function (res) {
  192. if (res.RESULT) {
  193. showMsg(i18next.t("message.Modify_Success"));//╠message.Modify_Success⇒修改成功╣
  194. }
  195. else {
  196. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  197. }
  198. }, function () {
  199. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  200. });
  201. },
  202. /**
  203. * 頁面初始化
  204. * @param {Object} pargs CanDo 對象
  205. */
  206. pageInit: function (pargs) {
  207. $.whenArray([
  208. fnSubSystemDrop(),
  209. fnSetModuleDrop(),
  210. fnRuleIDDrop(),
  211. fnSetDepartmentList(),
  212. fnSetUserDrop([{
  213. Select: $('#MemberID'),
  214. ShowId: true
  215. }])
  216. ])
  217. .done(function () {
  218. pargs._reSetQueryPm();
  219. $('[name=authantedtype]:checked').click();
  220. fnSetArgDrop([
  221. {
  222. ArgClassID: '99999',
  223. CallBack: function (data) {
  224. pargs.initGrid(pargs, data);
  225. }
  226. }
  227. ])
  228. });
  229. }
  230. }),
  231. /**
  232. * 設置部門資料
  233. */
  234. fnSetDepartmentList = function () {
  235. $('.boxdept,.boxmember').hide(); //部門,人員
  236. $('[name=authantedtype]').click(function () {
  237. if (this.value == 'Role') {
  238. $('.boxdept,.boxmember').hide(); //部門,人員
  239. $('.boxrule').show(); //角色
  240. }
  241. else if (this.value == 'Dept') {
  242. $('.boxrule,.boxmember').hide(); //角色,人員
  243. $('.boxdept').show(); //部門
  244. }
  245. else {
  246. $('.boxrule,.boxdept').hide(); //角色,部門
  247. $('.boxmember').show(); //人員
  248. }
  249. });
  250. fnSetDeptDrop($('#DepartmentID'));
  251. },
  252. /**
  253. * 設置子系統下拉單
  254. * @return {Object} Ajax 物件
  255. */
  256. fnSubSystemDrop = function () {
  257. return g_api.ConnectLite(canDo.ProgramId, 'GetModulelist', { ParentID: true },
  258. function (res) {
  259. if (res.RESULT) {
  260. var saData = res.DATA.rel;
  261. var sOptionHtml = createOptions(saData, 'ModuleID', 'ModuleName', true);
  262. $('#Subsystem').html(sOptionHtml).find('option').first().remove();
  263. }
  264. });
  265. },
  266. /**
  267. * 設置子系統下拉單
  268. * @return {Object} Ajax 物件
  269. */
  270. fnSetModuleDrop = function () {
  271. return g_api.ConnectLite(canDo.ProgramId, 'GetModulelist', { ParentID: false },
  272. function (res) {
  273. if (res.RESULT) {
  274. var saData = res.DATA.rel;
  275. var sOptionHtml = createOptions(saData, 'ModuleID', 'ModuleName', true);
  276. $('#ModuleID').html(sOptionHtml).select2()[0].remove(0);
  277. }
  278. });
  279. },
  280. /**
  281. * 設置角色名稱下拉單
  282. * @return {Object} Ajax 物件
  283. */
  284. fnRuleIDDrop = function () {
  285. return g_api.ConnectLite(canDo.ProgramId, 'GetRules', {},
  286. function (res) {
  287. if (res.RESULT) {
  288. var saData = res.DATA.rel;
  289. var sOptionHtml = createOptions(saData, 'RuleID', 'RuleName', true);
  290. $('#RuleID').html(sOptionHtml);
  291. }
  292. });
  293. };
  294. };
  295. require(['base', 'select2', 'jsgrid', 'cando'], fnPageInit);