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.

3154 lines
171 KiB

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