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.

232 lines
9.0 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. /**
  5. * 當前程式所有ID名稱集合
  6. */
  7. idKeys: ['OrgID', 'EventID'],
  8. /**
  9. * 當前程式所有參數名稱集合
  10. */
  11. paramKeys: ['EventID'],
  12. /**
  13. * 須初始化的UEEditer 的物件ID集合
  14. */
  15. ueEditorIds: ['TaskDescription', 'TaskReward'],
  16. /**
  17. * 客製化驗證規則
  18. * @param {Object} pargs CanDo 對象
  19. */
  20. validRulesCus: function (pargs) {
  21. $.validator.addMethod("compardate", function (value, element, parms) {
  22. if (new Date(value) < new Date($('#ArriveDate').val())) {
  23. return false;
  24. }
  25. return true;
  26. });
  27. $.validator.addMethod("emailequ", function (value) {
  28. var bRetn = true;
  29. if ($.trim(value)) {
  30. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  31. {
  32. _MemberID: pargs.data.MemberID,
  33. Email: value
  34. },
  35. function (res) {
  36. if (res.RESULT && res.DATA.rel > 0) {
  37. bRetn = false;
  38. }
  39. }, null, false);
  40. }
  41. return bRetn;
  42. });
  43. $.validator.addMethod("outlookequ", function (value) {
  44. var bRetn = true;
  45. if ($.trim(value)) {
  46. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  47. {
  48. _MemberID: pargs.data.MemberID,
  49. OutlookAccount: value
  50. },
  51. function (res) {
  52. if (res.RESULT && res.DATA.rel > 0) {
  53. bRetn = false;
  54. }
  55. }, null, false);
  56. }
  57. return bRetn;
  58. });
  59. $.validator.addMethod("memberidrule", function (value) {
  60. var bRetn = true;
  61. if (value) {
  62. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  63. {
  64. MemberID: value
  65. },
  66. function (res) {
  67. if (res.RESULT && res.DATA.rel > 0) {
  68. bRetn = false;
  69. }
  70. }, null, false);
  71. }
  72. return bRetn;
  73. });
  74. },
  75. /**
  76. * 驗證規則
  77. */
  78. validRules: function (pargs) {
  79. return {
  80. onfocusout: false,
  81. rules: {
  82. Email: {
  83. required: true,
  84. email: true,
  85. emailequ: ''
  86. },
  87. OutlookAccount: {
  88. outlookequ: ''
  89. },
  90. EmergencyEMail: { email: true },
  91. MemberID: { memberidrule: pargs.action === 'add' ? true : false }
  92. }, messages: {
  93. Email: {
  94. required: i18next.t("common.Email_required"),// ╠message.Email_required⇒請輸入組織郵箱╣
  95. email: i18next.t("message.IncorrectEmail"),// ╠message.IncorrectEmail⇒郵箱格式不正確╣
  96. emailequ: i18next.t("message.EmailIsExist")// ╠message.EmailIsExist⇒郵箱已存在╣
  97. },
  98. OutlookAccount: {
  99. outlookequ: i18next.t("message.OutlookAccountExist")// ╠message.OutlookAccountExist⇒Outlook帳號已存在╣
  100. },
  101. EmergencyEMail: {
  102. email: i18next.t("message.IncorrectEmail")// ╠message.IncorrectEmail⇒郵箱格式不正確╣
  103. },
  104. MemberID: { memberidrule: i18next.t("message.Data_Repeat") }// ╠message.Data_Repeat⇒此筆資料已建檔╣
  105. }
  106. };
  107. },
  108. /**
  109. * 處理新增資料參數
  110. * @param {Object} pargs CanDo 對象
  111. * @param {Object} data 當前表單資料
  112. */
  113. getInsertParams: function (pargs, data) {
  114. data.EventNo = '';
  115. data.SourceFrom = 'Task_Qry';
  116. data.Params = '?Action=Upd&EventID=' + pargs.data.EventID;
  117. if (!data.AlertTime) delete data.AlertTime;
  118. if (!data.StartDate) delete data.StartDate;
  119. if (!data.EndDate) delete data.EndDate;
  120. return data;
  121. },
  122. /**
  123. * 處理修改資料參數
  124. * @param {Object} pargs CanDo 對象
  125. * @param {Object} data 當前表單資料
  126. */
  127. getUpdateParams: function (pargs, data) {
  128. data = pargs.options.getInsertParams(pargs, data);
  129. var sTaskReward = pargs.UE_Editor.TaskReward.getPlainTxt();
  130. if ($.trim(sTaskReward)) {
  131. data.ReplyStatus = $('#Status option:checked').text();
  132. data.ReplyContent = sTaskReward;
  133. }
  134. delete data.SourceFrom;
  135. delete data.Params;
  136. return data;
  137. },
  138. /**
  139. * 頁面初始化
  140. * @param {Object} pargs CanDo 對象
  141. */
  142. pageInit: function (pargs) {
  143. var postArray = [];
  144. if (pargs.action === 'upd') {
  145. postArray.push(pargs._getOne());
  146. }
  147. else {
  148. $('#StartDate').val(newDate());
  149. $('#EndDate').val(newDate(new Date().dateAdd('h', 1)));
  150. pargs.data.EventID = guid();
  151. pargs.UE_Editor.TaskReward.ready(function () {
  152. pargs.UE_Editor.TaskReward.disable();
  153. });
  154. $('#CreateUser').text(parent.UserInfo.MemberName);
  155. fnUpload();
  156. }
  157. postArray.push(fnSetUserDrop([{
  158. Select: $('#Owner'),
  159. Action: pargs.action,
  160. Select2: true,
  161. ShowId: true
  162. }]));
  163. //加載報關類別,加載報價頁簽,加載運輸方式, 加載機場, 加載貨棧場, 加載倉庫
  164. $.whenArray(postArray).done(function (res) {
  165. if (pargs.action === 'upd' && res[0].RESULT) {
  166. var saTaskReply = res[0].DATA.taskreply;
  167. $('#CreateUser').text(pargs.data.ExFeild1);
  168. pargs._setFormVal(pargs.data);
  169. fnGetUploadFiles(pargs.data.EventID, fnUpload);
  170. if (pargs.data.EventNo) {
  171. $('#Status,#StartDate,#EventName,#AlertTime').prop('disabled', true);
  172. }
  173. fnSetUEditor();
  174. $.each(saTaskReply, function (indx, task) {
  175. task.RowIndex = indx + 1;
  176. task.ReplyDate = newDate(task.ReplyDate);
  177. });
  178. var sHtml = $("#Task_temp").render({ List: saTaskReply });
  179. $('#ReplyData').html(sHtml);
  180. }
  181. });
  182. $('#Status').change(function () {
  183. var sVal = this.value;
  184. if (sVal == 'D' || sVal == 'O') {
  185. $('#Progress').val('100');
  186. }
  187. else {
  188. $('#Progress').val(oCurData.PreProgress);
  189. }
  190. });
  191. }
  192. }),
  193. /**
  194. * 設置富文本框
  195. */
  196. fnSetUEditor = function () {
  197. //判斷當前登入者是否為超級權限決定是否禁用富文本框
  198. if (parent.UserInfo.roles.indexOf(parent.SysSet.Supervisor) === -1) {
  199. pargs.UE_Editor.UE_TaskDescription.ready(function () {
  200. if (canDo.data.CreatUser !== parent.UserID) {
  201. pargs.UE_Editor.UE_TaskDescription.disable();
  202. }
  203. });
  204. pargs.UE_Editor.TaskReward.ready(function () {
  205. if (canDo.data.CreatUser !== parent.UserID && canDo.data.Owner !== parent.UserID) {
  206. pargs.UE_Editor.TaskReward.disable();
  207. }
  208. });
  209. }
  210. },
  211. /**
  212. * 上傳附件
  213. * @param {Array} files 上傳的文件
  214. */
  215. fnUpload = function (files) {
  216. var option = {};
  217. option.input = $('#fileInput');
  218. option.theme = 'dragdropbox';
  219. option.folder = 'Task';
  220. option.type = 'list';
  221. option.parentid = canDo.data.EventID;
  222. if (files) {
  223. option.files = files;
  224. }
  225. fnUploadRegister(option);
  226. };
  227. };
  228. require(['base', 'select2', 'timepicker', 'filer', 'cando'], fnPageInit, 'timepicker');