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.

3562 lines
200 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sQueryPrgId = getQueryPrgId(),
  4. sAction = getUrlParam('Action') || 'Add',
  5. sDataId = getUrlParam('Guid'),
  6. sFlag = getUrlParam('Flag'),
  7. sGoTab = getUrlParam('GoTab'),
  8. sBillNOGO = getUrlParam('BillNO'),
  9. sAppointNO = getUrlParam('AppointNO'),
  10. sCheckId = sDataId,
  11. fnPageInit = function () {
  12. var FeeItemCurrency = "TE,TG".indexOf(parent.UserInfo.OrgID) > -1 ? 'NTD' : 'RMB';
  13. var oGrid = null,
  14. oForm = $('#form_main'),
  15. oValidator = null,
  16. sServiceCode = '',
  17. sDeptCode = '',
  18. sCustomersOptionsHtml = '',
  19. sCustomersNotAuditOptionsHtml = '',
  20. sCurrencyOptionsHtml = '',
  21. sAccountingCurrencyOptionsHtml = '',
  22. oAddItem = {},
  23. oPrintMenu = {},
  24. oCurData = {},
  25. saGridData = [],
  26. saCustomers = [],
  27. saCurrency = [],
  28. saAccountingCurrency = [],
  29. saFeeClass = [],
  30. nowResponsiblePerson = '',
  31. /**
  32. * 獲取資料
  33. * @param
  34. * @return
  35. * 起始作者John
  36. * 起始日期2017/01/05
  37. * 最新修改人John
  38. * 最新修日期2017/01/05
  39. */
  40. fnGet = function () {
  41. if (sDataId) {
  42. return CallAjax(ComFn.W_Com, ComFn.GetOne, {
  43. Type: '',
  44. Params: {
  45. otherexhibitiontg: {
  46. Guid: sDataId
  47. }
  48. }
  49. }, function (res) {
  50. var oRes = $.parseJSON(res.d);
  51. $('#VoidReason').text(oRes.VoidReason);
  52. if (oRes.VoidReason) { $('.voidreason').show(); } else { $('.voidreason').hide(); }
  53. if (oRes.IsVoid === 'Y') {
  54. $('#Toolbar_Void').attr({ 'id': 'Toolbar_OpenVoid', 'data-i18n': 'common.Toolbar_OpenVoid' });
  55. }
  56. else {
  57. $('#Toolbar_OpenVoid').attr({ 'id': 'Toolbar_Void', 'data-i18n': 'common.Toolbar_Void' });
  58. }
  59. transLang($('#Toolbar'));
  60. });
  61. }
  62. else {
  63. oCurData.Quote = { guid: guid(), KeyName: 'Quote', AuditVal: '0', FeeItems: [] };
  64. if (sAppointNO) {
  65. oCurData.Quote.FeeItems = [{
  66. guid: guid(),
  67. FinancialCode: "TEC06",
  68. FinancialCostStatement: "堆高機",
  69. FinancialCurrency: "NTD",
  70. FinancialUnitPrice: 876.19,
  71. FinancialNumber: "1",
  72. FinancialUnit: "SHPT",
  73. FinancialAmount: 876.19,
  74. FinancialExchangeRate: "1",
  75. FinancialTWAmount: 876.19,
  76. FinancialTaxRate: "0.05",
  77. FinancialTax: 43.81,
  78. Memo: "",
  79. CreateUser: "peter.yang",
  80. CreateDate: "2018/08/14 16:39:14"
  81. }];
  82. }
  83. oCurData.EstimatedCost = { guid: guid(), KeyName: 'EstimatedCost', AuditVal: '0', FeeItems: [] };
  84. oCurData.ActualCost = { guid: guid(), KeyName: 'ActualCost', AuditVal: '0', FeeItems: [] };
  85. oCurData.Bills = [];
  86. $('#AgentContactor').html(createOptions([]));
  87. fnSetPermissions();
  88. return $.Deferred().resolve().promise();
  89. }
  90. },
  91. /**
  92. * 取得帳單log資料
  93. * @return {Object}
  94. */
  95. fnGetBillLogData = function (Bill) {
  96. var LogData = {};
  97. LogData.OrgID = parent.OrgID;
  98. LogData.BillNO = Bill.BillNO;
  99. LogData.ExhibitioName = oCurData.ImportBillEName; //ExhibitioName
  100. LogData.PayerName = '';
  101. if (Bill.Payer) {
  102. var PayerData = Enumerable.From(saCustomers).Where(function (e) { return e.id === Bill.Payer; }).First();
  103. LogData.PayerName = PayerData.text;
  104. }
  105. LogData.ResponsiblePersonName = oCurData.ResponsiblePerson;
  106. LogData.Currency = Bill.Currency;
  107. LogData.ExchangeRate = Bill.ExchangeRate;
  108. LogData.Advance = Bill.Advance;
  109. LogData.AmountSum = Bill.AmountSum;
  110. LogData.TaxSum = Bill.TaxSum;
  111. LogData.AmountTaxSum = Bill.AmountTaxSum;
  112. LogData.TotalReceivable = Bill.TotalReceivable;
  113. LogData.OpmBillCreateUserName = oCurData.CreateUser;
  114. LogData.ModifyUser = parent.UserID;
  115. return LogData;
  116. },
  117. /**
  118. * 新增或修改完之后重新查询资料
  119. * @param
  120. * @return
  121. * 起始作者John
  122. * 起始日期2017/01/05
  123. * 最新修改人John
  124. * 最新修日期2017/01/05
  125. */
  126. fnReSet = function () {
  127. fnGet().done(function (res) {
  128. var oRes = $.parseJSON(res.d);
  129. $('#VoidReason').text(oRes.VoidReason);
  130. if (oRes.VoidReason) { $('.voidreason').show(); } else { $('.voidreason').hide(); }
  131. getPageVal(); //緩存頁面值,用於清除
  132. });
  133. },
  134. /**
  135. * 新增資料
  136. * @param flag{String} 新增或儲存後新增
  137. * @return
  138. * 起始作者John
  139. * 起始日期2016/05/21
  140. * 最新修改人John
  141. * 最新修日期2016/11/03
  142. */
  143. fnAdd = function (flag) {
  144. var data = getFormSerialize(oForm);
  145. data = packParams(data);
  146. data.OrgID = parent.OrgID;
  147. data.Weight = data.Weight === '' ? 0 : data.Weight;
  148. data.IsVoid = 'N';
  149. data.DepartmentID = sDeptCode;
  150. data.Quote = oCurData.Quote || {};
  151. data.Quote.AuditVal = oCurData.Quote.AuditVal || '0';
  152. data.Quote.FeeItems = oCurData.Quote.FeeItems || [];
  153. data.EstimatedCost = oCurData.EstimatedCost || {};
  154. data.EstimatedCost.AuditVal = oCurData.EstimatedCost.AuditVal || '0';
  155. data.EstimatedCost.FeeItems = oCurData.EstimatedCost.FeeItems || [];
  156. data.ActualCost = oCurData.ActualCost || {};
  157. data.ActualCost.AuditVal = oCurData.ActualCost.AuditVal || '0';
  158. data.ActualCost.FeeItems = oCurData.ActualCost.FeeItems || [];
  159. data.Bills = oCurData.Bills || [];
  160. data.Quote = JSON.stringify(data.Quote);
  161. data.EstimatedCost = JSON.stringify(data.EstimatedCost);
  162. data.ActualCost = JSON.stringify(data.ActualCost);
  163. data.Bills = JSON.stringify(data.Bills);
  164. data.Exhibitors = JSON.stringify(saGridData);
  165. if (data.AgentContactor) {
  166. data.AgentContactorName = $('#AgentContactor option:selected').text();
  167. }
  168. else {
  169. data.AgentContactorName = '';
  170. }
  171. if (!data.ArrivalTime) delete data.ArrivalTime;
  172. if (!data.FreePeriod) delete data.FreePeriod;
  173. if (!data.ApproachTime) delete data.ApproachTime;
  174. if (!data.ExitTime) delete data.ExitTime;
  175. if (!data.ExhibitionDateStart) delete data.ExhibitionDateStart;
  176. if (!data.ExhibitionDateEnd) delete data.ExhibitionDateEnd;
  177. data.Guid = sDataId = guid();
  178. CallAjax(ComFn.W_Com, ComFn.GetAdd, {
  179. Params: { otherexhibitiontg: data }
  180. }, function (res) {
  181. if (res.d > 0) {
  182. bRequestStorage = false;
  183. if (sAppointNO) {
  184. fnUpdAppointTag(sDataId);
  185. }
  186. if (flag === 'add') {
  187. showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Upd&Guid=' + sDataId); // ╠message.Save_Success⇒新增成功╣
  188. }
  189. else {
  190. showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Add'); // ╠message.Save_Success⇒新增成功╣
  191. }
  192. }
  193. else {
  194. showMsg(i18next.t("message.Save_Failed"), 'error'); // ╠message.Save_Failed⇒新增失敗╣
  195. }
  196. });
  197. },
  198. /**
  199. * 修改資料
  200. * @param
  201. * @return
  202. * 起始作者John
  203. * 起始日期2016/05/21
  204. * 最新修改人John
  205. * 最新修日期2016/11/03
  206. */
  207. fnUpd = function () {
  208. var data = getFormSerialize(oForm);
  209. data = packParams(data, 'upd');
  210. data.Weight = data.Weight === '' ? 0 : data.Weight;
  211. data.IsVoid = oCurData.IsVoid;
  212. data.Exhibitors = JSON.stringify(saGridData);
  213. data.Quote = oCurData.Quote || {};
  214. data.Quote.AuditVal = oCurData.Quote.AuditVal || '0';
  215. data.Quote.FeeItems = oCurData.Quote.FeeItems || [];
  216. data.EstimatedCost = oCurData.EstimatedCost || {};
  217. data.EstimatedCost.AuditVal = oCurData.EstimatedCost.AuditVal || '0';
  218. data.EstimatedCost.FeeItems = oCurData.EstimatedCost.FeeItems || [];
  219. data.ActualCost = oCurData.ActualCost || {};
  220. data.ActualCost.AuditVal = oCurData.ActualCost.AuditVal || '0';
  221. data.ActualCost.FeeItems = oCurData.ActualCost.FeeItems || [];
  222. data.Bills = oCurData.Bills || [];
  223. data.Quote = JSON.stringify(data.Quote);
  224. data.EstimatedCost = JSON.stringify(data.EstimatedCost);
  225. data.ActualCost = JSON.stringify(data.ActualCost);
  226. data.Bills = JSON.stringify(data.Bills);
  227. if (data.AgentContactor) {
  228. data.AgentContactorName = $('#AgentContactor option:selected').text();
  229. }
  230. else {
  231. data.AgentContactorName = '';
  232. }
  233. if (data.ExhibitionNO) {
  234. data.ImportBillName = $('#ExhibitionNO option:selected').text();
  235. }
  236. else {
  237. data.ImportBillName = '';
  238. }
  239. if (!data.ArrivalTime) delete data.ArrivalTime;
  240. if (!data.FreePeriod) delete data.FreePeriod;
  241. if (!data.ApproachTime) delete data.ApproachTime;
  242. if (!data.ExitTime) delete data.ExitTime;
  243. if (!data.ExhibitionDateStart) delete data.ExhibitionDateStart;
  244. if (!data.ExhibitionDateEnd) delete data.ExhibitionDateEnd;
  245. delete data.Guid;
  246. if (!data.ArrivalTime) delete data.ArrivalTime;
  247. if (!data.FreePeriod) delete data.FreePeriod;
  248. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  249. Params: {
  250. otherexhibitiontg: {
  251. values: data,
  252. keys: { Guid: sDataId }
  253. }
  254. }
  255. }, function (res) {
  256. if (res.d > 0) {
  257. bRequestStorage = false;
  258. showMsg(i18next.t("message.Modify_Success"), 'success'); //╠message.Modify_Success⇒修改成功╣
  259. if (window.bLeavePage) {
  260. setTimeout(function () {
  261. pageLeave();
  262. }, 1000);
  263. }
  264. fnUpdateBillInfo(sProgramId, sDataId);
  265. oCurData.ResponsiblePerson = data.ResponsiblePerson;
  266. }
  267. else {
  268. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  269. nowResponsiblePerson = oCurData.ResponsiblePerson;
  270. }
  271. }, function () {
  272. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  273. nowResponsiblePerson = oCurData.ResponsiblePerson;
  274. });
  275. },
  276. /**
  277. * 資料刪除
  278. * @param
  279. * @return
  280. * 起始作者John
  281. * 起始日期2016/05/21
  282. * 最新修改人John
  283. * 最新修日期2016/11/03
  284. */
  285. fnDel = function () {
  286. CallAjax(ComFn.W_Com, ComFn.GetDel, {
  287. Params: {
  288. otherexhibitiontg: {
  289. Guid: sDataId
  290. }
  291. }
  292. }, function (res) {
  293. if (res.d > 0) {
  294. showMsgAndGo(i18next.t("message.Delete_Success"), sQueryPrgId); // ╠message.Delete_Success⇒刪除成功╣
  295. }
  296. else {
  297. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  298. }
  299. }, function () {
  300. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  301. });
  302. },
  303. /**
  304. * 資料作廢
  305. * @param
  306. * @return
  307. * 起始作者John
  308. * 起始日期2016/05/21
  309. * 最新修改人John
  310. * 最新修日期2016/11/03
  311. */
  312. fnVoid = function () {
  313. layer.open({
  314. type: 1,
  315. title: i18next.t('common.Toolbar_Void'),// ╠common.Toolbar_Void⇒作廢╣
  316. shade: 0.75,
  317. maxmin: true, //开启最大化最小化按钮
  318. area: ['500px', '250px'],
  319. content: '<div class="pop-box">\
  320. <textarea name="VoidContent" id="VoidContent" style="min-width:300px;" class="form-control" rows="5" cols="20"></textarea>\
  321. </div>',
  322. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  323. success: function (layero, index) {
  324. },
  325. yes: function (index, layero) {
  326. var data = {
  327. IsVoid: 'Y',
  328. VoidReason: $('#VoidContent').val()
  329. };
  330. if (!$('#VoidContent').val()) {
  331. showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
  332. return false;
  333. }
  334. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  335. Params: {
  336. otherexhibitiontg: {
  337. values: data,
  338. keys: { Guid: sDataId }
  339. }
  340. }
  341. }, function (res) {
  342. if (res.d > 0) {
  343. showMsg(i18next.t("message.Void_Success"), 'success'); // ╠message.Void_Success⇒作廢成功╣
  344. fnReSet();
  345. }
  346. else {
  347. showMsg(i18next.t('message.Void_Failed'), 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  348. }
  349. });
  350. layer.close(index);
  351. }
  352. });
  353. },
  354. /**
  355. * 資料作廢
  356. * @param
  357. * @return
  358. * 起始作者John
  359. * 起始日期2016/05/21
  360. * 最新修改人John
  361. * 最新修日期2016/11/03
  362. */
  363. fnOpenVoid = function () {
  364. var data = {
  365. IsVoid: 'N',
  366. VoidReason: ''
  367. };
  368. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  369. Params: {
  370. otherexhibitiontg: {
  371. values: data,
  372. keys: { Guid: sDataId }
  373. }
  374. }
  375. }, function (res) {
  376. if (res.d > 0) {
  377. showMsg(i18next.t("message.OpenVoid_Success"), 'success'); // ╠message.OpenVoid_Success⇒啟用成功╣
  378. fnReSet();
  379. }
  380. else {
  381. showMsg(i18next.t("message.OpenVoid_Failed"), 'error'); // ╠message.OpenVoid_Failed⇒啟用失敗╣
  382. }
  383. }, function () {
  384. showMsg(i18next.t("message.OpenVoid_Failed"), 'error'); // ╠message.OpenVoid_Failed⇒啟用失敗╣
  385. });
  386. },
  387. /**
  388. * 設定客戶下拉選單
  389. * @param
  390. * @return
  391. * 起始作者John
  392. * 起始日期2016/05/21
  393. * 最新修改人John
  394. * 最新修日期2016/11/03
  395. */
  396. fnSetCustomersDrop = function () {
  397. return g_api.ConnectLite(Service.sys, 'GetCustomerlist', {}, function (res) {
  398. if (res.RESULT) {
  399. saCustomers = res.DATA.rel;
  400. var saContactors = []
  401. if (saCustomers.length > 0) {
  402. sCustomersOptionsHtml = createOptions(saCustomers, 'id', 'text');
  403. $('#Agent').html(sCustomersOptionsHtml).on('change', function () {
  404. var sAgent = this.value;
  405. if (sAgent) {
  406. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === sAgent; }).First();
  407. saContactors = JSON.parse(oCur.Contactors || '[]');
  408. $('#AgentContactor').html(createOptions(saContactors, 'guid', 'FullName')).off('change').on('change', function () {
  409. var sContactor = this.value;
  410. if (sContactor) {
  411. var oContactor = Enumerable.From(saContactors).Where(function (e) { return e.guid === sContactor; }).First();
  412. $('#AgentEamil').val(oContactor.Email);
  413. $('#AgentTelephone').val(oContactor.TEL1);
  414. }
  415. else {
  416. $('#AgentEamil').val('');
  417. $('#AgentTelephone').val('');
  418. }
  419. bRequestStorage = true;
  420. });
  421. }
  422. else {
  423. $('#AgentContactor').html(createOptions([]));
  424. }
  425. });
  426. var saNotAuditCurs = Enumerable.From(saCustomers).Where(function (e) { return e.IsAudit === 'Y'; }).ToArray();
  427. sCustomersNotAuditOptionsHtml = createOptions(saNotAuditCurs, 'id', 'text');
  428. $('#ImportPerson').html(sCustomersNotAuditOptionsHtml);
  429. }
  430. select2Init();
  431. }
  432. });
  433. },
  434. /**
  435. * 取得當年度幣值設定
  436. */
  437. fnGetCurrencyThisYear = function (BillCreateTime) {
  438. return fnGetCurrencyByYear({
  439. Year: BillCreateTime, CallBack: function (data) {
  440. saAccountingCurrency = data;
  441. sAccountingCurrencyOptionsHtml = createOptions(saAccountingCurrency, 'ArgumentID', 'ArgumentValue', false, 'Correlation');
  442. }
  443. });
  444. },
  445. /**------------------------帳單部分---------------------------Start*/
  446. /**
  447. * 添加費用項目
  448. * @paramthat(Object)當前dom對象
  449. * @returndata(Object)當前費用項目
  450. * 起始作者John
  451. * 起始日期2017/01/05
  452. * 最新修改人John
  453. * 最新修日期2017/01/05
  454. */
  455. fnPlusFeeItem = function (that, parentdata, feeinfo, currency) {
  456. var oFinancial = $(that).parents('.financial'),
  457. oTable = oFinancial.find('tbody'),
  458. sId = oTable.attr('data-id'),
  459. sBillNO = oTable.attr('data-billno') || '',
  460. sMainCurrency = oFinancial.find('[data-id="Currency"]').val() || FeeItemCurrency;
  461. oTable.find('tr').not('.fee-add').find('.jsgrid-cancel-edit-button').click();
  462. var fnSum = function () {
  463. var iPrice = oUnitPrice.attr('data-value') || 0,
  464. iNumber = oNumber.val().replaceAll(',', ''),
  465. iExchangeRate = oExchangeRate.val(),
  466. sFinancialCurrency = oCurrency.val(),
  467. iAmount = 0,
  468. bForn = (currency === undefined || currency === 'NTD');
  469. bForn = true;
  470. iPrice = iPrice === '' ? 0 : parseFloat(iPrice);
  471. iExchangeRate = iExchangeRate === '' ? 1 : parseFloat(iExchangeRate);
  472. iNumber = iNumber === '' ? 0 : parseFloat(iNumber);
  473. iAmount = iPrice * iNumber;
  474. oAmount.attr('data-value', iAmount.toFloat(2)).val(fMoney(iAmount, 2));
  475. oTWAmount.attr('data-value', (iAmount * iExchangeRate).toFloat(2)).val(fMoney(iAmount * iExchangeRate, 2));
  476. if (oTaxRate.val()) {
  477. var iTaxRate = oTaxRate.val().toPoint();
  478. oTax.attr('data-value', (iAmount * iTaxRate * (bForn ? iExchangeRate : 1)).toFloat(2)).val(fMoney(iAmount * iTaxRate * (bForn ? iExchangeRate : 1), 2));
  479. }
  480. },
  481. oTR_Old = null,
  482. oTR = $('<tr />', { class: 'jsgrid' }),
  483. oTD = $('<td />', { class: 'wcenter', 'style': 'padding: 2px !important;' }),
  484. oCode = $('<select />', {
  485. class: 'form-control w100p', change: function () {
  486. var sFeeVal = this.value,
  487. sFeeText = $(this).find("option:selected").text();
  488. oCostStatement.val(sFeeText.replace(sFeeVal + '-', '').replace('*', ''));
  489. if ('TE001,TE199,TE299,TG001,TG199,TG299,SG001,SG199,SG299'.indexOf(sFeeVal) > -1) {
  490. oCostStatement.removeAttr('disabled');
  491. }
  492. else {
  493. oCostStatement.prop('disabled', true);
  494. }
  495. }
  496. }),
  497. oCostStatement = $('<input />', { class: 'form-control w100p', 'style': 'width:260px !important;' }),
  498. oMemo = $('<textarea />', { class: 'form-control w100p', rows: '2', cols: '10' }),
  499. oCurrency = $('<select />', {
  500. class: 'form-control w100p', html: sCurrencyOptionsHtml, change: function () {
  501. var sCurrencyId = this.value;
  502. if (sCurrencyId) {
  503. var oCurrency = Enumerable.From(saCurrency).Where(function (e) { return e.id === sCurrencyId; }).First();
  504. oExchangeRate.val(oCurrency.Correlation || '').change();
  505. }
  506. }
  507. }).css('cssText', 'width:80px !important').val(sMainCurrency),
  508. oUnitPrice = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  509. oNumber = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  510. oUnit = $('<input />', { class: 'form-control w100p' }),
  511. oAmount = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' }),
  512. oExchangeRate = $('<input />', { class: 'form-control w100p', value: '1.000', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  513. oTWAmount = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' }),
  514. oTaxRate = $('<input />', { class: 'form-control w100p', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  515. oTax = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' });
  516. let Selector = feeinfo ? 'oBillPayers-' + feeinfo.guid : 'oBillPayers';
  517. var oBillPayers = $('<select />', { class: 'form-control w100p ' + Selector, 'multiple': 'multiple' });
  518. var oConfirm = $('<input />', {
  519. class: 'jsgrid-button jsgrid-update-button', type: 'button', title: i18next.t('common.Confirm'), click: function () {// ╠common.Confirm⇒確認╣
  520. var sError = '';
  521. if (!oCode.val()) {
  522. sError += i18next.t("common.FinancialCode_required") + '<br/>'; // ╠common.FinancialCode_required⇒請選擇費用代號╣
  523. }
  524. if (!oCostStatement.val() && !oMemo.val()) {
  525. sError += i18next.t("common.FinancialCostStatement_required") + '<br/>'; // ╠common.FinancialCostStatement_required⇒請輸入費用說明或備註╣
  526. }
  527. if (!oCurrency.val()) {
  528. sError += i18next.t("common.Currency_required") + '<br/>'; // ╠common.Currency_required⇒請選擇幣別╣
  529. }
  530. if (sError) {
  531. showMsg(sError);
  532. return false;
  533. }
  534. var data = {};
  535. data.FinancialCode = oCode.val();
  536. data.FinancialCostStatement = oCostStatement.val();
  537. data.Memo = oMemo.val();
  538. data.FinancialCurrency = oCurrency.val();
  539. data.FinancialUnitPrice = oUnitPrice.val();
  540. data.FinancialNumber = oNumber.val();
  541. data.FinancialUnit = oUnit.val();
  542. data.FinancialAmount = oAmount.val();
  543. data.FinancialExchangeRate = oExchangeRate.val();
  544. data.FinancialTWAmount = oTWAmount.val();
  545. data.FinancialTaxRate = oTaxRate.val() === '' ? 0 : oTaxRate.val();
  546. data.FinancialTax = oTax.val();
  547. if (sId === 'actualcost-box') {
  548. data.BillNO = oBillPayers.val();
  549. data.BillPayer = oBillPayers.attr('_payer') || '';
  550. }
  551. if (data.FinancialNumber.indexOf('.00') > 0)
  552. data.FinancialNumber = data.FinancialNumber.replace('.00', '');
  553. switch (sId) {
  554. case 'quote-box':
  555. if (feeinfo) {
  556. $.each(parentdata.Quote.FeeItems, function (idx, item) {
  557. if (feeinfo.guid === item.guid) {
  558. data = packParams(data, 'upd');
  559. $.extend(item, item, data);
  560. return false;
  561. }
  562. });
  563. }
  564. else {
  565. data = packParams(data);
  566. data.guid = guid();
  567. parentdata.Quote.FeeItems.push(data);
  568. }
  569. fnBindFeeItem(oTable, parentdata, parentdata.Quote);
  570. break;
  571. case 'estimatedcost-box':
  572. if (feeinfo) {
  573. $.each(parentdata.EstimatedCost.FeeItems, function (idx, item) {
  574. if (feeinfo.guid === item.guid) {
  575. data = packParams(data, 'upd');
  576. $.extend(item, item, data);
  577. return false;
  578. }
  579. });
  580. }
  581. else {
  582. data = packParams(data);
  583. data.guid = guid();
  584. parentdata.EstimatedCost.FeeItems.push(data);
  585. }
  586. fnBindFeeItem(oTable, parentdata, parentdata.EstimatedCost);
  587. break;
  588. case 'bill_fees_' + sBillNO:
  589. $.each(parentdata.Bills, function (idx, bill) {
  590. if (sBillNO === bill.BillNO) {
  591. if (feeinfo) {
  592. $.each(bill.FeeItems, function (idx, item) {
  593. if (feeinfo.guid === item.guid) {
  594. data = packParams(data, 'upd');
  595. $.extend(item, item, data);
  596. return false;
  597. }
  598. });
  599. }
  600. else {
  601. data = packParams(data);
  602. data.guid = guid();
  603. bill.FeeItems.push(data);
  604. }
  605. fnBindFeeItem(oTable, parentdata, bill);
  606. return false;
  607. }
  608. });
  609. break;
  610. case 'actualcost-box':
  611. if (feeinfo) {
  612. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  613. if (feeinfo.guid === item.guid) {
  614. data = packParams(data, 'upd');
  615. $.extend(item, item, data);
  616. return false;
  617. }
  618. });
  619. }
  620. else {
  621. data = packParams(data);
  622. data.guid = guid();
  623. parentdata.ActualCost.FeeItems.push(data);
  624. }
  625. fnBindFeeItem(oTable, parentdata, parentdata.ActualCost);
  626. break;
  627. }
  628. window.bRequestStorage = true;
  629. oTR.remove();
  630. }
  631. }),
  632. oCancel = $('<input />', {
  633. class: 'jsgrid-button jsgrid-cancel-edit-button', type: 'button', title: i18next.t('common.Cancel'), click: function () {// ╠common.Cancel⇒取消╣
  634. if (feeinfo) {
  635. if (feeinfo.BillNO) {
  636. oTR_Old.find('select').val(feeinfo.BillNO);
  637. }
  638. oTR.after(oTR_Old).remove();
  639. oTR_Old = null;
  640. }
  641. else {
  642. oTR.remove();
  643. $(that).prop('disabled', false);
  644. }
  645. }
  646. });
  647. oTR.append(oTD.clone());
  648. oTR.append(oTD.clone().append(oCode));
  649. oTR.append(oTD.clone().append([oCostStatement, oMemo]));
  650. oTR.append(oTD.clone().append(oCurrency));
  651. oTR.append(oTD.clone().append(oUnitPrice));
  652. oTR.append(oTD.clone().append(oNumber));
  653. oTR.append(oTD.clone().append(oUnit));
  654. oTR.append(oTD.clone().append(oAmount));
  655. oTR.append(oTD.clone().append(oExchangeRate));
  656. oTR.append(oTD.clone().append(oTWAmount));
  657. oTR.append(oTD.clone().append(oTaxRate));
  658. oTR.append(oTD.clone().append(oTax));
  659. if (sId === 'actualcost-box') {
  660. var saBillPayers = function () {
  661. var saRetn = [];
  662. $.each(parentdata.Bills, function (idx, bill) {
  663. if (!bill.VoidReason) {
  664. var sPayer = '',
  665. oCur = {};
  666. if (bill.Payer) {
  667. oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === bill.Payer; }).First();
  668. }
  669. saRetn.push({
  670. id: bill.BillNO,
  671. text: oCur.text,
  672. val: bill.BillNO + '-' + (oCur.text || '') + '-' + bill.BillCreateDate
  673. });
  674. }
  675. });
  676. return saRetn;
  677. }();
  678. oTR.append(oTD.clone().append(oBillPayers.html(createOptions(saBillPayers, 'id', 'id', false)).change(function () {
  679. var sBill = this.value;
  680. if (sBill) {
  681. var oBillPayer = Enumerable.From(saBillPayers).Where(function (e) { return e.id === sBill; }).First();
  682. $(this).attr('_payer', oBillPayer.val || '');
  683. }
  684. else {
  685. $(this).attr('_payer', '');
  686. }
  687. })));
  688. }
  689. oTR.append(oTD.clone().css('cssText', 'padding-top:30px !important;').append([oConfirm, oCancel]));
  690. oCode.html(createOptions(saFeeClass, 'id', 'text', true)).val(!feeinfo ? '' : feeinfo.FinancialCode).select2({ width: '160px' });
  691. if (parent.SysSet.TaxRate) {
  692. oTaxRate.val(parent.SysSet.TaxRate);
  693. }
  694. if (feeinfo) {
  695. oCode.val(feeinfo.FinancialCode);
  696. oCostStatement.val(feeinfo.FinancialCostStatement.replace(feeinfo.FinancialCode + '-', ''));
  697. oMemo.val(feeinfo.Memo);
  698. oCurrency.val(feeinfo.FinancialCurrency);
  699. oUnitPrice.val(feeinfo.FinancialUnitPrice);
  700. oNumber.val(feeinfo.FinancialNumber);
  701. oUnit.val(feeinfo.FinancialUnit);
  702. oAmount.val(feeinfo.FinancialAmount);
  703. oExchangeRate.val(feeinfo.FinancialExchangeRate);
  704. oTWAmount.val(feeinfo.FinancialTWAmount);
  705. oTaxRate.val(feeinfo.FinancialTaxRate);
  706. oTax.val(feeinfo.FinancialTax);
  707. if (sId === 'actualcost-box') {
  708. oBillPayers.val(feeinfo.BillNO);
  709. }
  710. oTR_Old = $(that).parents('tr').clone(true);
  711. $(that).parents('tr').after(oTR).remove();
  712. if ('TE001,TE199,TE299,TG001,TG199,TG299,SG001,SG199,SG299'.indexOf(feeinfo.FinancialCode) > -1) {
  713. oCostStatement.prop('disabled', false);
  714. }
  715. else {
  716. oCostStatement.prop('disabled', true);
  717. }
  718. }
  719. else {
  720. oTable.append(oTR.addClass('fee-add'));
  721. $(that).prop('disabled', true);
  722. }
  723. oTR.find('.' + Selector + ' option:first').remove();
  724. moneyInput($('[data-type="int"]'), 2, true);
  725. if (sId === 'actualcost-box') {
  726. let mySelect = new vanillaSelectBox("." + Selector, {
  727. search: true
  728. });
  729. mySelect.multipleSize = 2;
  730. if (feeinfo) {
  731. mySelect.setValue(feeinfo.BillNO);
  732. }
  733. }
  734. },
  735. /**
  736. * 預設預約單資料
  737. */
  738. fnInitAppoint = function () {
  739. g_api.ConnectLite(Service.opm, 'InitAppoint', {
  740. AppointNO: sAppointNO
  741. }, function (res) {
  742. var oRes = res.DATA.rel;
  743. //setFormVal(oForm, oRes.Base);
  744. $('#ExhibitionDateStart').val(newDate(oRes.Base.ExhibitionDateStart, 'date', true));
  745. $('#ExhibitionDateEnd').val(newDate(oRes.Base.ExhibitionDateEnd, 'date', true)); oAddItem.guid = guid();
  746. $('#ExhibitionNO').val(oRes.Base.ExhibitionNO).trigger('change');
  747. $('#ImportBillEName').val(oRes.Base.ImportBillEName);
  748. $('#Hall').val(oRes.Base.Hall);
  749. //$('#MuseumMumber').val(oRes.Base.MuseumMumber);
  750. $.grep(oRes.Customers, function (item) {
  751. saGridData.push({
  752. guid: guid(),
  753. AppointNO: item.AppointNO,
  754. SupplierID: item.guid,
  755. CustomerNO: item.CustomerNO,
  756. UniCode: item.UniCode,
  757. SupplierName: item.CustomerCName,
  758. SupplierEName: item.CustomerEName,
  759. Telephone: item.Telephone,
  760. Email: item.Email,
  761. Contactor: '',
  762. ContactorName: '',
  763. CreateUser: parent.UserID,
  764. CreateDate: new Date().formate("yyyy/MM/dd HH:mm:ss")
  765. });
  766. });
  767. fnGridInit();
  768. oGrid.loadData();
  769. });
  770. },
  771. /**
  772. * 如果有預設預約單資料新增完則回寫該ID到預約單
  773. * @param {String} id 其他ID
  774. */
  775. fnUpdAppointTag = function (id) {
  776. var saUpdPm = [];
  777. $.grep(saGridData, function (item) {
  778. if (item.AppointNO) {
  779. saUpdPm.push({
  780. values: {
  781. OtherId: id,
  782. OtherIdFrom: 'OtherExhibitionTG_Upd'
  783. },
  784. keys: {
  785. AppointNO: item.AppointNO,
  786. OrgID: parent.OrgID
  787. }
  788. });
  789. }
  790. });
  791. CallAjax(ComFn.W_Com, ComFn.GetUpd,
  792. {
  793. Params: {
  794. packingorder: saUpdPm
  795. }
  796. });
  797. },
  798. /**
  799. * 綁定費用項目
  800. * @param {Array} files 上傳的文件
  801. */
  802. fnBindFeeItem = function (dom, parentdata, data, flag) {
  803. $.each(data.FeeItems, function (idx, item) {
  804. item.OrderBy = idx + 1;
  805. item.FinancialUnitPrice = parseFloat((item.FinancialUnitPrice || '0').toString().replaceAll(',', ''));
  806. item.FinancialAmount = parseFloat((item.FinancialAmount || '0').toString().replaceAll(',', ''));
  807. item.FinancialTWAmount = parseFloat((item.FinancialTWAmount || '0').toString().replaceAll(',', ''));
  808. item.FinancialTax = parseFloat((item.FinancialTax || '0').toString().replaceAll(',', ''));
  809. });
  810. data.FeeItems = Enumerable.From(data.FeeItems).OrderBy("x=>x.OrderBy").ToArray();
  811. var sFeeItemsHtml = '',
  812. iSubtotal = 0,
  813. iSubtotal_Tax = 0,
  814. iSubtotal_NoTax = 0,
  815. iTaxtotal = 0,
  816. iTaxSubtotal = 0,
  817. oFinancial = dom.parents('.financial'),
  818. sDomId = dom.attr('data-id'),
  819. bForn = (data.Currency === undefined || data.Currency === 'NTD'),
  820. iOldBoxTotal = parseFloat((oFinancial.find('.boxtotal').val() || '0').replaceAll(',', '')),
  821. oTab = dom.parents('.tab-pane');
  822. $.each(data.FeeItems, function (idx, item) {
  823. sFeeItemsHtml += '<tr>'
  824. + '<td class="wcenter">' + (idx + 1) + '</td>'
  825. + '<td class="wcenter">' + item.FinancialCode + '</td>'
  826. + '<td>' + (!item.FinancialCostStatement ? item.Memo : item.FinancialCostStatement + (!item.Memo ? '' : '(' + item.Memo + ')')) + '</td>'
  827. + '<td class="wcenter">' + item.FinancialCurrency + '</td>'
  828. + '<td class="wright">' + fMoney(item.FinancialUnitPrice, 2) + '</td>'
  829. + '<td class="wcenter">' + item.FinancialNumber + '</td>'
  830. + '<td>' + item.FinancialUnit + '</td>'
  831. + '<td class="wright">' + fMoney(item.FinancialAmount, 2) + '</td>'
  832. + '<td class="wcenter">' + item.FinancialExchangeRate + '</td>'
  833. + '<td class="wright">' + fMoney(item.FinancialTWAmount, 2) + '</td>'
  834. + '<td class="wcenter">' + item.FinancialTaxRate + '</td>'
  835. + '<td class="wright">' + fMoney(item.FinancialTax, 2) + '</td>'
  836. + (data.KeyName === 'ActualCost' ? '<td class="wcenter billpayer w15p " data-billno="' + (item.BillNO || '') + '" data-value="' + item.guid + '"></td>' : '')
  837. + (!flag ? '<td class="wcenter">'
  838. + '<div class="fa-item col-sm-3"><i class="glyphicon glyphicon-pencil icon-p" data-value="' + item.guid + '" title="編輯"></i></div>'
  839. + '<div class="fa-item col-sm-3"><i class="glyphicon glyphicon-trash icon-p" data-value="' + item.guid + '" title="刪除"></i></div>'
  840. + ((data.FeeItems.length !== idx + 1) ? '<div class="fa-item col-sm-3"><i class="glyphicon glyphicon-arrow-down icon-p" data-value="' + item.guid + '" title="下移"></i></div>' : '<div class="fa-item col-sm-3"><i class="icon-p"></i></div>')
  841. + ((idx !== 0) ? '<div class="fa-item col-sm-3"><i class="glyphicon glyphicon-arrow-up icon-p" data-value="' + item.guid + '" title="上移"></i></div>' : '<div class="fa-item col-sm-3"><i class="icon-p"></i></div>')
  842. + '</td>' : '') +
  843. +'</tr>';
  844. if (item.FinancialTaxRate.toString().replace('%', '') !== '0') {
  845. iSubtotal_Tax += parseFloat(item.FinancialTWAmount);
  846. }
  847. else {
  848. iSubtotal_NoTax += parseFloat(item.FinancialTWAmount);
  849. }
  850. });
  851. //計算總計(total)依序:1.參數的幣值 2.抓到財務的Currency設定 3.再來設定台幣。
  852. var CurrencyType = (data.Currency || oFinancial.find('[data-id="Currency"]').val()) || FeeItemCurrency;
  853. dom.html(sFeeItemsHtml);
  854. iSubtotal_Tax = fnRound(iSubtotal_Tax, data.Currency);
  855. iSubtotal_NoTax = fnRound(iSubtotal_NoTax, data.Currency);
  856. iSubtotal = fnRound(iSubtotal_Tax + iSubtotal_NoTax, CurrencyType);
  857. var iTaxRate = parent.SysSet.TaxRate.toPoint();
  858. iTaxtotal = fnRound(iSubtotal_Tax * (iTaxRate === 0 ? 0.05 : iTaxRate), CurrencyType);
  859. iTaxSubtotal = iSubtotal + iTaxtotal;
  860. oFinancial.find('.subtotal').val(fMoney(iSubtotal, 2, CurrencyType));
  861. oFinancial.find('.taxtotal').val(fMoney(iTaxtotal, 2, CurrencyType));
  862. oFinancial.find('.boxtotal').val(fMoney(iTaxSubtotal, 2, CurrencyType));
  863. data.AmountSum = iSubtotal;
  864. data.TaxSum = iTaxtotal;
  865. data.AmountTaxSum = iTaxSubtotal;
  866. switch (data.KeyName) {
  867. case 'ActualCost':
  868. if (oTab[0].id === 'tab4') {
  869. $('#tab4 .topshowsum').show();
  870. $('#tab4 .actualsum').val(fMoney(iSubtotal, 2, data.Currency));
  871. if (parentdata.ActualCost.AmountTaxSum > parentdata.EstimatedCost.AmountTaxSum) {
  872. $('#tab4 #warnning_tips').show();
  873. }
  874. else {
  875. $('#tab4 #warnning_tips').hide();
  876. }
  877. }
  878. else if (oTab[0].id === 'tab6') {
  879. oFinancial.find('.actualsum').val(fMoney(iSubtotal, 2, data.Currency));
  880. var iAcount = 0;
  881. $.each(parentdata.Bills, function (idx, _bill) {
  882. if (_bill.AuditVal !== '6') {
  883. iAcount += _bill.AmountTaxSum;
  884. }
  885. });
  886. oFinancial.find('.amountsum').val(fMoney(iAcount, 2, data.Currency));
  887. if (parentdata.ActualCost.AmountTaxSum > parentdata.EstimatedCost.AmountTaxSum) {
  888. oFinancial.parent().prev().find('.warnningtips').show();
  889. }
  890. else {
  891. oFinancial.parent().prev().find('.warnningtips').hide();
  892. }
  893. }
  894. break;
  895. case 'EstimatedCost':
  896. if (oTab[0].id === 'tab3') {
  897. $('#tab3 .estimatedcostsum').val(fMoney(iSubtotal, 2, data.Currency));
  898. }
  899. break;
  900. case 'Bill':
  901. var iAdvance = parseFloat(oFinancial.find('.prepay').val().replaceAll(',', '')),
  902. iExchangeRate = data.ExchangeRate || 1;
  903. data.TotalReceivable = iTaxSubtotal - iAdvance;
  904. oFinancial.find('.subtotal').val(fMoney(iSubtotal, 2, data.Currency));
  905. oFinancial.find('.taxtotal').val(fMoney(iTaxtotal, 2, data.Currency));
  906. oFinancial.find('.boxtotal').val(fMoney(iTaxSubtotal, 2, data.Currency));
  907. oFinancial.find('.paytotal').val(fMoney(iTaxSubtotal - iAdvance, 2, data.Currency));
  908. // 匯率
  909. let TabTipExchangeRate = (bForn ? 1 : iExchangeRate);
  910. // 純稅金(本幣別)
  911. let TabTipTaxtotal = fnRound(iTaxtotal * TabTipExchangeRate, FeeItemCurrency);
  912. // 未稅總額(本幣別)
  913. let TabTipUntaxtotal = fnRound(iSubtotal * TabTipExchangeRate, FeeItemCurrency);
  914. iOldBoxTotal = iOldBoxTotal * (bForn ? 1 : iExchangeRate);
  915. if (oTab[0].id === 'tab3') {
  916. if (data.AuditVal !== '6') {
  917. let LastRowActualsum = parseFloat($('#tab3 .amountsum').val().replaceAll(',', '')) - iOldBoxTotal;
  918. $('#tab3 .amountsum').val(fMoney(LastRowActualsum + TabTipUntaxtotal, 2, FeeItemCurrency));
  919. $('#tab4 .amountsum').val($('#tab3 .amountsum').val());
  920. }
  921. }
  922. else if (oTab[0].id === 'tab5') {
  923. // 每筆退運帳單的預估成本
  924. oFinancial.find('.topshowsum').show();
  925. oFinancial.find('.estimatedcostsum').val(fMoney(parentdata.EstimatedCost.AmountSum, 2, data.Currency));
  926. if (data.AuditVal !== '6') {
  927. //退運帳單加總
  928. let LastRowActualsum = parseFloat(oFinancial.find('.amountsum').val().replaceAll(',', '')) - iOldBoxTotal;
  929. oFinancial.find('.amountsum').val(fMoney(LastRowActualsum + TabTipUntaxtotal, 2, FeeItemCurrency));
  930. $('.bill-box-' + data.BillNO).find('.amountsum').val(oFinancial.find('.amountsum').val());
  931. }
  932. }
  933. break;
  934. }
  935. /*計算$$*/
  936. if (oTab[0].id === 'tab3') {
  937. if (data.KeyName === 'Bill')
  938. fnCalcuBillsFee(oFinancial, '.BillForeignCurrency', '.BillMainCurrency', data.Currency, data.ExchangeRate);
  939. else
  940. fnCalcuQuotationFee(oFinancial.find('.QuotationForeignCurrency'), oFinancial.find('.QuotationMainCurrency'), parentdata.Quote.QuotationOrBillingCurrency, parentdata.Quote.AccountingExchangeRate);
  941. }
  942. dom.parents('.financial').find('.plusfeeitem').prop('disabled', false);
  943. fnSetDisabled(oFinancial, data, parentdata);
  944. oFinancial.find('.input-value').on('change', function () {
  945. var that = this,
  946. sId = $(that).attr('data-id');
  947. data[sId] = $(that).val();
  948. window.bRequestStorage = true;
  949. });
  950. if (data.KeyName === 'ActualCost') {
  951. var saBillPayers = function () {
  952. var saRetn = [];
  953. $.each(parentdata.Bills, function (idx, bill) {
  954. if (!bill.VoidReason) {
  955. var sPayer = '',
  956. oCur = {};
  957. if (bill.Payer) {
  958. oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === bill.Payer; }).First();
  959. }
  960. saRetn.push({
  961. id: bill.BillNO,
  962. text: oCur.text,
  963. val: bill.BillNO + '-' + (oCur.text || '') + '-' + bill.BillCreateDate
  964. });
  965. }
  966. });
  967. return saRetn;
  968. }();
  969. dom.find('.billpayer').each(function () {
  970. var sGuid = $(this).attr('data-value'),
  971. sBillNO = $(this).attr('data-billno'),
  972. Selector = 'oBillPayers-' + sGuid;
  973. $(this).append($('<select>', {
  974. class: 'form-control w100p ' + Selector, 'multiple': 'multiple',
  975. html: createOptions(saBillPayers, 'id', 'id', false),
  976. change: function () {
  977. var sBill = this.value;
  978. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  979. if (sGuid === item.guid) {
  980. var SelectedValues = getSelectedValues('.oBillPayers-' + this.guid);
  981. var MappedPayers = Enumerable.From(saBillPayers).Where(function (e) {
  982. return SelectedValues.indexOf(e.id) > -1;
  983. }).ToArray();
  984. item.BillNO = MappedPayers.map(c => c.id).join(',');
  985. item.BillPayer = MappedPayers.map(c => c.val).join(',');
  986. return false;
  987. }
  988. });
  989. }
  990. }));
  991. $(this).find('.' + Selector + ' option:first').remove();
  992. let mySelect = new vanillaSelectBox('.' + Selector, {
  993. search: true,
  994. maxHeight: 160,
  995. maxWidth: 200,
  996. });
  997. mySelect.multipleSize = 2;
  998. mySelect.setValue(sBillNO);
  999. $('#btn-group-\\.' + Selector).click(function (e) {
  1000. $('.vsb-menu').css('display', 'none');
  1001. $('#btn-group-\\.' + Selector).find('.vsb-menu').css('display', 'block');
  1002. })
  1003. });
  1004. }
  1005. dom.find('.glyphicon-pencil').off('click').on('click', function () {
  1006. var that = this,
  1007. sGuid = $(that).attr('data-value'),
  1008. oCurFee = {},
  1009. sBillNO = dom.attr('data-billno') || '';
  1010. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  1011. switch (sDomId) {
  1012. case 'quote-box':
  1013. $.each(parentdata.Quote.FeeItems, function (idx, item) {
  1014. if (sGuid === item.guid) {
  1015. oCurFee = item;
  1016. return false;
  1017. }
  1018. });
  1019. break;
  1020. case 'estimatedcost-box':
  1021. $.each(parentdata.EstimatedCost.FeeItems, function (idx, item) {
  1022. if (sGuid === item.guid) {
  1023. oCurFee = item;
  1024. return false;
  1025. }
  1026. });
  1027. break;
  1028. case 'bill_fees_' + sBillNO:
  1029. $.each(parentdata.Bills, function (idx, bill) {
  1030. if (sBillNO === bill.BillNO) {
  1031. $.each(bill.FeeItems, function (idx, item) {
  1032. if (sGuid === item.guid) {
  1033. oCurFee = item;
  1034. return false;
  1035. }
  1036. });
  1037. return false;
  1038. }
  1039. });
  1040. break;
  1041. case 'actualcost-box':
  1042. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  1043. if (sGuid === item.guid) {
  1044. oCurFee = item;
  1045. return false;
  1046. }
  1047. });
  1048. break;
  1049. }
  1050. fnPlusFeeItem(that, parentdata, oCurFee, data.Currency);
  1051. });
  1052. dom.find('.glyphicon-trash').off('click').on('click', function () {
  1053. var that = this,
  1054. sGuid = $(that).attr('data-value'),
  1055. saNewList = [],
  1056. sBillNO = dom.attr('data-billno') || '';
  1057. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  1058. switch (sDomId) {
  1059. case 'quote-box':
  1060. $.each(parentdata.Quote.FeeItems, function (idx, item) {
  1061. if (sGuid !== item.guid) {
  1062. saNewList.push(item);
  1063. }
  1064. });
  1065. parentdata.Quote.FeeItems = saNewList;
  1066. fnBindFeeItem(dom, parentdata, parentdata.Quote);
  1067. break;
  1068. case 'estimatedcost-box':
  1069. $.each(parentdata.EstimatedCost.FeeItems, function (idx, item) {
  1070. if (sGuid !== item.guid) {
  1071. saNewList.push(item);
  1072. }
  1073. });
  1074. parentdata.EstimatedCost.FeeItems = saNewList;
  1075. fnBindFeeItem(dom, parentdata, parentdata.EstimatedCost);
  1076. break;
  1077. case 'bill_fees_' + sBillNO:
  1078. $.each(parentdata.Bills, function (idx, bill) {
  1079. if (sBillNO === bill.BillNO) {
  1080. $.each(bill.FeeItems, function (idx, item) {
  1081. if (sGuid !== item.guid) {
  1082. saNewList.push(item);
  1083. }
  1084. });
  1085. bill.FeeItems = saNewList;
  1086. fnBindFeeItem(dom, parentdata, bill);
  1087. return false;
  1088. }
  1089. });
  1090. break;
  1091. case 'actualcost-box':
  1092. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  1093. if (sGuid !== item.guid) {
  1094. saNewList.push(item);
  1095. }
  1096. });
  1097. parentdata.ActualCost.FeeItems = saNewList;
  1098. fnBindFeeItem(dom, parentdata, parentdata.ActualCost);
  1099. break;
  1100. }
  1101. $(that).parents('tr').remove();
  1102. });
  1103. dom.find('.glyphicon-arrow-down').off('click').on('click', function () {
  1104. var that = this,
  1105. sGuid = $(that).attr('data-value'),
  1106. iOrderBy = 0;
  1107. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  1108. $.each(data.FeeItems, function (n, item) {
  1109. if (sGuid === item.guid) {
  1110. iOrderBy = item.OrderBy;
  1111. item.OrderBy++;
  1112. }
  1113. if (iOrderBy !== 0 && iOrderBy === n) {
  1114. item.OrderBy--;
  1115. return false;
  1116. }
  1117. });
  1118. data.FeeItems = Enumerable.From(data.FeeItems).OrderBy("x=>x.OrderBy").ToArray();
  1119. fnBindFeeItem(dom, parentdata, data);
  1120. });
  1121. dom.find('.glyphicon-arrow-up').off('click').on('click', function () {
  1122. var that = this,
  1123. sGuid = $(that).attr('data-value'),
  1124. iOrderBy = Enumerable.From(data.FeeItems).Where(function (e) { return e.guid === sGuid; }).First().OrderBy;
  1125. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  1126. $.each(data.FeeItems, function (n, item) {
  1127. if (iOrderBy - 2 === n) {
  1128. item.OrderBy++;
  1129. }
  1130. if (sGuid === item.guid) {
  1131. item.OrderBy--;
  1132. return false;
  1133. }
  1134. });
  1135. data.FeeItems = Enumerable.From(data.FeeItems).OrderBy("x=>x.OrderBy").ToArray();
  1136. fnBindFeeItem(dom, parentdata, data);
  1137. });
  1138. },
  1139. /**
  1140. * 審核通過後禁用頁面欄位
  1141. * @param dom{Object}當前區塊
  1142. * @param data{Object}當前區塊
  1143. * @param pdata{Object}當前區塊
  1144. * @return
  1145. * 起始作者John
  1146. * 起始日期2017/01/05
  1147. * 最新修改人John
  1148. * 最新修日期2017/01/05
  1149. */
  1150. fnSetDisabled = function (dom, data, pdata) {
  1151. if (data) {
  1152. if (data.BillNO) {
  1153. switch (data.AuditVal) {
  1154. case '0':// ╠common.NotAudit⇒未提交審核╣
  1155. dom.find('.status-font').text(i18next.t("common.NotAudit")).css('color', 'red');
  1156. break;
  1157. case '1':// ╠common.InAudit⇒提交審核中╣
  1158. dom.find('.status-font').text(i18next.t("common.InAudit")).css('color', 'blue');
  1159. break;
  1160. case '2':// ╠common.Audited⇒已審核╣
  1161. dom.find('.status-font').text(i18next.t("common.Audited")).css('color', 'green');
  1162. break;
  1163. case '3':// ╠common.NotPass⇒不通過╣
  1164. dom.find('.status-font').text(i18next.t("common.NotPass")).css('color', 'red');
  1165. break;
  1166. case '4':// ╠common.NotPass⇒已銷帳╣
  1167. dom.find('.status-font').text(i18next.t("common.HasBeenRealized")).css('color', 'red');
  1168. break;
  1169. case '5':// ╠common.HasBeenPost⇒已過帳╣
  1170. dom.find('.status-font').text(i18next.t("common.HasBeenPost")).css('color', 'green');
  1171. break;
  1172. case '6':// ╠common.HasVoid⇒已作廢╣
  1173. dom.find('.status-font').text(i18next.t("common.HasVoid")).css('color', '#b2b1b1');
  1174. break;
  1175. case '7':// ╠common.HasReEdit⇒抽單中╣
  1176. dom.find('.status-font').text(i18next.t("common.HasReEdit")).css('color', 'blue');
  1177. break;
  1178. }
  1179. }
  1180. dom.find('.bill-status-box').show();
  1181. dom.find('.notpass-reason-box').hide();
  1182. let DraftRecipt = false;
  1183. switch (data.AuditVal) {
  1184. case '0':// ╠common.NotAudit⇒未提交審核╣
  1185. dom.find('.bill-status').text(i18next.t("common.NotAudit")).css('color', 'red');
  1186. dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
  1187. dom.find('.submittoaudit,.synquote,.alreadyaudit').show();
  1188. dom.find('.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1189. if (parent.UserInfo.MemberID === pdata.ResponsiblePerson || parent.UserInfo.MemberID === pdata.CreateUser) {
  1190. if (data.FeeItems.length > 0) {
  1191. dom.find('.submittoaudit').removeAttr('disabled');
  1192. dom.parent().next().find('.synquote').removeAttr('disabled');
  1193. }
  1194. else {
  1195. dom.find('.submittoaudit').prop('disabled', true);
  1196. dom.parent().next().find('.synquote').prop('disabled', true);
  1197. }
  1198. }
  1199. else {
  1200. if (data.KeyName === 'Bill') {
  1201. dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1202. dom.find('.icon-p').addClass('disabled');
  1203. }
  1204. }
  1205. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1206. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1207. }
  1208. else {
  1209. dom.find('.billvoid').hide();
  1210. }
  1211. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1212. dom.find('.billdelete').removeAttr('disabled');
  1213. }
  1214. else {
  1215. dom.find('.billdelete').hide();
  1216. }
  1217. dom.find('.bills-print').removeAttr('disabled');
  1218. DraftRecipt = true;
  1219. break;
  1220. case '1':// ╠common.InAudit⇒提交審核中╣
  1221. dom.find('.bill-status').text(i18next.t("common.InAudit")).css('color', 'blue');
  1222. dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.cancelaudi').hide();
  1223. dom.find('.submittoaudit,.synquote,.alreadyaudit,.reedit,.cancelreedit').show();
  1224. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.submittoaudit,.synquote,.billpost,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1225. dom.find('.icon-p').addClass('disabled');
  1226. if (parent.UserInfo.MemberID === pdata.ResponsiblePerson || parent.UserInfo.MemberID === pdata.CreateUser) {
  1227. dom.find('.reedit').removeAttr('disabled');
  1228. }
  1229. if (parent.UserInfo.UsersDown.indexOf(pdata.ResponsiblePerson) > -1 || parent.UserInfo.UsersBranch.indexOf(pdata.ResponsiblePerson) > -1 || parent.SysSet.BillAuditor.indexOf(parent.UserInfo.MemberID) > -1) {
  1230. dom.find('.alreadyaudit').removeAttr('disabled');
  1231. }
  1232. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1233. dom.find('.reedit,.cancelreedit').hide();
  1234. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1235. }
  1236. else {
  1237. dom.find('.billvoid').hide();
  1238. }
  1239. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1240. dom.find('.billdelete').removeAttr('disabled');
  1241. }
  1242. else {
  1243. dom.find('.billdelete').hide();
  1244. }
  1245. dom.find('.bills-print').removeAttr('disabled');
  1246. break;
  1247. case '2':// ╠common.Audited⇒已審核╣
  1248. dom.find('.bill-status').text(i18next.t("common.Audited")).css('color', 'green');
  1249. dom.find('.submittoaudit,.synquote,.alreadyaudit,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
  1250. dom.find('.billpost,.cancelpost,.cancelaudi,.writeoff').show();
  1251. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.submittoaudit,.synquote,.billpost,.alreadyaudit,.cancelpost,.writeoff,[data-id="Payer"]').attr('disabled', 'disabled');
  1252. dom.find('.icon-p').addClass('disabled');
  1253. dom.find('.bills-print').removeAttr('disabled');
  1254. if (parent.UserInfo.MemberID === pdata.ResponsiblePerson || parent.UserInfo.MemberID === pdata.CreateUser) {
  1255. dom.find('.billpost,.receiptnumberbtn,.checkauditdate').removeAttr('disabled');
  1256. }
  1257. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1258. dom.find('.prepay,.mprepay,.cancelaudi,.billvoid,.writeoff').removeAttr('disabled');
  1259. }
  1260. else {
  1261. dom.find('.billvoid').hide();
  1262. }
  1263. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1264. dom.find('.billdelete').removeAttr('disabled');
  1265. dom.find('.billpost,.cancelpost').hide();
  1266. }
  1267. else {
  1268. dom.find('.billdelete').hide();
  1269. }
  1270. break;
  1271. case '3':// ╠common.NotPass⇒不通過╣
  1272. dom.find('.notpass-reason-text').text(data.NotPassReason || '');
  1273. dom.find('.bill-status').text(i18next.t("common.NotPass")).css('color', 'red');
  1274. dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
  1275. dom.find('.submittoaudit,.synquote,.alreadyaudit,.notpass-reason-box').show();
  1276. if (parent.UserInfo.MemberID === pdata.ResponsiblePerson || parent.UserInfo.MemberID === pdata.CreateUser) {
  1277. if (data.FeeItems.length > 0) {
  1278. dom.find('.submittoaudit').removeAttr('disabled');
  1279. dom.parent().next().find('.synquote').removeAttr('disabled');
  1280. }
  1281. else {
  1282. dom.find('.submittoaudit').prop('disabled', true);
  1283. dom.parent().next().find('.synquote').prop('disabled', true);
  1284. }
  1285. }
  1286. else {
  1287. dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1288. dom.find('.icon-p').addClass('disabled');
  1289. }
  1290. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1291. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1292. }
  1293. else {
  1294. dom.find('.billvoid').hide();
  1295. }
  1296. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1297. dom.find('.billdelete').removeAttr('disabled');
  1298. }
  1299. else {
  1300. dom.find('.billdelete').hide();
  1301. }
  1302. break;
  1303. case '4':// ╠common.HasBeenRealized⇒已銷帳╣
  1304. dom.find('.bill-status').text(i18next.t("common.HasBeenRealized")).css('color', 'red');
  1305. dom.find('.submittoaudit,.synquote,.alreadyaudit,.cancelaudi,.billpost,.cancelpost,.writeoff,.reedit,.cancelreedit').hide();
  1306. dom.find('.canceloff').show();
  1307. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.submittoaudit,.synquote,.billpost').attr('disabled', 'disabled');
  1308. dom.find('.icon-p').addClass('disabled');
  1309. dom.find('.bills-print').removeAttr('disabled');
  1310. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1311. dom.find('.canceloff,.billvoid').removeAttr('disabled');
  1312. }
  1313. else {
  1314. dom.find('.billvoid').hide();
  1315. }
  1316. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1317. dom.find('.billdelete').removeAttr('disabled');
  1318. }
  1319. else {
  1320. dom.find('.billdelete').hide();
  1321. }
  1322. break;
  1323. case '5':// ╠common.HasBeenPost⇒已過帳╣
  1324. dom.find('.bill-status').text(i18next.t("common.HasBeenPost")).css('color', 'green');
  1325. dom.find('.billpost,.submittoaudit,.synquote,.alreadyaudit,.cancelaudi,.reedit,.cancelreedit').hide();
  1326. dom.find('.cancelpost,.writeoff,.canceloff').show();
  1327. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.bills-print,.submittoaudit,.synquote,.billpost').attr('disabled', 'disabled');
  1328. dom.find('.icon-p').addClass('disabled');
  1329. dom.find('.bills-print').removeAttr('disabled');
  1330. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1331. dom.find('.cancelpost,.writeoff,.billvoid').removeAttr('disabled');
  1332. }
  1333. else {
  1334. dom.find('.billvoid').hide();
  1335. }
  1336. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1337. dom.find('.billdelete').removeAttr('disabled');
  1338. }
  1339. else {
  1340. dom.find('.billdelete').hide();
  1341. }
  1342. break;
  1343. case '6':// ╠common.HasVoid⇒已作廢╣
  1344. dom.find('.notpass-reason-text').text(data.VoidReason || '');
  1345. dom.find('.bill-status').text(i18next.t("common.HasVoid")).css('color', '#b2b1b1');
  1346. dom.find('button').not('.plusfeeitem').hide();
  1347. dom.find('.notpass-reason-box').show();
  1348. dom.find(':input,textarea').attr('disabled', 'disabled');
  1349. dom.find('.icon-p').addClass('disabled');
  1350. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1351. dom.find('.billvoid').removeAttr('disabled');
  1352. }
  1353. break;
  1354. case '7':// ╠common.HasReEdit⇒抽單中╣
  1355. dom.find(':input,textarea').removeAttr('disabled');
  1356. dom.find('.icon-p').removeClass('disabled');
  1357. dom.find('.bill-status').text(i18next.t("common.HasReEdit")).css('color', 'blue');
  1358. dom.find('.submittoaudit,.synquote,.alreadyaudit').show();
  1359. dom.find('.billpost,.cancelpost,.writeoff,.canceloff').hide();
  1360. dom.find('.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.bills-print,.submittoaudit,.synquote,.reedit').attr('disabled', 'disabled');
  1361. if (parent.UserInfo.MemberID === pdata.ResponsiblePerson || parent.UserInfo.MemberID === pdata.CreateUser) {//如果有資料且是null或者N
  1362. dom.find('.cancelreedit').removeAttr('disabled');
  1363. }
  1364. else {
  1365. if (data.KeyName === 'Bill') {
  1366. dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1367. dom.find('.icon-p').addClass('disabled');
  1368. }
  1369. }
  1370. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1371. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1372. }
  1373. else {
  1374. dom.find('.billvoid').hide();
  1375. }
  1376. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1377. dom.find('.billdelete').removeAttr('disabled');
  1378. }
  1379. else {
  1380. dom.find('.billdelete').hide();
  1381. }
  1382. break;
  1383. }
  1384. if (DraftRecipt) {
  1385. dom.find("[data-action='Print_Receipt']").hide();
  1386. dom.find("[data-action='Download_Receipt']").hide();
  1387. }
  1388. else {
  1389. dom.find("[data-action='Print_Receipt']").show();
  1390. dom.find("[data-action='Download_Receipt']").show();
  1391. }
  1392. if (parent.UserInfo.roles.indexOf('Business') > -1) {
  1393. dom.find('[data-id="ExchangeRate"]').attr('disabled', 'disabled');
  1394. }
  1395. fnOpenAccountingArea(dom.find('.OnlyForAccounting'), parent.UserInfo.roles);
  1396. }
  1397. },
  1398. /**
  1399. * 批次添加費用項目&收藏
  1400. * @paramthat(Object)當前dom對象
  1401. * @returndata(Object)當前費用項目
  1402. * 起始作者John
  1403. * 起始日期2017/01/05
  1404. * 最新修改人John
  1405. * 最新修日期2017/01/05
  1406. */
  1407. fnPlusFeeItemStar = function (that, handle, parentdata) {
  1408. var oFinancial = $(that).parents('.financial'),
  1409. oTable = oFinancial.find('tbody'),
  1410. sId = oTable.attr('data-id'),
  1411. sBillNO = oTable.attr('data-billno') || '',
  1412. oOption = {};
  1413. oOption.Callback = function (data) {
  1414. if (data.length > 0) {
  1415. parentdata.Quote.FeeItems = clone(data);
  1416. fnBindFeeItem(handle, parentdata, parentdata.Quote);
  1417. $(that).prev().prop('disabled', false);
  1418. }
  1419. };
  1420. fnStarFeeItems(oOption);
  1421. },
  1422. /**
  1423. * 匯入費用項目
  1424. * @paramthat(Object)當前dom對象
  1425. * @returndata(Object)當前費用項目
  1426. * 起始作者John
  1427. * 起始日期2017/01/05
  1428. * 最新修改人John
  1429. * 最新修日期2017/01/05
  1430. */
  1431. fnImportFeeitems = function (type, parentdom, parentdata) {
  1432. $('#importfile').val('').off('change').on('change', function () {
  1433. if (this.value.indexOf('.xls') > -1 || this.value.indexOf('.xlsx') > -1) {
  1434. var sFileId = guid(),
  1435. sFileName = this.value;
  1436. $.ajaxFileUpload({
  1437. url: '/Controller.ashx?action=importfile&FileId=' + sFileId,
  1438. secureuri: false,
  1439. fileElementId: 'importfile',
  1440. success: function (data, status) {
  1441. var that = this;
  1442. g_api.ConnectLite('Exhibition', 'GetImportFeeitems', {//匯入費用項目
  1443. OrgID: parent.OrgID,
  1444. FileId: sFileId,
  1445. FileName: sFileName
  1446. }, function (res) {
  1447. if (res.RESULT) {
  1448. if (res.DATA.rel.length > 0) {
  1449. if (type === 'quote') {
  1450. parentdata.Quote.FeeItems = res.DATA.rel;
  1451. fnBindFeeItem(parentdom.find('[data-id="quote-box"]'), parentdata, parentdata.Quote);
  1452. }
  1453. else if (type === 'estimatedcost') {
  1454. parentdata.EstimatedCost.FeeItems = res.DATA.rel;
  1455. fnBindFeeItem(parentdom.find('[data-id="estimatedcost-box"]'), parentdata, parentdata.EstimatedCost);
  1456. }
  1457. else if (type === 'actualcost') {
  1458. parentdata.ActualCost.FeeItems = res.DATA.rel;
  1459. fnBindFeeItem(parentdom.find('[data-id="actualcost-box"]'), parentdata, parentdata.ActualCost);
  1460. }
  1461. }
  1462. else {
  1463. showMsg(i18next.t("message.NoMatchData")); // ╠message.NoMatchData⇒找不到相關資料╣
  1464. }
  1465. }
  1466. else {
  1467. showMsg(i18next.t('message.ProgressError') + '<br>' + res.MSG, 'error'); // ╠message.ProgressError⇒資料處理異常╣
  1468. }
  1469. }, function () {
  1470. showMsg(i18next.t("message.ProgressError"), 'error'); // ╠message.ProgressError⇒資料處理異常╣
  1471. });
  1472. },
  1473. error: function (data, status, e) {
  1474. showMsg(i18next.t("message.ProgressError"), 'error'); // ╠message.ProgressError⇒資料處理異常╣
  1475. }
  1476. });
  1477. bRequestStorage = true;
  1478. }
  1479. else {
  1480. showMsg(i18next.t("message.FileTypeError"), 'error'); // ╠message.FileTypeError⇒文件格式錯誤╣
  1481. }
  1482. }).click();
  1483. },
  1484. /**
  1485. * 複製費用項目
  1486. * @paramthat(Object)當前dom對象
  1487. * @returnquote(Object)當前費用項目
  1488. * 起始作者John
  1489. * 起始日期2017/01/05
  1490. * 最新修改人John
  1491. * 最新修日期2017/01/05
  1492. */
  1493. fnCopyFeeitems = function (type, parentdom, parentdata) {
  1494. var oOption = {};
  1495. oOption.Callback = function (data) {
  1496. if (data.length > 0) {
  1497. $.each(data, function (idx, item) {
  1498. item.FinancialUnitPrice = 0;
  1499. item.FinancialNumber = 0;
  1500. item.FinancialAmount = 0;
  1501. item.FinancialTWAmount = 0;
  1502. item.FinancialTaxRate = '0%';
  1503. item.FinancialTax = 0;
  1504. item.CreateUser = parent.UserID;
  1505. item.CreateDate = newDate(null, true);
  1506. });
  1507. if (type === 'quote') {
  1508. parentdata.Quote.FeeItems = data;
  1509. fnBindFeeItem(parentdom.find('[data-id="quote-box"]'), parentdata, parentdata.Quote);
  1510. }
  1511. }
  1512. };
  1513. fnCopyFee(oOption);
  1514. },
  1515. /**
  1516. * 添加新帳單
  1517. * @param:supplier(object) 廠商資料
  1518. * @return:
  1519. * 起始作者John
  1520. * 起始日期2017/01/05
  1521. * 最新修改人John
  1522. * 最新修日期2017/01/05
  1523. */
  1524. fnPushBill = function (supplier, data, parentid) {
  1525. var fnBill = function (billno, associated) {
  1526. var oNewBill = {};
  1527. oNewBill.guid = guid();
  1528. oNewBill.IsRetn = 'N';
  1529. oNewBill.parentid = parentid || '';
  1530. oNewBill.KeyName = 'Bill';
  1531. oNewBill.AuditVal = '0';
  1532. oNewBill.BillNO = billno;
  1533. oNewBill.BillCreateDate = newDate();
  1534. oNewBill.BillFirstCheckDate = '';
  1535. oNewBill.BillCheckDate = '';
  1536. oNewBill.Currency = 'NTD';
  1537. oNewBill.ExchangeRate = 1;
  1538. var sQuotationOrBillingCurrency = $('#QuotationOrBillingCurrency option:selected');
  1539. oNewBill.ExchangeRate = sQuotationOrBillingCurrency.attr('Correlation');
  1540. oNewBill.Currency = sQuotationOrBillingCurrency.val();
  1541. oNewBill.Advance = 0;
  1542. oNewBill.Memo = data.Quote.Memo || '';
  1543. oNewBill.FeeItems = associated.Fees.length === 0 ? clone(data.Quote.FeeItems) : associated.Fees;
  1544. oNewBill.InvoiceNumber = '';
  1545. oNewBill.InvoiceDate = '';
  1546. oNewBill.ReceiptNumber = '';
  1547. oNewBill.ReceiptDate = '';
  1548. oNewBill.SupplierGuid = supplier.guid;
  1549. oNewBill.Payer = supplier.SupplierID;
  1550. oNewBill.Number = associated.Base.Number || '';
  1551. oNewBill.Unit = associated.Base.Unit || '';
  1552. oNewBill.Weight = associated.Base.Weight || '';
  1553. oNewBill.Volume = associated.Base.Volume || '';
  1554. oNewBill.CustomerGuid = supplier.SupplierID;
  1555. oNewBill.CustomerCode = supplier.CustomerNO;
  1556. oNewBill.UniCode = supplier.UniCode;
  1557. oNewBill.SupplierName = supplier.SupplierName;
  1558. oNewBill.SupplierEName = supplier.SupplierEName;
  1559. oNewBill.Contactor = associated.Base.ContactorId || supplier.Contactor;
  1560. oNewBill.ContactorName = associated.Base.ContactorName || supplier.ContactorName;
  1561. oNewBill.Telephone = associated.Base.ContactTel || supplier.Telephone || '';
  1562. oNewBill.Email = supplier.Email;
  1563. oNewBill.ReFlow = '';
  1564. data.Bills.push(oNewBill);
  1565. };
  1566. return $.whenArray([
  1567. g_api.ConnectLite(Service.opm, 'GetBillAssociated', {
  1568. AppointNO: sAppointNO,
  1569. OtherId: sDataId,
  1570. SupplierID: supplier.SupplierID
  1571. }),
  1572. g_api.ConnectLite(Service.com, ComFn.GetSerial, {
  1573. Type: parent.UserInfo.OrgID + 'O',
  1574. Flag: 'MinYear',
  1575. Len: 3,
  1576. Str: sServiceCode,
  1577. AddType: sServiceCode,
  1578. PlusType: ''
  1579. }, function (res) { },
  1580. function () {
  1581. showMsg(i18next.t('message.CreateBill_Failed'), 'error'); // ╠message.CreateBill_Failed⇒帳單新增失敗╣
  1582. })
  1583. ]).done(function (res1, res2) {
  1584. if (res2[0].RESULT) {
  1585. var oAssociated = res1[0].DATA.rel;
  1586. fnBill(res2[0].DATA.rel, oAssociated);
  1587. }
  1588. else {
  1589. showMsg(i18next.t('message.CreateBill_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CreateBill_Failed⇒帳單新增失敗╣
  1590. }
  1591. });
  1592. },
  1593. /**
  1594. * 初始化:報價/帳單幣別匯率
  1595. */
  1596. fnInitialAccountCurrency = function (tabName) {
  1597. $('#QuotationOrBillingCurrency').html(sAccountingCurrencyOptionsHtml).on('change', function () {
  1598. var sQuotationOrBillingCurrency = $('#QuotationOrBillingCurrency option:selected');
  1599. var sExchangeRate = sQuotationOrBillingCurrency.attr('Correlation');
  1600. var fExchangeRate = parseFloat(sExchangeRate);
  1601. let CurrencyID = this.value;
  1602. oCurData.Quote.QuotationOrBillingCurrency = CurrencyID;
  1603. oCurData.Quote.AccountingExchangeRate = sExchangeRate;
  1604. $('#AccountingExchangeRate').val(sExchangeRate);
  1605. bRequestStorage = true;//要變更儲存
  1606. //是主幣別(TE、TG:NTD;SG:CNY),僅顯示主幣別資訊。
  1607. var MainCurrency = fnCheckMainOrForeignCurrency(CurrencyID);
  1608. var TitleAttr = '';
  1609. if (MainCurrency) {
  1610. TitleAttr = 'common.MainCurrencyNontaxedAmountV2';
  1611. $(tabName + ' .QuotationForeignCurrency').hide();
  1612. }
  1613. else {
  1614. TitleAttr = 'common.ForeignCurrencyNontaxedAmountV2';
  1615. $(tabName + ' .QuotationForeignCurrency').show();
  1616. }
  1617. $(tabName + ' .QuotationAmountTiltle').attr('data-i18n', TitleAttr).text(i18next.t(TitleAttr));
  1618. //重算
  1619. fnCalcuQuotationFee($('.QuotationForeignCurrency'), $('.QuotationMainCurrency'), CurrencyID, fExchangeRate);
  1620. });
  1621. $('#QuotationOrBillingCurrency').val(oCurData.Quote.QuotationOrBillingCurrency);
  1622. $('#AccountingExchangeRate').val(oCurData.Quote.AccountingExchangeRate);
  1623. $('#QuotationOrBillingCurrency').change();
  1624. },
  1625. /**
  1626. * 綁定會計區塊
  1627. * @param
  1628. * @return
  1629. * 起始作者John
  1630. * 起始日期2017/01/05
  1631. * 最新修改人John
  1632. * 最新修日期2017/01/05
  1633. */
  1634. fnBindFinancial = function () {
  1635. fnBindFeeItem($('#tab3 [data-id="quote-box"]'), oCurData, oCurData.Quote);//綁定報價
  1636. fnBindFeeItem($('#tab3 [data-id="estimatedcost-box"]'), oCurData, oCurData.EstimatedCost);//綁定預估成本
  1637. if (oCurData.EstimatedCost.AuditVal && oCurData.EstimatedCost.AuditVal === '2') {//業務審核完
  1638. fnBindFeeItem($('#tab4 [data-id="actualcost-pre-box"]'), oCurData, oCurData.EstimatedCost, true);
  1639. $('#tab4 .estimatedcost-memo').text(oCurData.EstimatedCost.Memo || '');
  1640. }
  1641. fnBindFeeItem($('#tab4 [data-id="actualcost-box"]'), oCurData, oCurData.ActualCost);//實際成本
  1642. fnInitialAccountCurrency('#tab3');//會計用匯率
  1643. $('#tab3 [data-source="quote"]').text(oCurData.Quote.Memo || '');
  1644. $('#tab3 [data-source="estimatedcost"]').text(oCurData.EstimatedCost.Memo || '');
  1645. $('#tab4 [data-source="actualcost"]').text(oCurData.ActualCost.Memo || '');
  1646. $('#tab3 .plusfeeitem,#tab4 .plusfeeitem').not('disabled').off('click').on('click', function () {
  1647. fnPlusFeeItem(this, oCurData);
  1648. });
  1649. $('#tab3 .importfeeitem').not('disabled').off('click').on('click', function () {
  1650. var sType = $(this).attr('data-type');
  1651. fnImportFeeitems(sType, $('#tab3'), oCurData);
  1652. });
  1653. $('#tab4 .importfeeitem').not('disabled').off('click').on('click', function () {
  1654. var sType = $(this).attr('data-type');
  1655. fnImportFeeitems(sType, $('#tab4'), oCurData);
  1656. });
  1657. $('#tab3 .copyfeeitem').not('disabled').off('click').on('click', function () {
  1658. var sType = $(this).attr('data-type');
  1659. fnCopyFeeitems(sType, $('#tab3'), oCurData);
  1660. });
  1661. $('#tab3 .plusfeeitemstar').not('disabled').off('click').on('click', function () {
  1662. fnPlusFeeItemStar(this, $('#tab3').find('[data-id="quote-box"]'), oCurData);
  1663. });
  1664. $('#tab3 #estimated_submitaudit').not('disabled').off('click').on('click', function () {
  1665. if (oCurData.EstimatedCost.FeeItems.length === 0 && !$('#EstimatedCost_Memo').val()) {
  1666. showMsg(i18next.t("message.EstimatedCostMemo_Required")); // ╠message.EstimatedCostMemo_Required⇒預估成本沒有費用明細,請至少填寫備註╣
  1667. return false;
  1668. }
  1669. if (!oCurData.Quote.QuotationOrBillingCurrency || !oCurData.Quote.AccountingExchangeRate) {
  1670. showMsg(i18next.t("message.QuotationOrBillingCurrencyField_Required")); // ╠message.QuotationOrBillingCurrencyField_Required⇒報價/帳單幣或匯率未選擇╣
  1671. return false;
  1672. }
  1673. oCurData.Quote.AuditVal = '1';
  1674. oCurData.EstimatedCost.AuditVal = '1';
  1675. g_api.ConnectLite(sProgramId, 'ToAuditForQuote', {
  1676. Guid: sDataId,
  1677. Quote: oCurData.Quote,
  1678. EstimatedCost: oCurData.EstimatedCost
  1679. }, function (res) {
  1680. if (res.RESULT) {
  1681. fnSetDisabled($('#tab3 .quoteandprecost'), oCurData.Quote, oCurData);
  1682. showMsg(i18next.t("message.ToAudit_Success"), 'success'); // ╠message.ToAudit_Success⇒提交審核成功╣
  1683. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  1684. }
  1685. else {
  1686. oCurData.Quote.AuditVal = '0';
  1687. oCurData.EstimatedCost.AuditVal = '0';
  1688. showMsg(i18next.t('message.ToAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  1689. }
  1690. }, function () {
  1691. oCurData.Quote.AuditVal = '0';
  1692. oCurData.EstimatedCost.AuditVal = '0';
  1693. showMsg(i18next.t('message.ToAudit_Failed'), 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  1694. });
  1695. });
  1696. $('#tab3 #estimated_audit').not('disabled').off('click').on('click', function () {
  1697. layer.open({
  1698. type: 1,
  1699. title: i18next.t('common.Leader_Audit'),// ╠common.Leader_Audit⇒主管審核╣
  1700. area: ['400px', '260px'],//寬度
  1701. shade: 0.75,//遮罩
  1702. shadeClose: true,
  1703. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  1704. content: '<div class="pop-box">\
  1705. <textarea name="NotPassReason" id="NotPassReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.NotPassReason" placeholder="不通過原因..."></textarea><br>\
  1706. <button type="button" data-i18n="common.Pass" id="audit_pass" class="btn-custom green">通過</button>\
  1707. <button type="button" data-i18n="common.NotPass" id="audit_notpass" class="btn-custom red">不通過</button>\
  1708. </div>',
  1709. success: function (layero, idx) {
  1710. $('.pop-box :button').click(function () {
  1711. var sNotPassReason = $('#NotPassReason').val();
  1712. if (this.id === 'audit_pass') {
  1713. oCurData.Quote.AuditVal = '2';
  1714. oCurData.EstimatedCost.AuditVal = '2';
  1715. oCurData.Quote.NotPassReason = '';
  1716. oCurData.EstimatedCost.NotPassReason = '';
  1717. }
  1718. else {
  1719. if (!sNotPassReason) {
  1720. showMsg(i18next.t("message.NotPassReason_Required")); // ╠message.NotPassReason_Required⇒請填寫不通過原因╣
  1721. return false;
  1722. }
  1723. else {
  1724. oCurData.Quote.AuditVal = '3';
  1725. oCurData.EstimatedCost.AuditVal = '3';
  1726. oCurData.Quote.NotPassReason = sNotPassReason;
  1727. oCurData.EstimatedCost.NotPassReason = sNotPassReason;
  1728. }
  1729. }
  1730. g_api.ConnectLite(sProgramId, 'AuditForQuote', {
  1731. Guid: sDataId,
  1732. Quote: oCurData.Quote,
  1733. EstimatedCost: oCurData.EstimatedCost,
  1734. Bills: oCurData.Bills
  1735. }, function (res) {
  1736. if (res.RESULT) {
  1737. showMsg(i18next.t("message.Audit_Completed"), 'success'); // ╠message.Audit_Completed⇒審核完成╣
  1738. if (oCurData.Quote.AuditVal === '2') {
  1739. var oTable2 = $('#tab4 [data-id="actualcost-pre-box"]');
  1740. fnBindFeeItem(oTable2, oCurData, oCurData.EstimatedCost, true);
  1741. $('#tab4 .estimatedcost-memo').text(oCurData.EstimatedCost.Memo || '');
  1742. }
  1743. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  1744. fnSetDisabled($('#tab3 .quoteandprecost'), oCurData.Quote, oCurData);
  1745. }
  1746. else {
  1747. oCurData.Quote.AuditVal = '1';
  1748. oCurData.EstimatedCost.AuditVal = '1';
  1749. showMsg(i18next.t('message.Audit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  1750. }
  1751. }, function () {
  1752. oCurData.Quote.AuditVal = '1';
  1753. oCurData.EstimatedCost.AuditVal = '1';
  1754. showMsg(i18next.t('message.Audit_Failed'), 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  1755. });
  1756. layer.close(idx);
  1757. });
  1758. transLang(layero);
  1759. }
  1760. });
  1761. });
  1762. $('#tab3 #estimated_synquote').not('disabled').off('click').on('click', function () {
  1763. oCurData.EstimatedCost.FeeItems = clone(oCurData.Quote.FeeItems);
  1764. $.each(oCurData.EstimatedCost.FeeItems, function (idx, item) {
  1765. item.FinancialUnitPrice = 0;
  1766. item.FinancialNumber = 0;
  1767. item.FinancialAmount = 0;
  1768. item.FinancialTWAmount = 0;
  1769. item.FinancialTaxRate = '0%';
  1770. item.FinancialTax = 0;
  1771. item.CreateUser = parent.UserID;
  1772. item.CreateDate = newDate(null, true);
  1773. });
  1774. fnBindFeeItem($('#tab3').find('[data-id="estimatedcost-box"]'), oCurData, oCurData.EstimatedCost);
  1775. });
  1776. fnBindBillLists();
  1777. },
  1778. /**
  1779. * 獲取收據號碼
  1780. * @param btn(object)產生收據號碼按鈕
  1781. * @return bill(object)當前帳單資料
  1782. * 起始作者John
  1783. * 起始日期2017/01/05
  1784. * 最新修改人John
  1785. * 最新修日期2017/01/05
  1786. */
  1787. fnGetReceiptNumber = function (btn, bill) {
  1788. return g_api.ConnectLite(Service.com, ComFn.GetSerial, {
  1789. Type: 'SE',
  1790. Flag: 'MinYear',
  1791. Len: 6,
  1792. Str: '',
  1793. AddType: '',
  1794. PlusType: ''
  1795. }, function (res) {
  1796. if (res.RESULT) {
  1797. var oBillBox = $(btn).parents('.bill-box-' + bill.BillNO);
  1798. bill.ReceiptNumber = res.DATA.rel;
  1799. bill.ReceiptDate = newDate(null, true);
  1800. oBillBox.find('[data-id="ReceiptNumber"]').val(bill.ReceiptNumber);
  1801. oBillBox.find('[data-id="ReceiptDate"]').val(bill.ReceiptDate);
  1802. $(btn).remove();
  1803. }
  1804. else {
  1805. showMsg(i18next.t('message.CreateReceiptNumber_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CreateReceiptNumber_Failed⇒收據號碼產生失敗╣
  1806. }
  1807. }, function () {
  1808. showMsg(i18next.t('message.CreateReceiptNumber_Failed'), 'error'); // ╠message.CreateReceiptNumber_Failed⇒收據號碼產生失敗╣
  1809. });
  1810. },
  1811. /**
  1812. * 帳單提交審核
  1813. * @param bill(object)帳單資料
  1814. * @return
  1815. * 起始作者John
  1816. * 起始日期2017/01/05
  1817. * 最新修改人John
  1818. * 最新修日期2017/01/05
  1819. */
  1820. fnBillToAudit = function (bill, el) {
  1821. var sMsg = '',
  1822. elBillBox = $(el).parents('.financial');
  1823. if (!bill.Currency) {
  1824. sMsg += i18next.t("ExhibitionImport_Upd.Currency_required") + '<br/>'; // ╠common.Currency_required⇒請輸入帳單幣別╣
  1825. }
  1826. if (!bill.Payer) {
  1827. sMsg += i18next.t("ExhibitionImport_Upd.Payer_required") + '<br/>'; // ╠ExhibitionImport_Upd.SupplierEamil_required⇒請輸入付款人╣
  1828. }
  1829. if (!bill.Number) {
  1830. sMsg += i18next.t("message.Number_required") + '<br/>'; // ╠message.Number_required⇒請輸入件數╣
  1831. }
  1832. if (!bill.Weight) {
  1833. sMsg += i18next.t("message.Weight_required") + '<br/>'; // ╠message.Weight_required⇒請輸入重量╣
  1834. }
  1835. if (!bill.Volume) {
  1836. sMsg += i18next.t("message.Volume_required") + '<br/>'; // ╠message.Volume_required⇒請輸入材積(CBM)╣
  1837. }
  1838. if (elBillBox.find('.jsgrid-update-button').length > 0) {
  1839. sMsg += i18next.t("message.DataEditing") + '<br/>'; // ╠message.DataEditing⇒該賬單處於編輯中╣
  1840. }
  1841. if (sMsg) {
  1842. showMsg(sMsg); // 必填欄位
  1843. return;
  1844. }
  1845. bill.AuditVal = '1';
  1846. g_api.ConnectLite(sProgramId, 'ToAuditForBill', {
  1847. Guid: sDataId,
  1848. Exhibitors: saGridData,
  1849. Bills: oCurData.Bills,
  1850. Bill: bill
  1851. }, function (res) {
  1852. if (res.RESULT) {
  1853. fnSetDisabled($('.bill-box-' + bill.BillNO).parents('.financial'), bill, oCurData);
  1854. showMsg(i18next.t("message.ToAudit_Success"), 'success'); // ╠message.ToAudit_Success⇒提交審核成功╣
  1855. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  1856. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  1857. }
  1858. else {
  1859. bill.AuditVal = '0';
  1860. showMsg(i18next.t('message.ToAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  1861. }
  1862. }, function () {
  1863. bill.AuditVal = '0';
  1864. showMsg(i18next.t('message.ToAudit_Failed'), 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  1865. });
  1866. },
  1867. /**
  1868. * 帳單審核
  1869. * @param bill(object)帳單資料
  1870. * @return
  1871. * 起始作者John
  1872. * 起始日期2017/01/05
  1873. * 最新修改人John
  1874. * 最新修日期2017/01/05
  1875. */
  1876. fnBillAudit = function (bill) {
  1877. layer.open({
  1878. type: 1,
  1879. title: i18next.t('common.Leader_Audit'),// ╠common.Leader_Audit⇒主管審核╣
  1880. area: ['400px', '260px'],//寬度
  1881. shade: 0.75,//遮罩
  1882. shadeClose: true,
  1883. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  1884. content: '<div class="pop-box">\
  1885. <textarea name="NotPassReason" id="NotPassReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.NotPassReason" placeholder="不通過原因..."></textarea><br>\
  1886. <button type="button" data-i18n="common.Pass" id="audit_pass" class="btn-custom green">通過</button>\
  1887. <button type="button" data-i18n="common.NotPass" id="audit_notpass" class="btn-custom red">不通過</button>\
  1888. </div>',
  1889. success: function (layero, idx) {
  1890. $('.pop-box :button').click(function () {
  1891. var sNotPassReason = $('#NotPassReason').val();
  1892. if (this.id === 'audit_pass') {
  1893. bill.AuditVal = '2';
  1894. bill.NotPassReason = '';
  1895. }
  1896. else {
  1897. if (!sNotPassReason) {
  1898. showMsg(i18next.t("message.NotPassReason_Required")); // ╠message.NotPassReason_Required⇒請填寫不通過原因╣
  1899. return false;
  1900. }
  1901. else {
  1902. bill.AuditVal = '3';
  1903. bill.NotPassReason = sNotPassReason;
  1904. }
  1905. }
  1906. bill.BillCheckDate = newDate();
  1907. bill.CreateDate = newDate();
  1908. if (!bill.BillFirstCheckDate) {
  1909. bill.BillFirstCheckDate = bill.BillCheckDate;
  1910. }
  1911. g_api.ConnectLite(sProgramId, 'AuditForBill', {
  1912. Guid: sDataId,
  1913. Bills: oCurData.Bills,
  1914. Bill: bill
  1915. }, function (res) {
  1916. if (res.RESULT) {
  1917. $('.bill-box-' + bill.BillNO).find('.bill-chewckdate').text(bill.BillCheckDate);
  1918. fnSetDisabled($('.bill-box-' + bill.BillNO).parents('.financial'), bill, oCurData);
  1919. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  1920. showMsg(i18next.t("message.Audit_Completed"), 'success'); // ╠message.Audit_Completed⇒審核完成╣
  1921. if (bill.AuditVal === '2') {
  1922. parent.msgs.server.pushTransfer(parent.OrgID, parent.UserID, bill.BillNO, 1);
  1923. }
  1924. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  1925. }
  1926. else {
  1927. bill.AuditVal = '1';
  1928. if (bill.BillCheckDate === bill.BillFirstCheckDate) {
  1929. bill.BillFirstCheckDate = '';
  1930. }
  1931. bill.BillCheckDate = '';
  1932. showMsg(i18next.t('message.Audit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  1933. }
  1934. }, function () {
  1935. bill.AuditVal = '1';
  1936. if (bill.BillCheckDate === bill.BillFirstCheckDate) {
  1937. bill.BillFirstCheckDate = '';
  1938. }
  1939. bill.BillCheckDate = '';
  1940. showMsg(i18next.t('message.Audit_Failed'), 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  1941. });
  1942. layer.close(idx);
  1943. });
  1944. transLang(layero);
  1945. }
  1946. });
  1947. },
  1948. /**
  1949. * 會計取消審核
  1950. * @param bill(object)帳單資料
  1951. * @return
  1952. * 起始作者John
  1953. * 起始日期2017/01/05
  1954. * 最新修改人John
  1955. * 最新修日期2017/01/05
  1956. */
  1957. fnBillCancelAudit = function (bill) {
  1958. var sBillCheckDate = bill.BillCheckDate;
  1959. bill.AuditVal = '0';
  1960. bill.BillCheckDate = '';
  1961. g_api.ConnectLite(sProgramId, 'CancelAudit', {
  1962. Guid: sDataId,
  1963. Bills: oCurData.Bills,
  1964. Bill: bill,
  1965. LogData: fnGetBillLogData(bill)
  1966. }, function (res) {
  1967. if (res.RESULT) {
  1968. $('.bill-box-' + bill.BillNO).find('.bill-chewckdate').text('');
  1969. fnSetDisabled($('.bill-box-' + bill.BillNO).parents('.financial'), bill, oCurData);
  1970. showMsg(i18next.t("message.CancelAudit_Success"), 'success'); // ╠message.CancelAudit_Success⇒取消審核完成╣
  1971. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  1972. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  1973. }
  1974. else {
  1975. bill.AuditVal = '2';
  1976. bill.BillCheckDate = sBillCheckDate;
  1977. showMsg(i18next.t('message.CancelAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CancelAudit_Failed⇒取消審核失敗╣
  1978. }
  1979. }, function () {
  1980. bill.AuditVal = '2';
  1981. bill.BillCheckDate = sBillCheckDate;
  1982. showMsg(i18next.t('message.CancelAudit_Failed'), 'error'); // ╠message.CancelAudit_Failed⇒取消審核失敗╣
  1983. });
  1984. },
  1985. /**
  1986. * 列印事件
  1987. * @paramtemplid (string) 模版id
  1988. * @paramaction (string) 動作標識
  1989. * @parambill (objec) 帳單資料
  1990. * @return
  1991. * 起始作者John
  1992. * 起始日期2016/05/21
  1993. * 最新修改人John
  1994. * 最新修日期2016/11/03
  1995. */
  1996. fnPrint = function (templid, action, bill) {
  1997. var bReceipt = action.indexOf('Receipt') > -1,
  1998. fnToPrint = function (idx, paydatetext) {
  1999. g_api.ConnectLite(sProgramId, bReceipt ? 'PrintReceipt' : 'PrintBill', {
  2000. Guid: sDataId,
  2001. TemplID: templid,
  2002. Bill: bill,
  2003. Action: action,
  2004. PayDateText: paydatetext || ''
  2005. }, function (res) {
  2006. if (res.RESULT) {
  2007. if (idx) {
  2008. layer.close(idx);
  2009. }
  2010. var sPath = res.DATA.rel,
  2011. sTitle = bReceipt ? 'common.Receipt_Preview' : 'common.Bill_Preview';
  2012. if (action.indexOf('Print_') > -1) {
  2013. var index = layer.open({
  2014. type: 2,
  2015. title: i18next.t(sTitle),
  2016. content: gServerUrl + '/' + sPath,
  2017. area: ['900px', '500px'],
  2018. maxmin: true
  2019. });
  2020. //layer.full(index); //弹出即全屏
  2021. }
  2022. else {
  2023. DownLoadFile(sPath);
  2024. }
  2025. }
  2026. else {
  2027. // ╠common.Preview_Failed⇒預覽失敗╣ ╠common.DownLoad_Failed⇒下載失敗╣
  2028. showMsg(i18next.t('common.Preview_Failed') + '<br>' + res.MSG, 'error');
  2029. }
  2030. }, function () {
  2031. // ╠common.Preview_Failed⇒預覽失敗╣ ╠common.DownLoad_Failed⇒下載失敗╣
  2032. showMsg(i18next.t('common.Preview_Failed'), 'error');
  2033. }, true, i18next.t('message.Dataprocessing'));// ╠message.Dataprocessing⇒資料處理中...╣
  2034. };
  2035. if (bReceipt) {
  2036. fnToPrint();
  2037. }
  2038. else {
  2039. layer.open({
  2040. type: 1,
  2041. title: i18next.t('common.PayDatePopTitle'),// ╠common.PayDatePopTitle⇒付款日期設定╣
  2042. area: ['300px', '170px'],//寬度
  2043. shade: 0.75,//遮罩
  2044. shadeClose: true,
  2045. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  2046. content: '<div class="pop-box">\
  2047. <div class="col-sm-12" hidden>\
  2048. <input id="radio_1" type="radio" name="printitem" value="a"/>\
  2049. <label for="radio_1" data-i18n="common.PayDateText1">請立即安排付款</label>\
  2050. <input id="radio_2" type="radio" name="printitem" value="b" />\
  2051. <label for="radio_2" data-i18n="common.PayDateText2">a.s.a.p</label>\
  2052. <input id="radio_3" type="radio" name="printitem" value="c" checked="checked"/>\
  2053. <label for="radio_3" data-i18n="common.PayDateText3">日期</label>\
  2054. </div>\
  2055. <div class="col-sm-12 print-paydate">\
  2056. <input name="PayDate" type="text" maxlength="100" id="PayDate" class="form-control date-picker w100p" />\
  2057. </div>\
  2058. </div>',
  2059. success: function (layero, idx) {
  2060. var BillCheckDate = bill.BillCheckDate ? bill.BillCheckDate : new Date();
  2061. var sDefultDate = newDate(new Date(BillCheckDate).dateAdd('d', 15), true);
  2062. $('[name=printitem]').click(function () {
  2063. if (this.value === 'c') {
  2064. $('.print-paydate').show();
  2065. }
  2066. else {
  2067. $('.print-paydate').hide();
  2068. }
  2069. });
  2070. $('#PayDate').val(sDefultDate).datepicker({
  2071. changeYear: true,
  2072. changeMonth: true,
  2073. altFormat: 'yyyy/MM/dd',
  2074. onSelect: function (d, e) { },
  2075. afterInject: function (d, e) { }
  2076. });
  2077. transLang(layero);
  2078. },
  2079. yes: function (index, layero) {
  2080. var sPayDate = $('#PayDate').val(),
  2081. sPayDateType = $('[name=printitem]:checked').val(),
  2082. sPayDateText = $('[name=printitem]:checked').next().text();
  2083. if (sPayDateType === 'c' && !sPayDate) {
  2084. showMsg(i18next.t("message.PayDate_required")); // ╠message.PayDate_required⇒請選擇付款日期╣
  2085. return false;
  2086. }
  2087. fnToPrint(index, sPayDateType === 'c' ? sPayDate : sPayDateText);
  2088. }
  2089. });
  2090. }
  2091. },
  2092. /**
  2093. * 過帳
  2094. * @param bill(object)帳單資料
  2095. * @return
  2096. * 起始作者John
  2097. * 起始日期2017/01/05
  2098. * 最新修改人John
  2099. * 最新修日期2017/01/05
  2100. */
  2101. fnBillPost = function (bill) {
  2102. bill.AuditVal = '5';
  2103. bill.CreateDate = newDate();
  2104. g_api.ConnectLite(sProgramId, 'BillPost', {
  2105. Guid: sDataId,
  2106. Bills: oCurData.Bills,
  2107. Bill: bill
  2108. }, function (res) {
  2109. if (res.RESULT) {
  2110. fnSetDisabled($('.bill-box-' + bill.BillNO), bill, oCurData);
  2111. showMsg(i18next.t("message.BillPost_Success"), 'success'); // ╠message.BillPost_Success⇒過帳完成╣
  2112. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2113. parent.msgs.server.pushTransfer(parent.OrgID, parent.UserID, bill.BillNO, 1);
  2114. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2115. }
  2116. else {
  2117. bill.AuditVal = '2';
  2118. showMsg(i18next.t('message.BillPost_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillPost_Failed⇒過帳失敗╣
  2119. }
  2120. }, function () {
  2121. bill.AuditVal = '2';
  2122. showMsg(i18next.t('message.BillPost_Failed'), 'error'); // ╠message.BillPost_Failed⇒過帳失敗╣
  2123. });
  2124. },
  2125. /**
  2126. * 取消過帳
  2127. * @param bill(object)帳單資料
  2128. * @return
  2129. * 起始作者John
  2130. * 起始日期2017/01/05
  2131. * 最新修改人John
  2132. * 最新修日期2017/01/05
  2133. */
  2134. fnBillCancelPost = function (bill) {
  2135. bill.AuditVal = '2';
  2136. g_api.ConnectLite(sProgramId, 'BillCancelPost', {
  2137. Guid: sDataId,
  2138. Bills: oCurData.Bills,
  2139. Bill: bill,
  2140. LogData: fnGetBillLogData(bill)
  2141. }, function (res) {
  2142. if (res.RESULT) {
  2143. fnSetDisabled($('.bill-box-' + bill.BillNO), bill, oCurData);
  2144. showMsg(i18next.t("message.BillCancePost_Success"), 'success'); // ╠message.BillCancePost_Success⇒取消過帳完成╣
  2145. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2146. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2147. }
  2148. else {
  2149. bill.AuditVal = '5';
  2150. showMsg(i18next.t('message.BillCancePost_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillCancePost_Failed⇒取消過帳失敗╣
  2151. }
  2152. }, function () {
  2153. bill.AuditVal = '5';
  2154. showMsg(i18next.t('message.BillCancePost_Failed'), 'error'); // ╠message.BillCancePost_Failed⇒取消過帳失敗╣
  2155. });
  2156. },
  2157. /**
  2158. * 會計銷帳
  2159. * @param bill(object)帳單資料
  2160. * @return
  2161. * 起始作者John
  2162. * 起始日期2017/01/05
  2163. * 最新修改人John
  2164. * 最新修日期2017/01/05
  2165. */
  2166. fnBillWriteOff = function (bill) {
  2167. bill.AuditVal = '4';
  2168. bill.BillWriteOffDate = newDate();
  2169. g_api.ConnectLite(sProgramId, 'WriteOff', {
  2170. Guid: sDataId,
  2171. Bills: oCurData.Bills,
  2172. Bill: bill
  2173. }, function (res) {
  2174. if (res.RESULT) {
  2175. fnSetDisabled($('.bill-box-' + bill.BillNO), bill, oCurData);
  2176. showMsg(i18next.t("message.BillWriteOff_Success"), 'success'); // ╠message.BillWriteOff_Success⇒銷帳完成╣
  2177. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2178. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2179. }
  2180. else {
  2181. bill.AuditVal = '5';
  2182. showMsg(i18next.t('message.BillWriteOff_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillWriteOff_Failed⇒銷帳失敗╣
  2183. }
  2184. }, function () {
  2185. bill.AuditVal = '5';
  2186. showMsg(i18next.t('message.BillWriteOff_Failed'), 'error'); // ╠message.BillWriteOff_Failed⇒銷帳失敗╣
  2187. });
  2188. },
  2189. /**
  2190. * 會計取消銷帳
  2191. * @param bill(object)帳單資料
  2192. * @return
  2193. * 起始作者John
  2194. * 起始日期2017/01/05
  2195. * 最新修改人John
  2196. * 最新修日期2017/01/05
  2197. */
  2198. fnBillCancelWriteOff = function (bill) {
  2199. bill.AuditVal = '5';
  2200. bill.BillWriteOffDate = '';
  2201. g_api.ConnectLite(sProgramId, 'CancelWriteOff', {
  2202. Guid: sDataId,
  2203. Bills: oCurData.Bills,
  2204. Bill: bill,
  2205. LogData: fnGetBillLogData(bill)
  2206. }, function (res) {
  2207. if (res.RESULT) {
  2208. fnSetDisabled($('.bill-box-' + bill.BillNO), bill, oCurData);
  2209. showMsg(i18next.t("message.BillCancelWriteOff_Success"), 'success'); // ╠message.BillCancelWriteOff_Success⇒取消銷帳完成╣
  2210. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2211. }
  2212. else {
  2213. bill.AuditVal = '4';
  2214. showMsg(i18next.t('message.BillCancelWriteOff_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillCancelWriteOff_Failed⇒取消銷帳失敗╣
  2215. }
  2216. }, function () {
  2217. bill.AuditVal = '4';
  2218. showMsg(i18next.t('message.BillCancelWriteOff_Failed'), 'error'); // ╠message.BillCancelWriteOff_Failed⇒取消銷帳失敗╣
  2219. });
  2220. },
  2221. /**
  2222. * 帳單作廢
  2223. * @param bill(object)帳單資料
  2224. * @return
  2225. * 起始作者John
  2226. * 起始日期2017/01/05
  2227. * 最新修改人John
  2228. * 最新修日期2017/01/05
  2229. */
  2230. fnBillVoid = function (bill) {
  2231. layer.open({
  2232. type: 1,
  2233. title: i18next.t('common.VoidBill'),// ╠common.VoidBill⇒作廢帳單╣
  2234. area: ['400px', '220px'],//寬度
  2235. shade: 0.75,//遮罩
  2236. shadeClose: true,
  2237. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  2238. content: '<div class="pop-box">\
  2239. <textarea name="VoidReason" id="VoidReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.VoidReason" placeholder="作廢原因..."></textarea>\
  2240. </div>',
  2241. success: function (layero, idx) {
  2242. transLang(layero);
  2243. },
  2244. yes: function (index, layero) {
  2245. var sAuditVal = bill.AuditVal,
  2246. sVoidReason = layero.find('#VoidReason').val();
  2247. if (sVoidReason) {
  2248. bill.VoidReason = sVoidReason;
  2249. bill.AuditVal = '6';
  2250. g_api.ConnectLite(sProgramId, 'BillVoid', {
  2251. Guid: sDataId,
  2252. Bills: oCurData.Bills,
  2253. Bill: bill,
  2254. LogData: fnGetBillLogData(bill)
  2255. }, function (res) {
  2256. if (res.RESULT) {
  2257. layer.close(index);
  2258. showMsg(i18next.t("message.Void_Success"), 'success'); // ╠message.Void_Success⇒作廢成功╣
  2259. fnBindBillLists();
  2260. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2261. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2262. }
  2263. else {
  2264. bill.AuditVal = sAuditVal;
  2265. bill.VoidReason = '';
  2266. showMsg(i18next.t('message.Void_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  2267. }
  2268. }, function () {
  2269. bill.AuditVal = sAuditVal;
  2270. bill.VoidReason = '';
  2271. showMsg(i18next.t('message.Void_Failed'), 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  2272. });
  2273. }
  2274. else {
  2275. showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
  2276. }
  2277. }
  2278. });
  2279. },
  2280. /**
  2281. * 帳單刪除
  2282. * @param bill(object)帳單資料
  2283. * @return
  2284. * 起始作者John
  2285. * 起始日期2017/01/05
  2286. * 最新修改人John
  2287. * 最新修日期2017/01/05
  2288. */
  2289. fnBillDelete = function (bill) {
  2290. // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  2291. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  2292. var saNewBills = [];
  2293. $.each(oCurData.Bills, function (idx, _bill) {
  2294. if (_bill.BillNO !== bill.BillNO) {
  2295. saNewBills.push(_bill);
  2296. }
  2297. });
  2298. g_api.ConnectLite(sProgramId, 'BillDelete', {
  2299. Guid: sDataId,
  2300. Bills: saNewBills,
  2301. Bill: bill,
  2302. LogData: fnGetBillLogData(bill)
  2303. }, function (res) {
  2304. if (res.RESULT) {
  2305. showMsg(i18next.t("message.Delete_Success"), 'success'); // ╠message.Delete_Success⇒刪除成功╣
  2306. oCurData.Bills = saNewBills;
  2307. fnBindBillLists();
  2308. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2309. fnDeleteBillInfo(bill.BillNO);
  2310. }
  2311. else {
  2312. showMsg(i18next.t("message.Delete_Failed") + '<br>' + res.MSG, 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  2313. }
  2314. }, function () {
  2315. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  2316. });
  2317. layer.close(index);
  2318. });
  2319. },
  2320. /**
  2321. * 抽單
  2322. * @param bill(object)帳單資料
  2323. * @return
  2324. * 起始作者John
  2325. * 起始日期2017/01/05
  2326. * 最新修改人John
  2327. * 最新修日期2017/01/05
  2328. */
  2329. fnBillReEdit = function (bill) {
  2330. bill.AuditVal = '7';
  2331. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  2332. Params: {
  2333. otherexhibitiontg: {
  2334. values: { Bills: JSON.stringify(oCurData.Bills) },
  2335. keys: { Guid: sDataId }
  2336. }
  2337. }
  2338. }, function (res) {
  2339. if (res.d > 0) {
  2340. fnSetDisabled($('.bill-box-' + bill.BillNO), bill, oCurData);
  2341. showMsg(i18next.t("message.ReEdit_Success"), 'success'); // ╠message.ReEdit_Success⇒抽單成功╣
  2342. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2343. }
  2344. else {
  2345. bill.AuditVal = '1';
  2346. showMsg(i18next.t('message.ReEdit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  2347. }
  2348. }, function () {
  2349. bill.AuditVal = '1';
  2350. showMsg(i18next.t('message.ReEdit_Failed'), 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  2351. });
  2352. },
  2353. /**
  2354. * 取消抽單
  2355. * @param bill(object)帳單資料
  2356. * @return
  2357. * 起始作者John
  2358. * 起始日期2017/01/05
  2359. * 最新修改人John
  2360. * 最新修日期2017/01/05
  2361. */
  2362. fnBillCancelReEdit = function (bill) {
  2363. bill.AuditVal = '1';
  2364. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  2365. Params: {
  2366. otherexhibitiontg: {
  2367. values: { Bills: JSON.stringify(oCurData.Bills) },
  2368. keys: { Guid: sDataId }
  2369. }
  2370. }
  2371. }, function (res) {
  2372. if (res.d > 0) {
  2373. fnSetDisabled($('.bill-box-' + bill.BillNO), bill, oCurData);
  2374. showMsg(i18next.t("message.CancelReEdit_Success"), 'success'); // ╠message.CancelReEdit_Success⇒取消抽單成功╣
  2375. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2376. }
  2377. else {
  2378. bill.AuditVal = '7';
  2379. showMsg(i18next.t('message.CancelReEdit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CancelReEdit_Failed⇒取消抽單失敗╣
  2380. }
  2381. }, function () {
  2382. bill.AuditVal = '7';
  2383. showMsg(i18next.t('message.CancelReEdit_Failed'), 'error'); // ╠message.CancelReEdit_Failed⇒取消抽單失敗╣
  2384. });
  2385. },
  2386. /**
  2387. * 綁定帳單
  2388. * @param
  2389. * @return
  2390. * 起始作者John
  2391. * 起始日期2017/01/05
  2392. * 最新修改人John
  2393. * 最新修日期2017/01/05
  2394. */
  2395. fnBindBillLists = function () {
  2396. var oBillsBox = $('#accordion');
  2397. if (oCurData.Bills.length > 0) {//實際帳單
  2398. oCurData.Bills = Enumerable.From(oCurData.Bills).OrderBy("x=>x.BillCreateDate").ToArray();
  2399. $.each(oCurData.Bills, function (idx, bill) {
  2400. if ($('.bill-box-' + bill.BillNO).length === 0) {
  2401. bill.Index = idx + 1;
  2402. bill.Advance = bill.Advance || 0;
  2403. var sHtml = $("#temp_billbox").render([bill]);
  2404. oBillsBox.append(sHtml);
  2405. var oBillBox = $('.bill-box-' + bill.BillNO);
  2406. $('.bills-box').show();
  2407. oBillBox.find('[data-id="Currency"]').html(sAccountingCurrencyOptionsHtml).on('change', function () {
  2408. var sCurrencyId = this.value,
  2409. oCurrency = Enumerable.From(saAccountingCurrency).Where(function (e) { return e.ArgumentID == sCurrencyId; }).FirstOrDefault();
  2410. if (oCurrency === undefined)
  2411. oCurrency = {};
  2412. let TitleAttr = '';
  2413. let MainCurrency = fnCheckMainOrForeignCurrency(sCurrencyId);
  2414. if (MainCurrency) {
  2415. TitleAttr = 'common.MainCurrencyNontaxedAmountV2';
  2416. oBillBox.find('.BillMainCurrencyAdd [data-id="plusfeeitem"]').show();
  2417. oBillBox.find('.BillForeignCurrency').hide();
  2418. }
  2419. else {
  2420. TitleAttr = 'common.ForeignCurrencyNontaxedAmountV2';
  2421. oBillBox.find('.BillMainCurrencyAdd [data-id="plusfeeitem"]').hide();
  2422. oBillBox.find('.BillForeignCurrency').show();
  2423. }
  2424. bill.Currency = sCurrencyId;
  2425. bill.ExchangeRate = oCurrency.Correlation || '';
  2426. oBillBox.find('[data-id="ExchangeRate"]').val(oCurrency.Correlation || '');
  2427. oBillBox.find('.BillAmountTiltle').attr('data-i18n', TitleAttr).text(i18next.t(TitleAttr));
  2428. let ExchangeRate = oBillBox.find('[data-id="ExchangeRate"]').val();
  2429. fnCalcuBillsFee(oBillBox, '.BillForeignCurrency', '.BillMainCurrency', sCurrencyId, ExchangeRate);
  2430. bRequestStorage = true;
  2431. }).val(bill.Currency);
  2432. fnBindFeeItem($('[data-id=bill_fees_' + bill.BillNO + ']'), oCurData, bill);
  2433. //觸發點擊項目 產生資料內容
  2434. oBillBox.click(function () {
  2435. if ($(this).attr('aria-expanded') === 'false') {
  2436. oBillBox.find('[data-id="Payer"]').html(sCustomersNotAuditOptionsHtml).val(bill.Payer);
  2437. setTimeout(function () {
  2438. oBillBox.find('[data-id="Payer"]').select2({ width: '250px' });
  2439. }, 1000);
  2440. oBillBox.find('[data-id="Currency"]').change(); //花費2秒
  2441. //oBillBox.find('[data-id="Currency"] option:first').remove();
  2442. if (bill.Payer) {
  2443. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === bill.Payer; }),
  2444. saContactors = [];
  2445. if (oCur.Count() > 0) {
  2446. saContactors = JSON.parse(oCur.First().Contactors || '[]');
  2447. }
  2448. oBillBox.find('[data-id="Contactor"]').html(createOptions(saContactors, 'guid', 'FullName')).val(bill.Contactor).off('change').on('change', function (e) {
  2449. var sContactor = this.value;
  2450. if (sContactor) {
  2451. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  2452. Type: '',
  2453. Params: {
  2454. customers: {
  2455. guid: bill.Payer
  2456. },
  2457. }
  2458. }, function (res) {
  2459. var oRes = $.parseJSON(res.d);
  2460. if (oRes.Contactors) {
  2461. oRes.Contactors = $.parseJSON(oRes.Contactors || '[]');
  2462. var oContactor = Enumerable.From(oRes.Contactors).Where(function (e) { return e.guid === sContactor; }).First();
  2463. bill.ContactorName = oContactor.FullName;
  2464. bill.Contactor = sContactor;
  2465. }
  2466. });
  2467. }
  2468. else {
  2469. bill.ContactorName = '';
  2470. bill.Contactor = '';
  2471. }
  2472. bRequestStorage = true;
  2473. });;
  2474. oBillBox.find('[data-id="Contactor"]').select2();
  2475. }
  2476. else {
  2477. oBillBox.find('[data-id="Contactor"]').html(createOptions([]));
  2478. }
  2479. oBillBox.find('[data-id="Telephone"]').val(bill.Telephone);
  2480. oBillBox.find('[data-id="ExchangeRate"]').val(bill.ExchangeRate || 1.00);
  2481. oBillBox.find('[data-id="Number"]').val(bill.Number).on('keyup blur', function (e) {
  2482. this.value = this.value.replace(/\D/g, '');
  2483. });
  2484. oBillBox.find('[data-id="Unit"]').val(bill.Unit);
  2485. moneyInput(oBillBox.find('[data-id="Advance"]'), 2);
  2486. moneyInput(oBillBox.find('[data-id="mAdvance"]'), 0);
  2487. oBillBox.find('[data-id="Advance"]').val(bill.Advance);
  2488. SetBillPrepayEvent(oBillBox, bill);
  2489. oBillBox.find('[data-id="Weight"]').val(bill.Weight).on('keyup blur', function (e) {
  2490. keyIntp(e, this, 3);
  2491. });
  2492. oBillBox.find('[data-id="Volume"]').val(bill.Volume).on('keyup blur', function (e) {
  2493. keyIntp(e, this, 2);
  2494. });
  2495. if (bill.ReceiptNumber) {//如果收據號碼已經產生就移除該按鈕
  2496. oBillBox.find('[data-id="ReceiptNumber"]').val(bill.ReceiptNumber);
  2497. oBillBox.find('[data-id="ReceiptDate"]').val(bill.ReceiptDate);
  2498. oBillBox.find('[data-id="createreceiptnumber"]').remove();
  2499. }
  2500. oBillBox.find('[data-id="Memo"]').val(bill.Memo);
  2501. oBillBox.find('[data-id="InvoiceNumber"]').val(bill.InvoiceNumber).on('blur', function (e) {
  2502. var that = this,
  2503. sInvoiceNumber = that.value;
  2504. if (sInvoiceNumber) {
  2505. return g_api.ConnectLite(Service.opm, ComFn.CheckInvoiceNum, {
  2506. InvoiceNumber: sInvoiceNumber
  2507. }, function (res) {
  2508. if (res.RESULT) {
  2509. var bExsit = res.DATA.rel;
  2510. if (bExsit) {
  2511. // ╠message.InvoiceNumberRepeat⇒發票號碼重複,請重新輸入!╣ ╠message.Tips⇒提示╣
  2512. layer.alert(i18next.t("message.InvoiceNumberRepeat"), { icon: 0, title: i18next.t("common.Tips") }, function (index) {
  2513. $(that).val('');
  2514. layer.close(index);
  2515. });
  2516. }
  2517. }
  2518. });
  2519. }
  2520. });
  2521. oBillBox.find('[data-id="InvoiceDate"]').val(bill.InvoiceDate);
  2522. oBillBox.find('.date-picker').datepicker({
  2523. changeYear: true,
  2524. changeMonth: true,
  2525. altFormat: 'yyyy/MM/dd'
  2526. });
  2527. oBillBox.find('[data-id="Payer"]').on('change', function () {
  2528. var sCustomerId = this.value,
  2529. saContactors = [];
  2530. if (sCustomerId) {
  2531. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === sCustomerId; }).First();
  2532. saContactors = JSON.parse(oCur.Contactors || '[]');
  2533. //bill.CustomerCode = oCur.CustomerNO;
  2534. oBillBox.find('[data-id="Contactor"]').html(createOptions(saContactors, 'guid', 'FullName')).off('change').on('change', function () {
  2535. var sContactor = this.value;
  2536. if (sContactor) {
  2537. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  2538. Type: '',
  2539. Params: {
  2540. customers: {
  2541. guid: sCustomerId
  2542. },
  2543. }
  2544. }, function (res) {
  2545. var oRes = $.parseJSON(res.d);
  2546. if (oRes.Contactors) {
  2547. oRes.Contactors = $.parseJSON(oRes.Contactors || '[]');
  2548. var oContactor = Enumerable.From(oRes.Contactors).Where(function (e) { return e.guid === sContactor; }).First();
  2549. bill.ContactorName = oContactor.FullName;
  2550. bill.Contactor = sContactor;
  2551. }
  2552. });
  2553. }
  2554. else {
  2555. bill.ContactorName = '';
  2556. bill.Contactor = '';
  2557. }
  2558. bRequestStorage = true;
  2559. });
  2560. oBillBox.find('[data-id="Telephone"]').val(oCur.Telephone);
  2561. oBillBox.find('[data-id="Contactor"]').select2();
  2562. }
  2563. else {
  2564. oBillBox.find('[data-id="Contactor"]').html(createOptions([]));
  2565. oBillBox.find('[data-id="Telephone"]').val('');
  2566. }
  2567. oBillBox.find('[data-id="Telephone"]').change();
  2568. bRequestStorage = true;
  2569. });
  2570. oBillBox.find('.bill-print').each(function () {
  2571. var that = this,
  2572. sTypeId = $(that).attr('data-action'),
  2573. oToolBar = null;
  2574. switch (sTypeId) {
  2575. case 'Print_Bill':
  2576. oToolBar = oPrintMenu.InvoicePrintMenu.tmpl
  2577. break;
  2578. case 'Print_Receipt':
  2579. oToolBar = oPrintMenu.ReceiptPrintMenu.tmpl
  2580. break;
  2581. case 'Download_Bill':
  2582. oToolBar = oPrintMenu.InvoiceDownLoadMenu.tmpl
  2583. break;
  2584. case 'Download_Receipt':
  2585. oToolBar = oPrintMenu.ReceiptDownLoadMenu.tmpl
  2586. break;
  2587. }
  2588. $(that).toolbar({
  2589. content: oToolBar,
  2590. position: 'left',
  2591. adjustment: 10,
  2592. style: 'yida',
  2593. }).on('toolbarItemClick',
  2594. function (e, ele) {
  2595. fnPrint($(ele).attr('data-id'), sTypeId, bill);
  2596. }
  2597. );
  2598. });
  2599. oBillBox.find('.btn-custom').not('disabled').off('click').on('click', function () {
  2600. var that = this,
  2601. sId = $(that).attr('data-id');
  2602. switch (sId) {
  2603. case 'plusfeeitem'://新增費用項目
  2604. fnPlusFeeItem(that, oCurData, null, bill.Currency);
  2605. break;
  2606. case 'createreceiptnumber'://產生收據號碼
  2607. fnGetReceiptNumber(that, bill).done(function () {
  2608. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  2609. Params: {
  2610. otherexhibitiontg: {
  2611. values: { Bills: JSON.stringify(oCurData.Bills) },
  2612. keys: { Guid: sDataId }
  2613. }
  2614. }
  2615. });
  2616. });
  2617. break;
  2618. case 'bill_submitaudit'://提交審核
  2619. fnBillToAudit(bill, that);
  2620. break;
  2621. case 'bill_audit'://主管審核
  2622. fnBillAudit(bill);
  2623. break;
  2624. case 'bill_cancelaudit'://取消審核
  2625. fnBillCancelAudit(bill);
  2626. break;
  2627. case 'bill_post'://過帳
  2628. fnBillPost(bill);
  2629. break;
  2630. case 'bill_cancelpost'://取消過帳
  2631. fnBillCancelPost(bill);
  2632. break;
  2633. case 'bill_writeoff'://銷帳
  2634. fnBillWriteOff(bill);
  2635. break;
  2636. case 'bill_canceloff'://銷帳
  2637. fnBillCancelWriteOff(bill);
  2638. break;
  2639. case 'bill_void'://作廢
  2640. fnBillVoid(bill);
  2641. break;
  2642. case 'bill_delete'://刪除
  2643. fnBillDelete(bill);
  2644. break;
  2645. case 'bill_reedit'://抽單
  2646. fnBillReEdit(bill);
  2647. break;
  2648. case 'bill_cancelreedit'://取消抽單
  2649. fnBillCancelReEdit(bill);
  2650. break;
  2651. }
  2652. });
  2653. }
  2654. });
  2655. }
  2656. });
  2657. }
  2658. //fnSetPermissions();//設置權限
  2659. $('#tab3').css({ 'padding-top': 40 });
  2660. $('#topshow_box').show();//當審通過之後才顯示總金額
  2661. transLang(oBillsBox);
  2662. },
  2663. /**
  2664. * 設置操作權限
  2665. * @param
  2666. * @return
  2667. * 起始作者John
  2668. * 起始日期2017/01/05
  2669. * 最新修改人John
  2670. * 最新修日期2017/01/05
  2671. */
  2672. fnSetPermissions = function () {
  2673. if (parent.UserInfo.roles.indexOf('Admin') === -1) {
  2674. if ((parent.UserInfo.roles.indexOf('CDD') > -1 && (oCurData.ResponsiblePerson === parent.UserID || oCurData.DepartmentID === parent.UserInfo.DepartmentID)) || parent.UserInfo.roles.indexOf('CDD') === -1 || parent.SysSet.CDDProUsers.indexOf(parent.UserID) > -1) {//報關作業
  2675. $('[href="#tab3"],[href="#tab4"]').parent().show();
  2676. }
  2677. else {
  2678. $('[href="#tab3"],[href="#tab4"]').parent().hide();
  2679. }
  2680. if (!(parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser)) {//其他
  2681. $('#tab3,#tab4').find(':input,button,textarea').not('.alreadyaudit,.cancelaudi,.writeoff,.bills-print,.estimated_addreturnbills,.prepay,.mprepay,.billvoid,.canceloff,.cancelpost').attr('disabled', 'disabled');
  2682. $('#tab3,#tab4').find('.icon-p').addClass('disabled');
  2683. }
  2684. if (parent.UserInfo.roles.indexOf('Business') > -1) {//業務
  2685. $('#tab4,#tab6').find(':input,button,textarea').attr('disabled', 'disabled');
  2686. $('#tab4,#tab6').find('.icon-p').addClass('disabled');
  2687. }
  2688. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  2689. $('#tab1,#tab3,#tab4').find(':input,button,textarea').not('.alreadyaudit,.cancelaudi,.writeoff,.bills-print,.jsgrid-button,.estimated_addreturnbills,.prepay,.mprepay,.billvoid,.canceloff,.cancelpost,.importfeeitem,.plusfeeitem').attr('disabled', 'disabled');
  2690. $('#tab3,#tab4').find('.icon-p').addClass('disabled');
  2691. }
  2692. }
  2693. },
  2694. /**------------------------帳單部分---------------------------End*/
  2695. /**
  2696. * Grid初始化
  2697. * @param
  2698. * @return
  2699. * 起始作者John
  2700. * 起始日期2017/01/05
  2701. * 最新修改人John
  2702. * 最新修日期2017/01/05
  2703. */
  2704. fnGridInit = function () {
  2705. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 120;
  2706. $("#jsGrid").jsGrid({
  2707. width: "100%",
  2708. height: "auto",
  2709. autoload: true,
  2710. filtering: true,
  2711. pageLoading: true,
  2712. inserting: true,
  2713. editing: true,
  2714. sorting: false,
  2715. paging: false,
  2716. pageIndex: 1,
  2717. pageSize: parent.SysSet.GridRecords || 10,
  2718. invalidMessage: i18next.t('common.InvalidData'),// ╠common.InvalidData⇒输入的数据无效!╣
  2719. confirmDeleting: true,
  2720. deleteConfirm: i18next.t('message.ConfirmToDelete'),// ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣
  2721. pagePrevText: "<",
  2722. pageNextText: ">",
  2723. pageFirstText: "<<",
  2724. pageLastText: ">>",
  2725. rowClass: function (item) {
  2726. if (item.VoidContent) {
  2727. return 'data-void';
  2728. }
  2729. },
  2730. fields: [
  2731. {
  2732. name: "RowIndex", title: 'common.RowNumber', width: 50, align: "center", sorting: false,
  2733. itemTemplate: function (val, item) {
  2734. var sVal = val || '';
  2735. if (item.VoidContent) {// ╠common.Toolbar_Void⇒作廢╣
  2736. sVal = '<span class="tooltips" title="' + i18next.t('common.Toolbar_Void') + ':' + item.VoidContent + '">' + sVal + '</span>';
  2737. }
  2738. return sVal;
  2739. }
  2740. },
  2741. {
  2742. name: "SupplierName", title: 'common.SupplierName', width: 150, filtering: true, inserting: true, editing: false, validate: { validator: 'required', message: i18next.t('common.Supplier_required') },
  2743. insertTemplate: function () {
  2744. var oSelect = $('<select/>', {
  2745. change: function () {
  2746. var sCustomerId = this.value;
  2747. if (sCustomerId) {
  2748. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === sCustomerId; }).First();
  2749. oAddItem.guid = guid();
  2750. oAddItem.SupplierID = oCur.id;
  2751. oAddItem.CustomerNO = oCur.CusNO;
  2752. oAddItem.UniCode = oCur.UniCode;
  2753. oAddItem.SupplierName = oCur.textcn;
  2754. oAddItem.SupplierEName = oCur.texteg;
  2755. oAddItem.Telephone = oCur.Telephone;
  2756. oAddItem.Email = oCur.Email;
  2757. oAddItem.ContactorName = '';
  2758. oAddItem.CreateUser = parent.UserID;
  2759. oAddItem.CreateDate = new Date().formate("yyyy/MM/dd HH:mm:ss");
  2760. oSelect.parent().next().find(':input').val(oAddItem.SupplierEName);
  2761. var saContactors = JSON.parse(oCur.Contactors || '[]');
  2762. oSelect.parent().next().next().find('select').html(createOptions(saContactors, 'guid', 'FullName')).on('change', function () {
  2763. var sContactor = this.value;
  2764. if (sContactor) {
  2765. var oContactor = Enumerable.From(saContactors).Where(function (e) { return e.guid === sContactor; }).First();
  2766. $(this).parent().next().find(':input').val(oContactor.TEL1);
  2767. $(this).parent().next().next().find(':input').val(oContactor.Email);
  2768. oAddItem.Contactor = sContactor;
  2769. oAddItem.ContactorName = oContactor.FullName;
  2770. oAddItem.Telephone = oContactor.TEL1;
  2771. oAddItem.Email = oContactor.Email;
  2772. }
  2773. else {
  2774. oAddItem.Contactor = '';
  2775. oAddItem.ContactorName = '';
  2776. oAddItem.Telephone = '';
  2777. oAddItem.Email = '';
  2778. $(this).parent().next().find(':input').val('');
  2779. $(this).parent().next().next().find(':input').val('');
  2780. }
  2781. });
  2782. oSelect.parent().next().next().next().find(':input').val(oCur.Telephone);
  2783. oSelect.parent().next().next().next().next().find(':input').val(oCur.Email);
  2784. }
  2785. else {
  2786. oSelect.parent().next().next().find('select').html(createOptions([]));
  2787. oAddItem = {};
  2788. }
  2789. bRequestStorage = true;
  2790. }
  2791. });
  2792. setTimeout(function () {
  2793. oSelect.html(sCustomersNotAuditOptionsHtml).select2({ width: '180px' });
  2794. }, 1000);
  2795. return this.insertControl = oSelect;
  2796. },
  2797. insertValue: function () {
  2798. return this.insertControl.val();
  2799. },
  2800. filterTemplate: function () {
  2801. var oSelect = $('<select/>', {
  2802. change: function () {
  2803. var sCustomerId = this.value;
  2804. if (sCustomerId) {
  2805. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === sCustomerId; }).First();
  2806. var saContactors = JSON.parse(oCur.Contactors || '[]');
  2807. oSelect.parent().next().next().find('select').html(createOptions(saContactors, 'guid', 'FullName'))
  2808. }
  2809. else {
  2810. oSelect.parent().next().next().find('select').html(createOptions([]));
  2811. }
  2812. bRequestStorage = true;
  2813. }
  2814. });
  2815. setTimeout(function () {
  2816. oSelect.html(sCustomersNotAuditOptionsHtml).select2({ width: '180px' });
  2817. }, 1000);
  2818. return this.filterControl = oSelect;
  2819. },
  2820. filterValue: function () {
  2821. return this.filterControl.val() === '' ? '' : this.filterControl.find("option:selected").text();
  2822. }
  2823. },
  2824. {
  2825. name: "SupplierEName", title: 'common.SupplierEName', width: 150, filtering: true, inserting: true, editing: false,
  2826. insertTemplate: function () {
  2827. return this.insertControl = $('<input/>', { type: 'text', class: 'form-control w100p', disabled: true });
  2828. }, insertValue: function () {
  2829. return this.insertControl.val();
  2830. }, filterTemplate: function () {
  2831. return this.filterControl = $('<input/>', { type: 'text' });
  2832. }, filterValue: function () {
  2833. return this.filterControl.val();
  2834. }
  2835. },
  2836. {
  2837. name: "Contactor", title: 'common.Contactor', type: "text", filtering: true, width: 100,
  2838. itemTemplate: function (val, item) {
  2839. return item.ContactorName;
  2840. },
  2841. insertTemplate: function () {
  2842. return this.insertControl = $('<select/>', {
  2843. html: createOptions([])
  2844. });
  2845. }, insertValue: function () {
  2846. return this.insertControl.val();
  2847. },
  2848. editTemplate: function (val, item) {
  2849. var saContactors = [];
  2850. if (item.SupplierID) {
  2851. var saCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === item.SupplierID; }).ToArray();
  2852. if (saCur.length > 0) {
  2853. saContactors = JSON.parse(saCur[0].Contactors || '[]');
  2854. }
  2855. }
  2856. return this.editControl = $('<select/>', {
  2857. html: createOptions(saContactors, 'guid', 'FullName'),
  2858. change: function () {
  2859. var sContactor = this.value;
  2860. if (sContactor) {
  2861. var oContactor = Enumerable.From(saContactors).Where(function (e) { return e.guid === sContactor; }).First();
  2862. $(this).parent().next().find(':input').val(oContactor.TEL1);
  2863. $(this).parent().next().next().find(':input').val(oContactor.Email);
  2864. item.Contactor = sContactor;
  2865. item.ContactorName = oContactor.FullName;
  2866. item.Telephone = oContactor.TEL1;
  2867. item.Email = oContactor.Email;
  2868. }
  2869. else {
  2870. item.Contactor = '';
  2871. item.ContactorName = '';
  2872. item.Telephone = '';
  2873. item.Email = '';
  2874. $(this).parent().next().find(':input').val('');
  2875. $(this).parent().next().next().find(':input').val('');
  2876. }
  2877. bRequestStorage = true;
  2878. }
  2879. }).val(val);
  2880. },
  2881. editValue: function () {
  2882. return this.editControl.val();
  2883. }
  2884. },
  2885. { name: "Telephone", title: 'common.Telephone', type: "text", filtering: true, width: 100 },
  2886. { name: "Email", title: 'common.Email', type: "text", filtering: true, width: 130 },
  2887. {
  2888. title: 'common.Other', width: 200,
  2889. itemTemplate: function (val, item) {
  2890. var oDom = [],
  2891. oVoid = $('<a/>', {// ╠common.Toolbar_OpenVoid⇒啟用╣ ╠common.Toolbar_Void⇒作廢╣
  2892. html: item.VoidContent !== undefined ? i18next.t('common.Toolbar_OpenVoid') : i18next.t('common.Toolbar_Void'),
  2893. class: 'a-url',
  2894. click: function () {
  2895. var that = this;
  2896. if (item.VoidContent) {
  2897. delete item.VoidContent;
  2898. $(that).text(i18next.t('common.Toolbar_Void'));// ╠common.Toolbar_Void⇒作廢╣
  2899. $(that).parents('tr').removeClass('data-void').removeAttr('title');
  2900. }
  2901. else {
  2902. layer.open({
  2903. type: 1,
  2904. title: i18next.t('common.Toolbar_Void'),// ╠common.Toolbar_Void⇒作廢╣
  2905. shade: 0.75,
  2906. maxmin: true, //开启最大化最小化按钮
  2907. area: ['500px', '250px'],
  2908. content: '<div class="pop-box">\
  2909. <textarea name="VoidContent" id="VoidContent" style="min-width:300px;" class="form-control" rows="5" cols="20"></textarea>\
  2910. </div>',
  2911. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  2912. success: function (layero, index) {
  2913. },
  2914. yes: function (index, layero) {
  2915. var sVoidContent = $('#VoidContent').val();
  2916. item.VoidContent = sVoidContent;
  2917. if (!sVoidContent) {
  2918. showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
  2919. return false;
  2920. }
  2921. $(that).text(i18next.t('common.Toolbar_OpenVoid'));// ╠common.Toolbar_OpenVoid⇒啟用╣
  2922. $(that).parents('tr').addClass('data-void').attr('title', i18next.t('common.Toolbar_Void') + ':' + sVoidContent);// ╠common.Toolbar_Void⇒作廢╣
  2923. layer.close(index);
  2924. }
  2925. });
  2926. }
  2927. return false;
  2928. }
  2929. }),
  2930. oCreateBill = $('<a/>', {
  2931. html: i18next.t('common.CreateBill'),// ╠common.CreateBill⇒建立帳單╣
  2932. class: 'a-url',
  2933. click: function () {
  2934. var that = this;
  2935. fnPushBill(item, oCurData, item.guid).done(function () {
  2936. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  2937. Params: {
  2938. otherexhibitiontg: {
  2939. values: {
  2940. Bills: JSON.stringify(oCurData.Bills),
  2941. Exhibitors: JSON.stringify(saGridData)
  2942. },
  2943. keys: { Guid: sDataId }
  2944. }
  2945. }
  2946. }, function (res) {
  2947. if (res.d > 0) {
  2948. fnBindBillLists();
  2949. $(that).remove();
  2950. showMsg(i18next.t("common.Create_Success"), 'success'); // ╠common.Create_Success⇒創建成功╣
  2951. }
  2952. else {
  2953. showMsg(i18next.t("common.Create_Failed"), 'error'); // ╠common.Create_Failed⇒創建失敗╣
  2954. }
  2955. });
  2956. });
  2957. return false;
  2958. }
  2959. });
  2960. if ((item.VoidContent && parent.UserInfo.IsManager) || !item.VoidContent) {
  2961. oDom.push(oVoid);
  2962. }
  2963. if (oCurData.Quote.AuditVal === '2' && !item.VoidContent) {
  2964. var iExsitVoid = Enumerable.From(oCurData.Bills).Where(function (e) { return (e.parentid === item.guid && e.VoidReason); }).Count();
  2965. var iExsit = Enumerable.From(oCurData.Bills).Where(function (e) { return e.parentid === item.guid; }).Count();
  2966. if (iExsitVoid > 0 || iExsit === 0) {
  2967. oDom.push(oCreateBill);
  2968. }
  2969. }
  2970. return $('<div>', { 'style': 'width:100%;text-align: center;' }).append(oDom);
  2971. }
  2972. },
  2973. { type: "control" }
  2974. ],
  2975. controller: {
  2976. loadData: function (args) {
  2977. if (args.Contactor !== undefined) {
  2978. var filters = $.grep(saGridData, function (client) {
  2979. return (!args.Contactor || client.ContactorName.indexOf(args.Contactor) > -1)
  2980. && (!args.Telephone || client.Telephone.indexOf(args.Telephone) > -1)
  2981. && (!args.Email || client.Email.indexOf(args.Email) > -1)
  2982. && (!args.SupplierEName || client.SupplierEName.indexOf(args.SupplierEName) > -1)
  2983. && (!args.SupplierName || args.SupplierName.indexOf(client.SupplierName) > -1);
  2984. });
  2985. if (filters.length > 0) {
  2986. filters = Enumerable.From(filters).OrderBy("x=>x.CreateDate").ToArray();
  2987. }
  2988. $.each(filters, function (idx, filter) {
  2989. filter.RowIndex = idx + 1;
  2990. });
  2991. return {
  2992. data: filters,
  2993. itemsCount: filters.length //data.length
  2994. };
  2995. }
  2996. else {
  2997. if (saGridData.length > 0) {
  2998. saGridData = Enumerable.From(saGridData).OrderBy("x=>x.CreateDate").ToArray();
  2999. }
  3000. $.each(saGridData, function (idx, filter) {
  3001. filter.RowIndex = idx + 1;
  3002. });
  3003. return {
  3004. data: saGridData,
  3005. itemsCount: saGridData.length //data.length
  3006. };
  3007. }
  3008. },
  3009. insertItem: function (args) {
  3010. oAddItem.Contactor = args.Contactor;
  3011. oAddItem.Telephone = args.Telephone;
  3012. oAddItem.Email = args.Email;
  3013. saGridData.push(oAddItem);
  3014. oAddItem = {};
  3015. if (sAction === 'Add') {
  3016. showMsg(i18next.t("message.SaveCusFirst"));// ╠message.SaveCusFirst⇒請先儲存再新增廠商╣
  3017. saGridData = [];
  3018. return $.Deferred().reject().promise();
  3019. }
  3020. else {
  3021. bRequestStorage = true;
  3022. }
  3023. },
  3024. updateItem: function (args) {
  3025. $.each(saGridData, function (e, item) {
  3026. if (item.guid === args.guid) {
  3027. item = args;
  3028. bRequestStorage = true;
  3029. return false;
  3030. }
  3031. });
  3032. },
  3033. deleteItem: function (args) {
  3034. if (args.BillNO) {
  3035. showMsg(i18next.t("message.NotToDelete_Supplier"));// ╠message.NotToDelete_Supplier⇒該筆廠商已經產生帳單或寄送過郵件,不可以刪除!╣
  3036. return $.Deferred().reject().promise();
  3037. }
  3038. else {
  3039. var saNewList = [];
  3040. $.each(saGridData, function (idx, item) {
  3041. if (item.guid !== args.guid) {
  3042. saNewList.push(item);
  3043. }
  3044. });
  3045. saGridData = saNewList;
  3046. bRequestStorage = true;
  3047. }
  3048. }
  3049. },
  3050. onInit: function (args) {
  3051. oGrid = args.grid;
  3052. setTimeout(function () {
  3053. $('.tooltips').each(function () {
  3054. $(this).parents('tr').attr('title', this.title);
  3055. });
  3056. }, 1000);
  3057. }
  3058. });
  3059. },
  3060. /**
  3061. * ToolBar 按鈕事件 function
  3062. * @param {Object}inst 按鈕物件對象
  3063. * @param {Object} e 事件對象
  3064. * @return
  3065. * 起始作者John
  3066. * 起始日期2016/05/21
  3067. * 最新修改人John
  3068. * 最新修日期2016/11/03
  3069. */
  3070. fnButtonHandler = function (inst, e) {
  3071. var sId = inst.id;
  3072. switch (sId) {
  3073. case "Toolbar_Qry":
  3074. break;
  3075. case "Toolbar_Save":
  3076. if (!$("#form_main").valid()) {
  3077. oValidator.focusInvalid();
  3078. return false;
  3079. }
  3080. if (sAction === 'Add') {
  3081. fnAdd('add');
  3082. }
  3083. else {
  3084. fnUpd();
  3085. }
  3086. break;
  3087. case "Toolbar_ReAdd":
  3088. if (!$("#form_main").valid()) {
  3089. oValidator.focusInvalid();
  3090. return false;
  3091. }
  3092. fnAdd('readd');
  3093. break;
  3094. case "Toolbar_Clear":
  3095. clearPageVal();
  3096. break;
  3097. case "Toolbar_Leave":
  3098. pageLeave();
  3099. break;
  3100. case "Toolbar_Add":
  3101. break;
  3102. case "Toolbar_Upd":
  3103. break;
  3104. case "Toolbar_Copy":
  3105. break;
  3106. case "Toolbar_Void":
  3107. if (fnCheckBillEffective(oCurData.Bills)) {
  3108. showMsg(i18next.t("message.OpmNotToVoid")); // ╠message.OpmNotToVoid⇒已建立有效的賬單,暫時不可作廢╣
  3109. return false;
  3110. }
  3111. fnVoid();
  3112. break;
  3113. case "Toolbar_OpenVoid":
  3114. // ╠message.ToOpenVoid⇒確定要啟用該筆資料嗎?╣ ╠common.Tips⇒提示╣
  3115. layer.confirm(i18next.t('message.ToOpenVoid'), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  3116. fnOpenVoid();
  3117. layer.close(index);
  3118. });
  3119. break;
  3120. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  3121. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  3122. fnDel();
  3123. layer.close(index);
  3124. });
  3125. break;
  3126. default:
  3127. alert("No handle '" + sId + "'");
  3128. break;
  3129. }
  3130. },
  3131. /**
  3132. * 初始化 function
  3133. * @param
  3134. * @return
  3135. * 起始作者John
  3136. * 起始日期2016/05/21
  3137. * 最新修改人John
  3138. * 最新修日期2016/11/03
  3139. */
  3140. init = function () {
  3141. var saCusBtns = [];
  3142. var myHelpers = {
  3143. setSupplierName: function (val1, val2) {
  3144. return !val1 ? val2 : val1;
  3145. },
  3146. dtformate: function (val) {
  3147. return newDate(val);
  3148. },
  3149. setStatus: function (status) {
  3150. return sStatus;
  3151. }
  3152. };
  3153. $.views.helpers(myHelpers);
  3154. commonInit({
  3155. PrgId: sProgramId,
  3156. ButtonHandler: fnButtonHandler,
  3157. Buttons: saCusBtns,
  3158. GoTop: true,
  3159. tabClick: function (el) {
  3160. switch (el.id) {
  3161. case 'litab2':
  3162. if (!$(el).data('action')) {
  3163. if (!sAppointNO) {
  3164. fnGridInit();
  3165. oGrid.loadData();
  3166. }
  3167. $(el).data('action', true);
  3168. }
  3169. break;
  3170. case 'litab3':
  3171. case 'litab4':
  3172. if (!$(el).data('action')) {
  3173. fnBindFinancial();
  3174. $('#litab3').data('action', true);
  3175. $('#litab4').data('action', true);
  3176. fnOpenAccountingArea($('div .OnlyForAccounting'), parent.UserInfo.roles);
  3177. }
  3178. break;
  3179. }
  3180. }
  3181. });
  3182. $('#Volume').on('blur', function () {
  3183. var sVal = this.value;
  3184. $('#VolumeWeight').val((Math.floor(sVal * 100) / 100 * 167).toFloat(2));
  3185. });
  3186. //加載報關類別,加載報價頁簽,加載運輸方式, 加載機場, 加載貨棧場, 加載倉庫
  3187. $.whenArray([
  3188. fnGet(),
  3189. fnSetCustomersDrop(),
  3190. fnGetOfficeTempls({
  3191. TemplID: parent.SysSet.InvoiceDownLoadMenu + parent.SysSet.InvoicePrintMenu + parent.SysSet.ReceiptDownLoadMenu + parent.SysSet.ReceiptPrintMenu,
  3192. CallBack: function (data) {
  3193. oPrintMenu.InvoiceDownLoadMenu = { tmpl: $('<div data-id="InvoiceDownLoadMenu">') };
  3194. oPrintMenu.InvoicePrintMenu = { tmpl: $('<div data-id="InvoicePrintMenu">') };
  3195. oPrintMenu.ReceiptDownLoadMenu = { tmpl: $('<div data-id="ReceiptDownLoadMenu">') };
  3196. oPrintMenu.ReceiptPrintMenu = { tmpl: $('<div data-id="ReceiptPrintMenu">') };
  3197. $.each(data, function (idx, item) {
  3198. var sType = '';
  3199. if (parent.SysSet.InvoiceDownLoadMenu.indexOf(item.TemplID) > -1) {
  3200. sType = 'InvoiceDownLoadMenu';
  3201. }
  3202. else if (parent.SysSet.InvoicePrintMenu.indexOf(item.TemplID) > -1) {
  3203. sType = 'InvoicePrintMenu';
  3204. }
  3205. else if (parent.SysSet.ReceiptDownLoadMenu.indexOf(item.TemplID) > -1) {
  3206. sType = 'ReceiptDownLoadMenu';
  3207. }
  3208. else if (parent.SysSet.ReceiptPrintMenu.indexOf(item.TemplID) > -1) {
  3209. sType = 'ReceiptPrintMenu';
  3210. }
  3211. oPrintMenu[sType].tmpl.append('<a href="#" class="print-item" data-id="' + item.TemplID + '">' + item.TemplName + '</a>');
  3212. });
  3213. }
  3214. }),
  3215. fnSetEpoDrop({
  3216. Select: $('#ExhibitionNO'),
  3217. Select2: true
  3218. }),
  3219. fnSetUserDrop([
  3220. {
  3221. Select: $('#ResponsiblePerson'),
  3222. ShowId: true,
  3223. Select2: true,
  3224. Action: sAction,
  3225. ServiceCode: parent.SysSet.IMCode,
  3226. CallBack: function (data) {
  3227. var sCode = parent.UserInfo.ServiceCode;
  3228. if (sAction === 'Add' && sCode && parent.SysSet.IMCode.indexOf(sCode) > -1) {
  3229. $('#ResponsiblePerson').val(parent.UserInfo.MemberID);
  3230. sServiceCode = sCode;
  3231. sDeptCode = parent.UserInfo.DepartmentID;
  3232. }
  3233. }
  3234. }
  3235. ]),
  3236. fnSetArgDrop([
  3237. {
  3238. ArgClassID: 'Clearance',
  3239. Select: $('#CustomsClearance'),
  3240. ShowId: true
  3241. },
  3242. {
  3243. ArgClassID: 'Currency',
  3244. CallBack: function (data) {
  3245. saCurrency = data;
  3246. sCurrencyOptionsHtml = createOptions(data, 'id', 'text');
  3247. }
  3248. },
  3249. {
  3250. ArgClassID: 'DeclClass',
  3251. Select: $('#DeclarationClass'),
  3252. ShowId: true
  3253. },
  3254. {
  3255. ArgClassID: 'Transport',
  3256. Select: $('#TransportationMode'),
  3257. ShowId: true
  3258. },
  3259. {
  3260. ArgClassID: 'Hall',
  3261. Select: $('#Hall')
  3262. },
  3263. {
  3264. ArgClassID: 'Port',
  3265. CallBack: function (data) {
  3266. $('.quickquery-city').on('keyup', function () {
  3267. this.value = this.value.toUpperCase();
  3268. }).on('blur', function () {
  3269. var sId = this.value,
  3270. oPort = Enumerable.From(data).Where(function (e) { return e.id == sId; });
  3271. if (oPort.Count() === 1) {
  3272. $(this).parent().next().next().find(':input').val(oPort.First().text);
  3273. }
  3274. }).autocompleter({
  3275. // marker for autocomplete matches
  3276. highlightMatches: true,
  3277. // object to local or url to remote search
  3278. source: data,
  3279. // custom template
  3280. template: '{{ id }} <span>({{ label }})</span>',
  3281. // show hint
  3282. hint: true,
  3283. // abort source if empty field
  3284. empty: false,
  3285. // max results
  3286. limit: 20,
  3287. callback: function (value, index, selected) {
  3288. if (selected) {
  3289. var that = this;
  3290. $(that).parent().find(':input').val(selected.id);
  3291. $(that).parent().next().next().find(':input').val(selected.text);
  3292. }
  3293. }
  3294. });
  3295. }
  3296. },
  3297. {
  3298. ArgClassID: 'FeeClass',
  3299. CallBack: function (data) {
  3300. saFeeClass = data;
  3301. }
  3302. }
  3303. ])])
  3304. .done(function (res) {
  3305. if (res && res[0].d && res[0].d !== '-1') {
  3306. var oRes = $.parseJSON(res[0].d);
  3307. fnGetCurrencyThisYear(oRes.CreateDate).done(function () {
  3308. oRes.Exhibitors = saGridData = (oRes.Exhibitors) ? JSON.parse(oRes.Exhibitors) : [];
  3309. oRes.Quote = JSON.parse(oRes.Quote || '{}');
  3310. oRes.EstimatedCost = JSON.parse(oRes.EstimatedCost || '{}');
  3311. oRes.ActualCost = JSON.parse(oRes.ActualCost || '{}');
  3312. oRes.Bills = JSON.parse(oRes.Bills || '[]');
  3313. oRes.Quote.FeeItems = oRes.Quote.FeeItems || [];
  3314. oRes.EstimatedCost.FeeItems = oRes.EstimatedCost.FeeItems || [];
  3315. oRes.ActualCost.FeeItems = oRes.ActualCost.FeeItems || [];
  3316. oRes.Quote.guid = oRes.Quote.guid || guid();
  3317. oRes.Quote.KeyName = oRes.Quote.KeyName || 'Quote';
  3318. oRes.Quote.AuditVal = oRes.Quote.AuditVal || '0';
  3319. oRes.EstimatedCost.guid = oRes.EstimatedCost.guid || guid();
  3320. oRes.EstimatedCost.KeyName = oRes.EstimatedCost.KeyName || 'EstimatedCost';
  3321. oRes.EstimatedCost.AuditVal = oRes.EstimatedCost.AuditVal || '0';
  3322. oRes.ActualCost.guid = oRes.ActualCost.guid || guid();
  3323. oRes.ActualCost.KeyName = oRes.ActualCost.KeyName || 'ActualCost';
  3324. oRes.ActualCost.AuditVal = oRes.ActualCost.AuditVal || '0';
  3325. oCurData = oRes;
  3326. nowResponsiblePerson = oCurData.ResponsiblePerson;
  3327. if (oCurData.Agent) {
  3328. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === oCurData.Agent; }).First(),
  3329. saContactors = JSON.parse(oCur.Contactors || '[]');
  3330. $('#AgentContactor').html(createOptions(saContactors, 'guid', 'FullName'));
  3331. }
  3332. else {
  3333. $('#AgentContactor').html(createOptions([]));
  3334. }
  3335. setFormVal(oForm, oRes);
  3336. fnSetUserDrop([
  3337. {
  3338. MemberID: oCurData.ResponsiblePerson,
  3339. CallBack: function (data) {
  3340. var oRes = data[0];
  3341. sServiceCode = oRes.ServiceCode;
  3342. sDeptCode = oRes.DepartmentID;
  3343. }
  3344. }
  3345. ]);
  3346. setNameById().done(function () {
  3347. getPageVal();//緩存頁面值,用於清除
  3348. });
  3349. $('#ExhibitionDateStart').val(newDate(oCurData.ExhibitionDateStart, 'date', true));
  3350. $('#ExhibitionDateEnd').val(newDate(oCurData.ExhibitionDateEnd, 'date', true));
  3351. if (saGridData.length > 0) {
  3352. $.each(saGridData, function (idx, item) {
  3353. if (!item.guid) {
  3354. item.guid = guid();
  3355. }
  3356. });
  3357. }
  3358. moneyInput($('[data-type="int"]'), 0);
  3359. if (sAction === 'Add' && sAppointNO) {
  3360. fnInitAppoint();//如果是匯入預約單進來則預設預約單資料
  3361. }
  3362. var Authorized = ExhibitionBillAuthorize(oCurData);
  3363. if (Authorized) {
  3364. $('[href="#tab3"],[href="#tab4"]').parent().show();
  3365. if (sGoTab) {
  3366. $('#litab' + sGoTab).find('a').click();
  3367. if (sBillNOGO && $('.bill-box-' + sBillNOGO).length > 0) {
  3368. $('.bill-box-' + sBillNOGO).click();
  3369. goToJys($('.bill-box-' + sBillNOGO));
  3370. }
  3371. }
  3372. }
  3373. else {
  3374. $('[href="#tab3"],[href="#tab4"]').parent().hide();
  3375. }
  3376. });
  3377. }
  3378. else
  3379. fnGetCurrencyThisYear(new Date());
  3380. });
  3381. $.validator.addMethod("compardate", function (value, element, parms) {
  3382. if (new Date(value) < new Date($('#ExhibitionDateStart').val())) {
  3383. return false;
  3384. }
  3385. return true;
  3386. });
  3387. oValidator = $("#form_main").validate({
  3388. ignore: '',
  3389. rules: {
  3390. AgentEamil: {
  3391. email: true
  3392. }
  3393. },
  3394. messages: {
  3395. AgentEamil: i18next.t("message.IncorrectEmail")// ╠message.IncorrectEmail⇒郵箱格式不正確╣
  3396. }
  3397. });
  3398. $.timepicker.dateRange($('#ExhibitionDateStart'), $('#ExhibitionDateEnd'),
  3399. {
  3400. minInterval: 1000 * 60 * 60 * 24 * 1, // 1 days
  3401. changeYear: true,
  3402. changeMonth: true
  3403. }
  3404. );
  3405. $.timepicker.datetimeRange($('#ApproachTime'), $('#ExitTime'),
  3406. {
  3407. minInterval: 1000 * 60 * 60 * 24 * 1, // 1 days
  3408. changeYear: true,
  3409. changeMonth: true
  3410. }
  3411. );
  3412. $('#ResponsiblePerson').change(function () {
  3413. var sVal = this.value;
  3414. if (sVal) {
  3415. fnSetUserDrop([
  3416. {
  3417. MemberID: sVal,
  3418. CallBack: function (data) {
  3419. var oRes = data[0];
  3420. sServiceCode = oRes.ServiceCode;
  3421. sDeptCode = oRes.DepartmentID;
  3422. }
  3423. }
  3424. ]);
  3425. }
  3426. else {
  3427. sServiceCode = '';
  3428. sDeptCode = '';
  3429. }
  3430. });
  3431. $('#ExhibitionNO').change(function () {
  3432. var sId = this.value;
  3433. if (sId) {
  3434. fnSetEpoDrop({
  3435. SN: sId,
  3436. CallBack: function (data) {
  3437. var oExhibition = data[0];
  3438. $('#ImportBillEName').val(oExhibition.Exhibitioname_EN);
  3439. if (oExhibition.ExhibitionDateStart) {
  3440. $('#ExhibitionDateStart').val(newDate(oExhibition.ExhibitionDateStart, 'date'));
  3441. }
  3442. if (oExhibition.ExhibitionDateEnd) {
  3443. $('#ExhibitionDateEnd').val(newDate(oExhibition.ExhibitionDateEnd, 'date'));
  3444. }
  3445. $('#Hall').val(oExhibition.ExhibitionAddress);
  3446. }
  3447. });
  3448. }
  3449. else {
  3450. $('#ImportBillEName').val('');
  3451. $('#ExhibitionDateStart').val('');
  3452. $('#ExhibitionDateEnd').val('');
  3453. }
  3454. });
  3455. $(window).on('scroll', function () {
  3456. var h = ($(document).height(), $(this).scrollTop());
  3457. if (h < 81) {
  3458. $('.sum-box').css({ top: 125 - h });
  3459. }
  3460. else {
  3461. $('.sum-box').css({ top: 44 });
  3462. }
  3463. });
  3464. };
  3465. init();
  3466. };
  3467. require(['base', 'jsgrid', 'select2', 'formatnumber', 'autocompleter', 'jquerytoolbar', 'timepicker', 'ajaxfile', 'common_opm', 'util'], fnPageInit, 'timepicker');