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.

204 lines
8.9 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. fnPageInit = function () {
  4. var calendars = [],
  5. saHolidays = [],
  6. sCurrentYear = moment().format('YYYY'),
  7. canDo = new CanDo({
  8. /**
  9. * 客製化按鈕
  10. * @param {Object} pargs CanDo 對象
  11. * @return {Object} ajax物件
  12. */
  13. cusBtns: function (pargs) {
  14. var saCusBtns = [{
  15. id: 'PreviousYear',
  16. value: 'common.Toolbar_PreviousYear',// ╠common.Toolbar_PreviousYear⇒上一年╣
  17. action: function (pargs) {
  18. $.each(calendars, function (i, calendar) {
  19. calendar.clndr.previousYear();
  20. if (i === 0) {
  21. sCurrentYear = calendar.clndr.month.format('YYYY');
  22. }
  23. });
  24. fnSetBoxClick();
  25. pargs.getOne(pargs);
  26. }
  27. },
  28. {
  29. id: 'NextYear',
  30. value: 'common.Toolbar_NextYear',// ╠common.Toolbar_NextYear⇒下一年╣
  31. action: function (pargs) {
  32. $.each(calendars, function (i, calendar) {
  33. calendar.clndr.nextYear();
  34. if (i === 0) {
  35. sCurrentYear = calendar.clndr.month.format('YYYY');
  36. }
  37. });
  38. fnSetBoxClick();
  39. pargs.getOne(pargs);
  40. }
  41. }];
  42. return saCusBtns;
  43. },
  44. /**
  45. * 假日設定單筆查詢
  46. * @param {Object} pargs cando 對象
  47. * @return {Object} ajax物件
  48. */
  49. getOne: function (pargs) {
  50. return g_api.ConnectLite(pargs.ProgramId, pargs._api.getone,
  51. { Year: sCurrentYear },
  52. function (res) {
  53. if (res.RESULT) {
  54. var oRes = res.DATA.rel;
  55. saHolidays = [];
  56. if (oRes) {
  57. pargs.action = 'upd';
  58. saHolidays = $.parseJSON(oRes.Holidays);
  59. }
  60. else {
  61. pargs.action = 'add';
  62. }
  63. fnSetHolidays();
  64. }
  65. });
  66. },
  67. /**
  68. * 假日設定新增
  69. * @param {Object} pargs cando 對象
  70. * @return {Object} ajax物件
  71. */
  72. getInsert: function (pargs) {
  73. if (saHolidays.length === 0) {
  74. showMsg(i18next.t("message.FirstAddHolidays")); // 請先選擇假日
  75. return false;
  76. }
  77. var data = { Year: sCurrentYear };
  78. data.Holidays = JSON.stringify(saHolidays);
  79. return g_api.ConnectLite(pargs.ProgramId, pargs._api.insert, data,
  80. function (res) {
  81. if (res.RESULT) {
  82. pargs.action = 'upd';
  83. showMsg(i18next.t("message.SetUp_Success"), 'success'); // ╠message.SetUp_Success⇒設置成功╣
  84. }
  85. else {
  86. showMsg(i18next.t("message.SetUp_Failed"), 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  87. }
  88. }, function () {
  89. showMsg(i18next.t("message.SetUp_Failed"), 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  90. });
  91. },
  92. /**
  93. * 假日設定修改
  94. * @param {Object} pargs cando 對象
  95. * @return {Object} ajax物件
  96. */
  97. getUpdate: function (pargs) {
  98. if (saHolidays.length === 0) {
  99. showMsg(i18next.t("message.FirstAddHolidays")); // 請先選擇假日
  100. return false;
  101. }
  102. var data = { Year: sCurrentYear };
  103. data.Holidays = JSON.stringify(saHolidays);
  104. return g_api.ConnectLite(pargs.ProgramId, pargs._api.update, data,
  105. function (res) {
  106. if (res.RESULT) {
  107. showMsg(i18next.t("message.SetUp_Success"), 'success'); // ╠message.SetUp_Success⇒設置成功╣
  108. }
  109. else {
  110. showMsg(i18next.t("message.SetUp_Failed"), 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  111. }
  112. }, function () {
  113. showMsg(i18next.t("message.SetUp_Failed"), 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  114. });
  115. },
  116. /**
  117. * 頁面初始化
  118. * @param {Object} pargs CanDo 對象
  119. */
  120. pageInit: function (pargs) {
  121. pargs.getOne(pargs).done(function () {
  122. fnSetBoxClick();
  123. });
  124. $('.cal1').each(function (indx) {
  125. var that = this,
  126. calendar = {},
  127. iMonth = indx + 1;
  128. calendar.clndr = $(that).clndr({
  129. template: $('#clndr_template').html(),
  130. startWithMonth: sCurrentYear + '-' + (iMonth < 10 ? '0' + iMonth : iMonth) + '-01',
  131. events: [],
  132. multiDayEvents: {
  133. singleDay: 'date',
  134. endDate: 'endDate',
  135. startDate: 'startDate'
  136. },
  137. showAdjacentMonths: true,
  138. adjacentDaysChangeMonth: false,
  139. daysOfTheWeek: ['日', '一', '二', '三', '四', '五', '六'],
  140. forceSixRows: true
  141. });
  142. calendars.push(calendar);
  143. });
  144. $('#weekbox :checkbox').click(function () {
  145. var sVal = this.value;
  146. if (this.checked) {
  147. $('.calendar-dow-' + sVal).each(function () {
  148. if (!$(this).hasClass('holiday')) {
  149. $(this).click();
  150. }
  151. });
  152. }
  153. else {
  154. $('.calendar-dow-' + sVal).each(function () {
  155. if ($(this).hasClass('holiday')) {
  156. $(this).click();
  157. }
  158. });
  159. }
  160. });
  161. }
  162. }),
  163. fnCacheHilodays = function () {
  164. saHolidays = [];
  165. $('.holiday').not('.last-month,.next-month').each(function () {
  166. var sDate = $(this).attr('data-value');
  167. saHolidays.push(sDate);
  168. });
  169. },
  170. /**
  171. * 設定日期假日點擊事件
  172. */
  173. fnSetBoxClick = function () {
  174. $('#currentyear').html(sCurrentYear);
  175. $('#weekbox :checkbox').each(function () {
  176. this.checked = false;
  177. });
  178. $('.cal1 td').not('.last-month,.next-month').click(function () {
  179. var that = this;
  180. if ($(that).hasClass('holiday')) {
  181. $(that).removeClass('holiday');
  182. }
  183. else {
  184. $(that).addClass('holiday');
  185. }
  186. fnCacheHilodays();
  187. });
  188. },
  189. /**
  190. * 設定日期假日
  191. */
  192. fnSetHolidays = function () {
  193. $.each(saHolidays, function (i, date) {
  194. $('.calendar-day-' + date).not('.last-month,.next-month').addClass('holiday');
  195. });
  196. };
  197. };
  198. require(['base', 'clndr', 'cando'], fnPageInit, 'clndr');