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.

311 lines
13 KiB

2 years ago
2 years ago
2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. /**
  5. * 當前程式所有ID名稱集合
  6. */
  7. idKeys: ['OrgID', 'MemberID'],
  8. /**
  9. * 當前程式所有參數名稱集合
  10. */
  11. paramKeys: ['MemberID'],
  12. /**
  13. * 客製化驗證規則
  14. * @param {Object} pargs CanDo 對象
  15. */
  16. validRulesCus: function (pargs) {
  17. $.validator.addMethod("compardate", function (value, element, parms) {
  18. if (new Date(value) < new Date($('#ArriveDate').val())) {
  19. return false;
  20. }
  21. return true;
  22. });
  23. $.validator.addMethod("emailequ", function (value) {
  24. var bRetn = true;
  25. if ($.trim(value)) {
  26. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  27. {
  28. _MemberID: pargs.data.MemberID,
  29. Email: value
  30. },
  31. function (res) {
  32. if (res.RESULT && res.DATA.rel > 0) {
  33. bRetn = false;
  34. }
  35. }, null, false);
  36. }
  37. return bRetn;
  38. });
  39. $.validator.addMethod("outlookequ", function (value) {
  40. var bRetn = true;
  41. if ($.trim(value)) {
  42. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  43. {
  44. _MemberID: pargs.data.MemberID,
  45. OutlookAccount: value
  46. },
  47. function (res) {
  48. if (res.RESULT && res.DATA.rel > 0) {
  49. bRetn = false;
  50. }
  51. }, null, false);
  52. }
  53. return bRetn;
  54. });
  55. $.validator.addMethod("memberidrule", function (value) {
  56. var bRetn = true;
  57. if (value) {
  58. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  59. {
  60. MemberID: value
  61. },
  62. function (res) {
  63. if (res.RESULT && res.DATA.rel > 0) {
  64. bRetn = false;
  65. }
  66. }, null, false);
  67. }
  68. return bRetn;
  69. });
  70. },
  71. /**
  72. * 驗證規則
  73. */
  74. validRules: function (pargs) {
  75. return {
  76. onfocusout: false,
  77. rules: {
  78. Email: {
  79. required: true,
  80. email: true,
  81. emailequ: ''
  82. },
  83. OutlookAccount: {
  84. outlookequ: ''
  85. },
  86. EmergencyEMail: { email: true },
  87. MemberID: { memberidrule: pargs.action === 'add' ? true : false }
  88. }, messages: {
  89. Email: {
  90. required: i18next.t("common.Email_required"),// ╠message.Email_required⇒請輸入組織郵箱╣
  91. email: i18next.t("message.IncorrectEmail"),// ╠message.IncorrectEmail⇒郵箱格式不正確╣
  92. emailequ: i18next.t("message.EmailIsExist")// ╠message.EmailIsExist⇒郵箱已存在╣
  93. },
  94. OutlookAccount: {
  95. outlookequ: i18next.t("message.OutlookAccountExist")// ╠message.OutlookAccountExist⇒Outlook帳號已存在╣
  96. },
  97. EmergencyEMail: {
  98. email: i18next.t("message.IncorrectEmail")// ╠message.IncorrectEmail⇒郵箱格式不正確╣
  99. },
  100. MemberID: { memberidrule: i18next.t("message.Data_Repeat") }// ╠message.Data_Repeat⇒此筆資料已建檔╣
  101. }
  102. };
  103. },
  104. /**
  105. * 處理新增資料參數
  106. * @param {Object} pargs CanDo 對象
  107. * @param {Object} data 當前表單資料
  108. */
  109. getInsertParams: function (pargs, data) {
  110. data.NetworkLogin = data.NetworkLogin || false;
  111. data.IsAttendance = data.IsAttendance || false;
  112. data.Password = $.trim(parent.SysSet['DefaultPassword'] || '123456');
  113. data.MemberPic = pargs.data.MemberPic;
  114. data.roles = $('#Roles').val();
  115. if (!data.BirthDate) delete data.BirthDate;
  116. if (!data.ArriveDate) delete data.ArriveDate;
  117. if (!data.LeaveDate) delete data.LeaveDate;
  118. return data;
  119. },
  120. /**
  121. * 處理修改資料參數
  122. * @param {Object} pargs CanDo 對象
  123. * @param {Object} data 當前表單資料
  124. */
  125. getUpdateParams: function (pargs, data) {
  126. data = pargs.options.getInsertParams(pargs, data);
  127. delete data.Password;
  128. return data;
  129. },
  130. /**
  131. * 新增資料
  132. * @param {Object} pargs CanDo 對象
  133. * @param {Object} data 當前新增的資料
  134. * @param {String} flag 新增 or 儲存后新增
  135. */
  136. //getInsertBack: function (pargs, data, flag) {
  137. // var fnCallBack = function () {
  138. // if (flag === 'add') {
  139. // showMsgAndGo(i18next.t("message.Insert_Success"), pargs.QueryPrgId); // ╠message.Insert_Success⇒新增成功╣
  140. // }
  141. // else {
  142. // showMsgAndGo(i18next.t("message.Insert_Success"), pargs.ProgramId, '?Action=Add'); // ╠message.Insert_Success⇒新增成功╣
  143. // }
  144. // };
  145. // layer.confirm(i18next.t('message.DefaultPassword').replace('{initpswd}', parent.SysSet['DefaultPassword'] || 123456), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  146. // if (parent.SysSet.IsOpenMail == 'Y') {
  147. // fnSendEmailToMember(flag);
  148. // }
  149. // else {
  150. // layer.alert(i18next.t('message.NotOpenMail'), { icon: 0 }, function () {// ╠message.NotOpenMail⇒系統沒有開放郵件發送功能,請聯絡管理員!╣
  151. // fnCallBack();
  152. // });
  153. // }
  154. // layer.close(index);
  155. // }, function () {
  156. // fnCallBack();
  157. // });
  158. //},
  159. /**
  160. * 頁面初始化
  161. * @param {Object} pargs CanDo 對象
  162. */
  163. pageInit: function (pargs) {
  164. var postArray = [];
  165. postArray.push(fnSetJobtitleDrop(), fnSetRolesDrop(), fnSetDeptDrop($('#DepartmentID')),
  166. fnSetUserDrop([
  167. {
  168. Select: $('#ImmediateSupervisor'),
  169. ShowId: true,
  170. Select2: true,
  171. Action: pargs.action
  172. }
  173. ]),
  174. fnSetArgDrop([
  175. {
  176. ArgClassID: 'JobClass',
  177. Select: $('#JobClass'),
  178. ShowId: true
  179. },
  180. {
  181. ArgClassID: 'LanCountry',
  182. Select: $('#Country'),
  183. ShowId: true
  184. }
  185. ]));
  186. if (pargs.action === 'upd') {
  187. $('#MemberID').prop('disabled', true);
  188. postArray.push(pargs._getOne());
  189. }
  190. else {
  191. pargs.data.MemberPic = guid();
  192. fnUpload();
  193. }
  194. $.whenArray(postArray).done(function (res) {
  195. if (pargs.action === 'upd' && res[0].RESULT) {
  196. pargs._setFormVal(pargs.data);
  197. pargs.data.MemberPic = $.trim(pargs.data.MemberPic) === '' ? guid() : pargs.data.MemberPic;
  198. pargs.data.Roles = (pargs.data.RuleIDs || '').split(',').clear();
  199. $('#Roles').val(pargs.data.Roles).trigger('change');
  200. $('#CalColor').spectrum("set", pargs.data.CalColor);
  201. pargs._getPageVal();//緩存頁面值,用於清除
  202. fnGetUploadFiles(pargs.data.MemberPic, fnUpload);
  203. }
  204. });
  205. $('#LeaveDate').on('blur', function () {
  206. if (this.value != '') {
  207. $("[name='Effective'][value='N']").click();
  208. }
  209. else {
  210. $("[name='Effective'][value='Y']").click();
  211. }
  212. });
  213. $('#IsAttendance').on('click', function () {
  214. if (this.checked) {
  215. $(".CardId").show();
  216. $("#CardId").attr('required', true);
  217. }
  218. else {
  219. $(".CardId").hide();
  220. $("#CardId").removeAttr('required');
  221. }
  222. });
  223. }
  224. }),
  225. /**
  226. * 寄送初始密碼給新增人員
  227. * @param {String} flag 新增 or 儲存后新增
  228. */
  229. fnSendEmailToMember = function () {
  230. g_api.ConnectLite(canDo._service.auth, 'SendPswToNewMember', {
  231. UserID: $('#MemberID').val(),
  232. OrgID: parent.OrgID
  233. }, function (res) {
  234. if (res.RESULT) {
  235. if (res.DATA.rel) {
  236. if (flag == 'add') {
  237. showMsgAndGo(i18next.t("message.SendEmail_Success"), canDo.QueryPrgId); // ╠message.Save_Success⇒新增成功╣
  238. }
  239. else {
  240. showMsgAndGo(i18next.t("message.SendEmail_Success"), canDo.ProgramId); // ╠message.Save_Success⇒新增成功╣
  241. }
  242. }
  243. else {
  244. if (flag == 'add') {
  245. showMsgAndGo(i18next.t("message.SendEmail_Failed"), canDo.QueryPrgId); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  246. }
  247. else {
  248. showMsgAndGo(i18next.t("message.SendEmail_Failed"), canDo.ProgramId); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  249. }
  250. }
  251. }
  252. else {
  253. if (flag == 'add') {
  254. showMsgAndGo(i18next.t("message.SendEmail_Failed"), canDo.QueryPrgId); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  255. }
  256. else {
  257. showMsgAndGo(i18next.t("message.SendEmail_Failed"), canDo.ProgramId); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  258. }
  259. }
  260. });
  261. },
  262. /**
  263. * 設定幣別下拉選單
  264. * @return {Object} Ajax 物件
  265. */
  266. fnSetJobtitleDrop = function () {
  267. return g_api.ConnectLite(canDo.ProgramId, 'GetJobTitleDrop', { Effective: 'Y' },
  268. function (res) {
  269. if (res.RESULT) {
  270. var saList = res.DATA.rel;
  271. $('#JobTitle').html(createOptions(saList, 'JobtitleID', 'JobtitleName', true));
  272. }
  273. });
  274. },
  275. /**
  276. * 設定角色下拉選單
  277. * @return {Object} Ajax 物件
  278. */
  279. fnSetRolesDrop = function () {
  280. return g_api.ConnectLite(canDo.ProgramId, 'GetRolesDrop', { Effective: 'Y' },
  281. function (res) {
  282. if (res.RESULT) {
  283. var saList = res.DATA.rel;
  284. $('#Roles').html(createOptions(saList, 'RuleID', 'RuleName')).select2();
  285. }
  286. });
  287. },
  288. /**
  289. * 上傳附件
  290. * @param {Array} files 上傳的文件
  291. */
  292. fnUpload = function (files) {
  293. var option = {};
  294. option.input = $('#fileInput');
  295. option.limit = 1;
  296. //option.changeInput = '<div class="jFiler-input-dragDrop"><img id="ImgMemberPic" width="150" height="150" src="../../images/noImage.jpg"></div>';
  297. option.extensions = ['jpg', 'jpeg', 'png', 'bmp', 'gif', 'png'];
  298. option.theme = 'dragdropbox';
  299. option.folder = 'Members';
  300. option.type = 'one';
  301. option.parentid = canDo.data.MemberPic;
  302. if (files) {
  303. option.files = files;
  304. }
  305. fnUploadRegister(option);
  306. };
  307. };
  308. require(['base', 'select2', 'jsgrid', 'spectrum', 'filer', 'cando'], fnPageInit);