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.

5261 lines
300 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sQueryPrgId = getQueryPrgId(),
  4. sAction = getUrlParam('Action') || 'Add',
  5. sDataId = getUrlParam('ImportBillNO'),
  6. sFlag = getUrlParam('Flag'),
  7. sGoTab = getUrlParam('GoTab'),
  8. sBillNOGO = getUrlParam('BillNO'),
  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. oGrid = null,
  15. sServiceCode = '',
  16. sDeptCode = '',
  17. sTransportOptionsHtml = '',
  18. sCustomersOptionsHtml = '',
  19. sCustomersNotAuditOptionsHtml = '',
  20. sCurrencyOptionsHtml = '',
  21. sAccountingCurrencyOptionsHtml = '',
  22. oAddItem = {},
  23. oCurData = { Suppliers: [] },
  24. oPrintMenu = {},
  25. saCustomers = [],
  26. saFeeClass = [],
  27. saPort = [],
  28. saCurrency = [],
  29. saAccountingCurrency = [],
  30. nowResponsiblePerson = '',
  31. /**
  32. * 獲取資料
  33. */
  34. fnGet = function () {
  35. if (sDataId) {
  36. return g_api.ConnectLite(sQueryPrgId, ComFn.GetOne,
  37. {
  38. Guid: sDataId
  39. },
  40. function (res) {
  41. if (res.RESULT) {
  42. var oRes = res.DATA.rel;
  43. oRes.Import = (oRes.Import) ? JSON.parse(oRes.Import) : {};
  44. $('#VoidReason').text(oRes.VoidReason);
  45. if (oRes.IsVoid == 'Y') {
  46. $('.voidreason').show();
  47. $('#Toolbar_Void').attr({ 'id': 'Toolbar_OpenVoid', 'data-i18n': 'common.Toolbar_OpenVoid' });
  48. }
  49. else {
  50. $('.voidreason').hide();
  51. $('#Toolbar_OpenVoid').attr({ 'id': 'Toolbar_Void', 'data-i18n': 'common.Toolbar_Void' });
  52. }
  53. if (!oRes.Import.ExhibitionWarehouse) {
  54. $('#Import_ExhibitionWarehouse_Checked').parents('.form-group').remove();
  55. }
  56. transLang($('#Toolbar'));
  57. }
  58. });
  59. }
  60. else {
  61. oCurData.Quote = { guid: guid(), KeyName: 'Quote', AuditVal: '0', FeeItems: [] };
  62. oCurData.EstimatedCost = { guid: guid(), KeyName: 'EstimatedCost', AuditVal: '0', FeeItems: [] };
  63. oCurData.ActualCost = { guid: guid(), KeyName: 'ActualCost', AuditVal: '0', FeeItems: [] };
  64. oCurData.Bills = [];
  65. oCurData.ReturnBills = [];
  66. oCurData.Suppliers = [];
  67. $('#Contactor').html(createOptions([]));
  68. fnInitfileInput('');
  69. fntBindCheckBoxEvent();
  70. fnSetPermissions();
  71. return $.Deferred().resolve().promise();
  72. }
  73. },
  74. /**
  75. * 新增或修改完之后重新查询资料
  76. */
  77. fnReSet = function () {
  78. fnGet().done(function (res) {
  79. var oRes = res.DATA.rel;
  80. setFlowBox(true);
  81. $('#VoidReason').text(oRes.VoidReason);
  82. if (oRes.VoidReason) { $('.voidreason').show(); } else { $('.voidreason').hide(); }
  83. getPageVal(); //緩存頁面值,用於清除
  84. });
  85. },
  86. /**
  87. * 取得帳單log資料
  88. * @return {Object}
  89. */
  90. fnGetBillLogData = function (Bill) {
  91. var LogData = {};
  92. LogData.OrgID = parent.OrgID;
  93. LogData.BillNO = Bill.BillNO;
  94. LogData.ExhibitioName = oCurData.Exhibitioname_TW; //ExhibitioName
  95. LogData.PayerName = '';
  96. if (Bill.Payer) {
  97. var PayerData = Enumerable.From(saCustomers).Where(function (e) { return e.id === Bill.Payer; }).First();
  98. LogData.PayerName = PayerData.text;
  99. }
  100. LogData.ResponsiblePersonName = oCurData.ResponsiblePerson;
  101. LogData.Currency = Bill.Currency;
  102. LogData.ExchangeRate = Bill.ExchangeRate;
  103. LogData.Advance = Bill.Advance;
  104. LogData.AmountSum = Bill.AmountSum;
  105. LogData.TaxSum = Bill.TaxSum;
  106. LogData.AmountTaxSum = Bill.AmountTaxSum;
  107. LogData.TotalReceivable = Bill.TotalReceivable;
  108. LogData.OpmBillCreateUserName = oCurData.CreateUser;
  109. LogData.ModifyUser = parent.UserID;
  110. return LogData;
  111. },
  112. /**
  113. * 獲取貨物狀態
  114. */
  115. fnGetFlowStatus = function (data) {
  116. var sFlowStatus = '';
  117. if (data.ReImports.length > 0) {
  118. $.each(data.ReImports, function (idx, item) {
  119. var iLen = idx + 1;
  120. if (item.ReImport.Sign && item.ReImport.Sign.Checked) {
  121. sFlowStatus += 'ReImport' + iLen + '-Re6';
  122. }
  123. else if (item.ReImport.ReachDestination && item.ReImport.ReachDestination.Checked) {
  124. sFlowStatus += 'ReImport' + iLen + '-Re5';
  125. }
  126. else if (item.ReImport.HuiYun && item.ReImport.HuiYun.Checked) {
  127. sFlowStatus += 'ReImport' + iLen + '-Re4';
  128. }
  129. else if (item.ReImport.ReCargoRelease && item.ReImport.ReCargoRelease.Checked) {
  130. sFlowStatus += 'ReImport' + iLen + '-Re3';
  131. }
  132. else if (item.ReImport.ReCustomsDeclaration && item.ReImport.ReCustomsDeclaration.Checked) {
  133. sFlowStatus += 'ReImport' + iLen + '-Re2';
  134. }
  135. else if (item.ReImport.FileValidation && item.ReImport.FileValidation.Checked) {
  136. sFlowStatus += 'ReImport' + iLen + '-Re1';
  137. }
  138. });
  139. }
  140. else if (data.Import.Sign && data.Import.Sign.Checked) {
  141. sFlowStatus = 'Import-6';
  142. }
  143. else if (data.Import.ExhibitionWarehouse && data.Import.ExhibitionWarehouse.Checked) {
  144. sFlowStatus = 'Import-5';
  145. }
  146. else if (data.Import.CargoRelease && data.Import.CargoRelease.Checked) {
  147. sFlowStatus = 'Import-4';
  148. }
  149. else if (data.Import.CustomsDeclaration && data.Import.CustomsDeclaration.Checked) {
  150. sFlowStatus = 'Import-3';
  151. }
  152. else if (data.Import.GoodsArrival && data.Import.GoodsArrival.Checked) {
  153. sFlowStatus = 'Import-2';
  154. }
  155. else if (data.Import.ReceiveFile && data.Import.ReceiveFile.Checked) {
  156. sFlowStatus = 'Import-1';
  157. }
  158. return sFlowStatus;
  159. },
  160. /*
  161. * 新增資料
  162. * @param {String}flag 新增或儲存後新增
  163. */
  164. fnAdd = function (flag) {
  165. var data = getFormSerialize(oForm);
  166. data = packParams(data);
  167. data.OrgID = parent.OrgID;
  168. data.RefNumber = 'SerialNumber+3|' + parent.UserInfo.OrgID + '|C' + parent.UserInfo.OrgID + 'I|MinYear|3|' + sServiceCode + '|' + sServiceCode;
  169. data.Release = data.Import.CargoRelease.Checked ? 'Y' : 'N';
  170. data.ReturnLoan = data.ReturnLoan || {};
  171. data.ReturnLoan = JSON.stringify(data.ReturnLoan);
  172. data.TaxInformation = data.TaxInformation || {};
  173. data.TaxInformation = JSON.stringify(data.TaxInformation);
  174. data.Weight = data.Weight == '' ? 0 : data.Weight;
  175. data.IsVoid = 'N';
  176. data.DepartmentID = sDeptCode;
  177. data.Quote = oCurData.Quote || {};
  178. data.Quote.AuditVal = oCurData.Quote.AuditVal || '0';
  179. data.Quote.FeeItems = oCurData.Quote.FeeItems || [];
  180. data.EstimatedCost = oCurData.EstimatedCost || {};
  181. data.EstimatedCost.AuditVal = oCurData.EstimatedCost.AuditVal || '0';
  182. data.EstimatedCost.FeeItems = oCurData.EstimatedCost.FeeItems || [];
  183. data.ActualCost = oCurData.ActualCost || {};
  184. data.ActualCost.AuditVal = oCurData.ActualCost.AuditVal || '0';
  185. data.ActualCost.FeeItems = oCurData.ActualCost.FeeItems || [];
  186. data.Bills = oCurData.Bills || [];
  187. data.ReturnBills = oCurData.ReturnBills || [];
  188. data.Suppliers = oCurData.Suppliers || [];
  189. data.Quote = JSON.stringify(data.Quote);
  190. data.EstimatedCost = JSON.stringify(data.EstimatedCost);
  191. data.ActualCost = JSON.stringify(data.ActualCost);
  192. data.Bills = JSON.stringify(data.Bills);
  193. data.ReturnBills = JSON.stringify(data.ReturnBills);
  194. data.Suppliers = JSON.stringify(data.Suppliers);
  195. if (data.Contactor) {
  196. data.ContactorName = $('#Contactor option:selected').text();
  197. }
  198. else {
  199. data.ContactorName = '';
  200. }
  201. if (data.AgentContactor) {
  202. data.AgentContactorName = $('#AgentContactor option:selected').text();
  203. }
  204. else {
  205. data.AgentContactorName = '';
  206. }
  207. if (data.ExhibitionNO) {
  208. data.ImportBillName = $('#ExhibitionNO option:selected').text();
  209. }
  210. else {
  211. data.ImportBillName = '';
  212. }
  213. data.ReImports = [];
  214. for (var idx = 1; idx < 11; idx++) {
  215. var oReImport = data['ReImport' + idx];
  216. if (oReImport) {
  217. var oReImports = {};
  218. oReImports.SignatureFileId = data['SignatureFileId' + idx];
  219. oReImports.ReImport = oReImport;
  220. oReImports.ReImportData = data['ReImportData' + idx];
  221. data.ReImports.push(oReImports);
  222. data['SignatureFileId' + idx] = undefined;
  223. data['ReImport' + idx] = undefined;
  224. data['ReImportData' + idx] = undefined;
  225. }
  226. else {
  227. break;
  228. }
  229. }
  230. data.Flow_Status = fnGetFlowStatus(data);
  231. data.Import = JSON.stringify(data.Import);
  232. data.ReImports = JSON.stringify(data.ReImports);
  233. if (!data.ArrivalTime) delete data.ArrivalTime;
  234. if (!data.FreePeriod) delete data.FreePeriod;
  235. if (!data.ApproachTime) delete data.ApproachTime;
  236. if (!data.ExitTime) delete data.ExitTime;
  237. if (!data.ExhibitionDateStart) delete data.ExhibitionDateStart;
  238. if (!data.ExhibitionDateEnd) delete data.ExhibitionDateEnd;
  239. data.ImportBillNO = sDataId = guid();
  240. CallAjax(ComFn.W_Com, ComFn.GetAdd, {
  241. Params: { importexhibition: data }
  242. }, function (res) {
  243. if (res.d > 0) {
  244. bRequestStorage = false;
  245. if (flag == 'add') {
  246. showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Upd&ImportBillNO=' + sDataId); // ╠message.Save_Success⇒新增成功╣
  247. }
  248. else {
  249. showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Add'); // ╠message.Save_Success⇒新增成功╣
  250. }
  251. }
  252. else {
  253. showMsg(i18next.t("message.Save_Failed"), 'error'); // ╠message.Save_Failed⇒新增失敗╣
  254. }
  255. });
  256. },
  257. /**
  258. * 修改資料
  259. * @param
  260. */
  261. fnUpd = function () {
  262. var data = getFormSerialize(oForm);
  263. data = packParams(data, 'upd');
  264. data.Release = data.Import.CargoRelease.Checked ? 'Y' : 'N';
  265. data.ReturnLoan = data.ReturnLoan || {};
  266. data.ReturnLoan = JSON.stringify(data.ReturnLoan);
  267. data.TaxInformation = data.TaxInformation || {};
  268. data.TaxInformation = JSON.stringify(data.TaxInformation);
  269. data.Weight = data.Weight == '' ? 0 : data.Weight;
  270. data.IsVoid = oCurData.IsVoid;
  271. data.Quote = oCurData.Quote || {};
  272. data.Quote.AuditVal = oCurData.Quote.AuditVal || '0';
  273. data.Quote.FeeItems = oCurData.Quote.FeeItems || [];
  274. data.EstimatedCost = oCurData.EstimatedCost || {};
  275. data.EstimatedCost.AuditVal = oCurData.EstimatedCost.AuditVal || '0';
  276. data.EstimatedCost.FeeItems = oCurData.EstimatedCost.FeeItems || [];
  277. data.ActualCost = oCurData.ActualCost || {};
  278. data.ActualCost.AuditVal = oCurData.ActualCost.AuditVal || '0';
  279. data.ActualCost.FeeItems = oCurData.ActualCost.FeeItems || [];
  280. data.Bills = oCurData.Bills || [];
  281. data.ReturnBills = oCurData.ReturnBills || [];
  282. data.Suppliers = oCurData.Suppliers || [];
  283. data.Quote = JSON.stringify(data.Quote);
  284. data.EstimatedCost = JSON.stringify(data.EstimatedCost);
  285. data.ActualCost = JSON.stringify(data.ActualCost);
  286. data.Bills = JSON.stringify(data.Bills);
  287. data.ReturnBills = JSON.stringify(data.ReturnBills);
  288. data.Suppliers = JSON.stringify(data.Suppliers);
  289. if (data.Contactor) {
  290. data.ContactorName = $('#Contactor option:selected').text();
  291. }
  292. else {
  293. data.ContactorName = '';
  294. }
  295. if (data.AgentContactor) {
  296. data.AgentContactorName = $('#AgentContactor option:selected').text();
  297. }
  298. else {
  299. data.AgentContactorName = '';
  300. }
  301. if (data.ExhibitionNO) {
  302. data.ImportBillName = $('#ExhibitionNO option:selected').text();
  303. }
  304. else {
  305. data.ImportBillName = '';
  306. }
  307. data.ReImports = [];
  308. for (var idx = 1; idx < 11; idx++) {
  309. var oReImport = data['ReImport' + idx];
  310. if (oReImport) {
  311. var oReImports = {};
  312. oReImports.SignatureFileId = data['SignatureFileId' + idx];
  313. oReImports.ReImport = oReImport;
  314. oReImports.ReImportData = data['ReImportData' + idx];
  315. data.ReImports.push(oReImports);
  316. data['SignatureFileId' + idx] = undefined;
  317. data['ReImport' + idx] = undefined;
  318. data['ReImportData' + idx] = undefined;
  319. }
  320. else {
  321. break;
  322. }
  323. }
  324. data.Flow_Status = fnGetFlowStatus(data);
  325. data.Import = JSON.stringify(data.Import);
  326. data.ReImports = JSON.stringify(data.ReImports);
  327. delete data.ImportBillNO;
  328. if (!data.ArrivalTime) delete data.ArrivalTime;
  329. if (!data.FreePeriod) delete data.FreePeriod;
  330. if (!data.ApproachTime) delete data.ApproachTime;
  331. if (!data.ExitTime) delete data.ExitTime;
  332. if (!data.ExhibitionDateStart) delete data.ExhibitionDateStart;
  333. if (!data.ExhibitionDateEnd) delete data.ExhibitionDateEnd;
  334. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  335. Params: {
  336. importexhibition: {
  337. values: data,
  338. keys: { ImportBillNO: sDataId }
  339. }
  340. }
  341. }, function (res) {
  342. if (res.d > 0) {
  343. bRequestStorage = false;
  344. showMsg(i18next.t("message.Modify_Success"), 'success'); //╠message.Modify_Success⇒修改成功╣
  345. if (window.bLeavePage) {
  346. setTimeout(function () {
  347. pageLeave();
  348. }, 1000);
  349. }
  350. fnUpdateBillInfo(sProgramId, sDataId);
  351. oCurData.ResponsiblePerson = data.ResponsiblePerson;
  352. }
  353. else {
  354. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  355. nowResponsiblePerson = oCurData.ResponsiblePerson;
  356. }
  357. }, function () {
  358. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  359. nowResponsiblePerson = oCurData.ResponsiblePerson;
  360. });
  361. },
  362. /**
  363. * 資料刪除
  364. */
  365. fnDel = function () {
  366. CallAjax(ComFn.W_Com, ComFn.GetDel, {
  367. Params: {
  368. importexhibition: {
  369. ImportBillNO: sDataId
  370. }
  371. }
  372. }, function (res) {
  373. if (res.d > 0) {
  374. showMsgAndGo(i18next.t("message.Delete_Success"), sQueryPrgId); // ╠message.Delete_Success⇒刪除成功╣
  375. }
  376. else {
  377. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  378. }
  379. }, function () {
  380. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  381. });
  382. },
  383. /**
  384. * 資料作廢
  385. */
  386. fnVoid = function () {
  387. layer.open({
  388. type: 1,
  389. title: i18next.t('common.Toolbar_Void'),// ╠common.Toolbar_Void⇒作廢╣
  390. shade: 0.75,
  391. maxmin: true, //开启最大化最小化按钮
  392. area: ['500px', '250px'],
  393. content: '<div class="pop-box">\
  394. <textarea name="VoidContent" id="VoidContent" style="min-width:300px;" class="form-control" rows="5" cols="20"></textarea>\
  395. </div>',
  396. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  397. success: function (layero, index) {
  398. },
  399. yes: function (index, layero) {
  400. var data = {
  401. IsVoid: 'Y',
  402. VoidReason: $('#VoidContent').val()
  403. };
  404. if (!$('#VoidContent').val()) {
  405. showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
  406. return false;
  407. }
  408. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  409. Params: {
  410. importexhibition: {
  411. values: data,
  412. keys: { ImportBillNO: sDataId }
  413. }
  414. }
  415. }, function (res) {
  416. if (res.d > 0) {
  417. oCurData.IsVoid = 'Y';
  418. showMsg(i18next.t("message.Void_Success"), 'success'); // ╠message.Void_Success⇒作廢成功╣
  419. fnReSet();
  420. }
  421. else {
  422. showMsg(i18next.t('message.Void_Failed'), 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  423. }
  424. });
  425. layer.close(index);
  426. }
  427. });
  428. },
  429. /**
  430. * 資料啟用
  431. */
  432. fnOpenVoid = function () {
  433. var data = {
  434. IsVoid: 'N',
  435. VoidReason: ''
  436. };
  437. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  438. Params: {
  439. importexhibition: {
  440. values: data,
  441. keys: { ImportBillNO: sDataId }
  442. }
  443. }
  444. }, function (res) {
  445. if (res.d > 0) {
  446. oCurData.IsVoid = 'N';
  447. showMsg(i18next.t("message.OpenVoid_Success"), 'success'); // ╠message.OpenVoid_Success⇒啟用成功╣
  448. fnReSet();
  449. }
  450. else {
  451. showMsg(i18next.t("message.OpenVoid_Failed"), 'error'); // ╠message.OpenVoid_Failed⇒啟用失敗╣
  452. }
  453. }, function () {
  454. showMsg(i18next.t("message.OpenVoid_Failed"), 'error'); // ╠message.OpenVoid_Failed⇒啟用失敗╣
  455. });
  456. },
  457. /**
  458. * 匯入資料
  459. */
  460. fnImport = function () {
  461. var oConfig = {
  462. Get: fnGetPopData_ImportData,
  463. SearchFields: [
  464. { id: "Pop_ImportBillName", type: 'text', i18nkey: 'ExhibitionImport_Upd.ImportBillName' },
  465. { id: "Pop_ImportBillEName", type: 'text', i18nkey: 'ExhibitionImport_Upd.ImportBillEName' },
  466. { id: "Pop_Supplier", type: 'text', i18nkey: 'ExhibitionImport_Upd.Supplier' },
  467. { id: "Pop_Agent", type: 'text', i18nkey: 'ExhibitionImport_Upd.Agent' }
  468. ],
  469. Fields: [
  470. { name: "RowIndex", title: 'common.RowNumber', sorting: false, align: 'center', width: 40 },
  471. { name: "RefNumber", title: 'ExhibitionImport_Upd.RefNumber', width: 100 },
  472. { name: "ImportBillName", title: 'ExhibitionImport_Upd.ImportBillName', width: 150 },
  473. { name: "ImportBillEName", title: 'ExhibitionImport_Upd.ImportBillEName', width: 150 },
  474. { name: "SupplierCName", title: 'ExhibitionImport_Upd.Supplier', width: 150 },
  475. { name: "AgentName", title: 'ExhibitionImport_Upd.Agent', width: 150 }
  476. ],
  477. Callback: function (item) {
  478. var oData = {};
  479. oData.RefNumberEmail = item.RefNumberEmail;
  480. oData.ResponsiblePerson = item.ResponsiblePerson;
  481. oData.ExhibitionNO = item.ExhibitionNO;
  482. oData.ImportBillName = item.ImportBillName;
  483. oData.ImportBillEName = item.ImportBillEName;
  484. oData.ExhibitionDateStart = item.ExhibitionDateStart;
  485. oData.ExhibitionDateEnd = item.ExhibitionDateEnd;
  486. oData.Hall = item.Hall;
  487. oData.MuseumMumber = item.MuseumMumber;
  488. oData.Supplier = item.Supplier;
  489. oData.Contactor = item.Contactor;
  490. oData.Telephone = item.Telephone;
  491. oData.SupplierEamil = item.SupplierEamil;
  492. oData.Agent = item.Agent;
  493. oData.AgentContactor = item.AgentContactor;
  494. oData.AgentTelephone = item.AgentTelephone;
  495. oData.AgentEmail = item.AgentEmail;
  496. setFormVal(oForm, oData);
  497. if (oData.Supplier) {
  498. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == oData.Supplier; }).First(),
  499. saContactors = JSON.parse(oCur.Contactors || '[]');
  500. $('#Contactor').html(createOptions(saContactors, 'guid', 'FullName')).val(oData.Contactor);
  501. }
  502. else {
  503. $('#Contactor').html(createOptions([]));
  504. }
  505. if (oData.Agent) {
  506. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == oData.Agent; }).First(),
  507. saContactors = JSON.parse(oCur.Contactors || '[]');
  508. $('#AgentContactor').html(createOptions(saContactors, 'guid', 'FullName')).val(oData.Contactor);
  509. }
  510. else {
  511. $('#AgentContactor').html(createOptions([]));
  512. }
  513. $('#ExhibitionDateStart').val(newDate(oData.ExhibitionDateStart, 'date', true));
  514. $('#ExhibitionDateEnd').val(newDate(oData.ExhibitionDateEnd, 'date', true));
  515. }
  516. };
  517. oPenPops(oConfig);
  518. },
  519. /**
  520. * 流程修改發送郵件
  521. * @param (int) iflag 第幾個流程
  522. * @param (function) callback 回調函數
  523. */
  524. fnSendEmail = function (iflag, callback) {
  525. if (parent.SysSet.IsOpenMail != 'Y') {
  526. layer.alert(i18next.t('message.NotOpenMail'), { icon: 0 }, function () {// ╠message.NotOpenMail⇒系統沒有開放郵件發送功能,請聯絡管理員!╣
  527. callback(iflag);
  528. });
  529. return false;
  530. }
  531. CallAjax(ComFn.W_Com, ComFn.SendMail, {
  532. Params: {
  533. FromOrgID: parent.OrgID,
  534. FromUserID: parent.UserID,
  535. EmailTo: [{
  536. ToUserID: $('#ResponsiblePerson').val(),
  537. Type: 'to'
  538. }],
  539. MailTempId: 'FlowChange',
  540. MailData: {
  541. RefNumber: $('#RefNumber').val(),
  542. ExhibitionType: '進口',
  543. DataDources: '進口管理',
  544. ChangeItem: iflag === 0 ? i18next.t("ExhibitionImport_Upd.Import") : i18next.t("ExhibitionImport_Upd.ReImport" + iflag),
  545. SupplierName: '',
  546. ModifyUser: parent.UserInfo.MemberName,
  547. ModifyDate: newDate(null, 'date')
  548. }
  549. }
  550. }, function (res) {
  551. if (res.d === '1') {
  552. callback();
  553. showMsg(i18next.t("message.SendEmail_Success"), 'success'); // ╠message.SendEmail_Success⇒郵件寄送成功╣
  554. }
  555. else {
  556. showMsg(i18next.t("message.SendEmail_Failed"), 'error'); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  557. }
  558. }, function () {
  559. showMsg(i18next.t("message.SendEmail_Failed"), 'error'); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  560. });
  561. },
  562. /**
  563. * 發送Tracking number給客戶格式
  564. */
  565. fnSendTrackingNumberEmail = function () {
  566. var sSupplierEamil = $('#RefNumberEmail').val(),
  567. saSupplierEamil = [],
  568. bAllRight = true,
  569. sMsg = '';
  570. if (parent.SysSet.IsOpenMail != 'Y') {
  571. showMsg(i18next.t("message.NotOpenMail"));// ╠message.NotOpenMail⇒系統沒有開放郵件發送功能,請聯絡管理員!╣
  572. return false;
  573. }
  574. if (!sSupplierEamil) {
  575. sMsg += i18next.t("ExhibitionImport_Upd.SupplierEamil_required") + '<br/>'; // ╠ExhibitionImport_Upd.SupplierEamil_required⇒請輸入付款人╣
  576. }
  577. if (!$('#BillLadNO').val()) {
  578. sMsg += i18next.t("common.BillLadNO_required") + '<br/>'; // ╠common.BillLadNO_required⇒請輸入提單號碼╣
  579. }
  580. if (!$('#ShipmentPort').val()) {
  581. sMsg += i18next.t("common.ShipmentPort_required") + '<br/>'; // ╠common.ShipmentPort_required⇒請輸入起運地╣
  582. }
  583. if (!$('#DestinationPort').val()) {
  584. sMsg += i18next.t("common.DestinationPort_required") + '<br/>'; // ╠common.DestinationPort_required⇒請輸入目的地╣
  585. }
  586. if (!$('#BoxNo').val()) {
  587. sMsg += i18next.t("message.Number_required") + '<br/>'; // ╠message.Number_required⇒請輸入件數╣
  588. }
  589. if (!$('#Unit').val()) {
  590. sMsg += i18next.t("message.Unit_required"); // ╠message.Unit_required⇒ 請輸入(件數)單位╣
  591. }
  592. if (sMsg) {
  593. showMsg(sMsg);
  594. return false;
  595. }
  596. saSupplierEamil = sSupplierEamil.split(/[;;,,/|]/);
  597. if (saSupplierEamil.length > 0) {
  598. var saEmailTo = [],
  599. toSendMail = function () {
  600. CallAjax(ComFn.W_Com, ComFn.SendMail, {
  601. Params: {
  602. FromOrgID: parent.OrgID,
  603. FromUserName: parent.SysSet.FromName || '系統郵件',
  604. EmailTo: saEmailTo,
  605. MailTempId: 'TrackingNumberNotice',
  606. MailData: {
  607. RefNumber: $('#RefNumber').val(),
  608. BillLadNO: $('#BillLadNO').val(),
  609. BillLadNOType: '',
  610. ExhibitionName: oCurData.Exhibitioname_TW || '',
  611. ExhibitionEName: oCurData.Exhibitioname_EN || '',
  612. Shipment: $('#ShipmentPortCode').val(),
  613. Destination: $('#DestinationPortCode').val(),
  614. Number: $('#BoxNo').val() + ' ' + $('#Unit').val()
  615. }
  616. }
  617. }, function (res) {
  618. if (res.d === '1') {
  619. showMsg(i18next.t("message.SendEmail_Success"), 'success'); // ╠message.SendEmail_Success⇒郵件寄送成功╣
  620. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  621. Params: {
  622. importexhibition: {
  623. values: { IsSendMail: 'Y' },
  624. keys: { ImportBillNO: sDataId }
  625. }
  626. }
  627. }, function (res) {
  628. if (res.d > 0) {
  629. oCurData.IsSendMail = 'Y';
  630. }
  631. });
  632. }
  633. else {
  634. showMsg(i18next.t("message.SendEmail_Failed"), 'error'); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  635. }
  636. }, function () {
  637. showMsg(i18next.t("message.SendEmail_Failed"), 'error'); // ╠message.SendEmail_Failed⇒郵件寄送失敗╣
  638. });
  639. };
  640. $.each(saSupplierEamil, function (idx, email) {
  641. if (isEmail(email)) {
  642. saEmailTo.push({
  643. ToUserName: email,
  644. ToEmail: email,
  645. Type: 'to'
  646. });
  647. }
  648. else {
  649. bAllRight = false;
  650. return false;
  651. }
  652. });
  653. if (bAllRight) {
  654. if (oCurData.IsSendMail !== 'Y') {
  655. toSendMail();
  656. }
  657. else {// ╠message.IsSendTrackingNumberEmail⇒已寄送过,是否再次寄送?╣ ╠common.Tips⇒提示╣
  658. layer.confirm(i18next.t('message.IsSendTrackingNumberEmail'), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  659. toSendMail();
  660. layer.close(index);
  661. });
  662. }
  663. }
  664. else {
  665. showMsg(i18next.t("message.IncorrectEmail"), 'error'); // ╠message.IncorrectEmail⇒郵箱格式不正確╣
  666. }
  667. }
  668. },
  669. /**
  670. * 設定完成按鈕
  671. * @param {Object} flow 父層dom對象
  672. */
  673. setSuccessBtn = function (flow) {
  674. var iCheckBox = flow.find(':input[type=checkbox]').length,
  675. iChecked = flow.find(':input[type=checkbox]').not("input:checked").length;
  676. if (iChecked == 0 && iCheckBox != iChecked) {
  677. flow.find(':input.complete').removeAttr('disabled');
  678. }
  679. else {
  680. flow.find(':input.complete').attr('disabled', true);
  681. }
  682. },
  683. /**
  684. * 註冊checkbox點擊事件
  685. */
  686. fntBindCheckBoxEvent = function () {
  687. $('.complete').off('click').click(function () {
  688. var oBtn = this,
  689. sId = $(this).parents('.flow').attr('id'),
  690. data = getFormSerialize(oForm);
  691. data[sId].complete = 'Y';
  692. $('#' + sId + '_complete').val('Y');
  693. $(oBtn).attr('disabled', true);
  694. $('#' + sId).find('[name]').attr('disabled', true);
  695. if ($('.addreimport').length > 0) {
  696. $('.addreimport').removeAttr('disabled').off('click').click(function () {
  697. fnAddReimport();
  698. });
  699. }
  700. if ($('#' + sId).find('.addnextreimport').length > 0) {
  701. $('#' + sId).find('.addnextreimport').removeAttr('disabled').off('click').click(function () {
  702. fnAddNextReimport();
  703. fnAddReturnData();
  704. fnAddNextUpload(1);
  705. });
  706. }
  707. });
  708. //報關作業追蹤 Check Clike事件
  709. $(':input[type=checkbox]').off('click').on('click', function (e) {
  710. setTime(this);
  711. setSuccessBtn($(this).parents('.flow'));
  712. });
  713. },
  714. /**
  715. * 設定完成按鈕
  716. * @param {Object} that 父層dom對象
  717. */
  718. setTime = function (checkbox) {
  719. let sDate = newDate(null, true);
  720. let divFormGroup = checkbox.parentNode.parentNode;
  721. let FormGroupDate = divFormGroup.querySelector('.date-picker');
  722. if (checkbox.checked) {
  723. switch (checkbox.id) {
  724. case 'Import_GoodsArrival_Checked':
  725. let ArrivalTime = document.querySelector('#ArrivalTime')
  726. sDate = ArrivalTime.value == '' ? sDate : ArrivalTime.value;
  727. break;
  728. case 'Import_Sign_Checked':
  729. let ApproachTime = document.querySelector('#ApproachTime');
  730. sDate = ApproachTime.value === '' ? sDate : ApproachTime.value;
  731. break;
  732. case 'Import_InTransit1_Checked':
  733. //運輸中
  734. let DesPortCode = document.querySelector('#DestinationPortCode'); //目的地
  735. let InTransitETA = document.querySelector('#Import_InTransit1_ETA'); //運送中-ETA
  736. InTransitETA.value = DesPortCode.value;
  737. break;
  738. }
  739. //勾選後設定日期(當天)
  740. FormGroupDate.value = sDate
  741. }
  742. else {
  743. FormGroupDate.value = '';
  744. switch (checkbox.id) {
  745. case 'Import_InTransit1_Checked':
  746. //運輸中
  747. let InTransitETA = document.querySelector('#Import_InTransit1_ETA'); //運送中-ETA
  748. let IntransitDate = document.querySelector('#Import_InTransit1_ETADate'); //運輸中-日期
  749. InTransitETA.value = '';
  750. IntransitDate.value = '';
  751. break;
  752. }
  753. }
  754. },
  755. /**
  756. * 獲取簽名檔
  757. */
  758. fnGetSignatureFile = function (flag) {
  759. var sFileId = $('#SignatureFileId' + flag).val();
  760. if (sFileId) {
  761. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  762. Type: '',
  763. Params: {
  764. files: {
  765. ParentID: sFileId,
  766. OrgID: parent.OrgID
  767. }
  768. }
  769. }, function (res) {
  770. if (res.d) {
  771. var oFiles = $.parseJSON(res.d);
  772. if (oFiles.FileID) {
  773. oFiles.CreateDate = newDate(oFiles.CreateDate);
  774. var sHtml = $("#temp_files_list").render(oFiles);
  775. $('#section' + flag).hide();
  776. $('#ShowSignatureFile' + flag).html(sHtml);
  777. $('#ShowSignatureFile' + flag + ' .downloadfile').click(function () {
  778. var sPath = $(this).attr('data-path');
  779. DownLoadFile(sPath);
  780. });
  781. $('#ShowSignatureFile' + flag + ' .deletefile').click(function () {
  782. var sId = $(this).attr('data-fileid');
  783. // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  784. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  785. DelFile(sId).done(function () {
  786. fnGetSignatureFile(flag);
  787. });
  788. layer.close(index);
  789. });
  790. });
  791. }
  792. else {
  793. $('#ShowSignatureFile' + flag).html('');
  794. $('#section' + flag).show();
  795. }
  796. }
  797. });
  798. }
  799. else {
  800. if (flag == '') {
  801. fnInitfileInput('');
  802. }
  803. }
  804. },
  805. /**
  806. * 增加退運流程
  807. */
  808. fnAddReimport = function () {
  809. layer.open({
  810. type: 1,
  811. title: i18next.t('common.AddReimport'),// ╠common.AddReimport⇒增加退運╣
  812. area: ['300px', '120px'],//寬度
  813. shade: 0.75,//遮罩
  814. shadeClose: true,
  815. content: '<div class="pop-box">\
  816. <button type="button" data-i18n="common.SingleReturn" id="SingleReturn" class="btn-custom green">單筆退運</button>\
  817. <button type="button" data-i18n="common.MultipleReturn" id="MultipleReturn" class="btn-custom green">多筆退運</button>\
  818. </div>',//common.SingleReturn單筆退運common.MultipleReturn多筆退運
  819. success: function (layero, idx) {
  820. $('#SingleReturn').click(function () {
  821. fnAddNextReimport('one');
  822. fnAddReturnData('one');
  823. fnAddNextUpload(1, 'one');
  824. $('#ReImport1').find(':input').removeAttr('disabled');
  825. $('#ReImport1').find(':input[type=button]').attr('disabled', true);
  826. layer.close(idx);
  827. });
  828. $('#MultipleReturn').click(function () {
  829. fnAddNextReimport([{ index: '1' }, { index: '2' }]);
  830. fnAddReturnData([{ index: '1' }, { index: '2' }]);
  831. fnAddNextUpload(2, [{ index: '1' }, { index: '2' }]);
  832. $('#ReImport1,#ReImport2').find(':input').removeAttr('disabled');
  833. $('#ReImport1,#ReImport2').find(':input[type=button]').attr('disabled', true);
  834. layer.close(idx);
  835. });
  836. transLang(layero);
  837. }
  838. });
  839. },
  840. /**
  841. * 增加下一筆退運流程
  842. */
  843. fnAddNextReimport = function (data) {
  844. var iIndex = $('.flow').length;
  845. data = data == 'one' ? [{ index: iIndex, oneflow: true }] : data == undefined ? [{ index: iIndex }] : data;
  846. var sHtml = $("#temp_flows").render(data);
  847. $('#tab2').append(sHtml);
  848. fnSGMod();//上海駒驛須移除選項
  849. setFlowBox();
  850. transLang($('#tab2'));
  851. },
  852. /**
  853. * 增加退運資料
  854. */
  855. fnAddReturnData = function (data) {
  856. var iIndex = $('.flow').length - 1;
  857. data = data == 'one' ? [{ index: iIndex, oneflow: true }] : data == undefined ? [{ index: iIndex }] : data;
  858. var sHtml = $("#temp_returndata").render(data);
  859. $('#tab5').append(sHtml);
  860. var sNumber = $('#BoxNo').val(),
  861. sUnit = $('#Unit').val();
  862. $.each(data, function (i, _data) {
  863. if (sNumber) {
  864. $('#ReImportData' + _data.index + '_Number').val(sNumber);
  865. }
  866. if (sUnit) {
  867. $('#ReImportData' + _data.index + '_Unit').val(sUnit);
  868. }
  869. });
  870. $('.date-picker').datepicker({
  871. changeYear: true,
  872. changeMonth: true,
  873. altFormat: 'yyyy/MM/dd'
  874. });
  875. $('.Control_Transport').html(sTransportOptionsHtml);
  876. $('#tab5').find('.quickquery-city').off('keyup').on('keyup', function () {
  877. this.value = this.value.toUpperCase();
  878. }).on('blur', function () {
  879. var sId = this.value,
  880. oPort = Enumerable.From(saPort).Where(function (e) { return e.id == sId; });
  881. if (oPort.Count() === 1) {
  882. $(this).parent().next().next().find(':input').val(oPort.First().text);
  883. }
  884. }).autocompleter({
  885. // marker for autocomplete matches
  886. highlightMatches: true,
  887. // object to local or url to remote search
  888. source: saPort,
  889. // custom template
  890. template: '{{ id }} <span>({{ label }})</span>',
  891. // show hint
  892. hint: true,
  893. // abort source if empty field
  894. empty: false,
  895. // max results
  896. limit: 20,
  897. callback: function (value, index, selected) {
  898. if (selected) {
  899. var that = this;
  900. $(that).parent().find(':input').val(selected.id);
  901. $(that).parent().next().next().find(':input').val(selected.text);
  902. }
  903. }
  904. });
  905. transLang($('#tab5'));
  906. },
  907. /**
  908. * 增加下一筆上傳控件
  909. */
  910. fnAddNextUpload = function (flag, data) {
  911. var iIndex = $('.flow').length - 1;
  912. data = data == 'one' ? [{ index: iIndex, oneflow: true }] : data == undefined ? [{ index: iIndex }] : data;
  913. var sHtml = $("#temp_file_upload").render(data);
  914. $('#tab8').append(sHtml);
  915. if (flag == 2) {
  916. fnInitfileInput(1);
  917. fnInitfileInput(2);
  918. }
  919. else if (flag == 1) {
  920. fnInitfileInput(iIndex);
  921. }
  922. transLang($('#tab8'));
  923. },
  924. /**
  925. * 上傳控件註冊事件
  926. */
  927. fnInitUploadEvents = function () {
  928. $('.upload').off('click').click(function () {
  929. var that = this,
  930. sId = that.id,
  931. sIndex = $(that).attr('data-index') || '',
  932. sFileId = $('#SignatureFileId' + sIndex).val();
  933. if ($(that).parents('section').find('[type=file]')[0].files.length > 0) {
  934. //上傳文件
  935. $.ajaxFileUpload({
  936. url: '/Controller.ashx?action=upload&source=ExhibitionImport&userid=' + parent.UserID + '&orgid=' + parent.OrgID + '&parentid=' + sFileId,
  937. secureuri: false,
  938. fileElementId: 'fileInput' + sIndex,
  939. success: function (data, status) {
  940. $('#' + sId).parents('.form-group').find('.jFiler-items,.jFiler').remove();
  941. fnInitfileInput(sIndex);
  942. fnGetSignatureFile(sIndex);
  943. },
  944. error: function (data, status, e) {
  945. showMsg(i18next.t("message.FilesUpload_Failed"), 'error'); // ╠message.FilesUpload_Failed⇒文件上傳失敗╣
  946. }
  947. });
  948. }
  949. else {
  950. showMsg(i18next.t("message.PleaseSelectFile")); // ╠common.PleaseSelectFile⇒請選擇文件╣
  951. }
  952. });
  953. },
  954. /**
  955. * 下載簽收證明|回運指示單
  956. * @param {String}flowtype
  957. */
  958. fnToDownLoadSignDocuments = function (flowtype, dataidx, supplierid) {
  959. var fnDownload = function () {
  960. g_api.ConnectLite(sProgramId, 'OutputSignDocuments', {
  961. ImportBillNO: sDataId,
  962. Type: flowtype,
  963. FileType: dataidx === '0' ? 'pdf' : 'word',
  964. SupplierID: supplierid || ''
  965. }, function (res) {
  966. if (res.RESULT) {
  967. var sPath = res.DATA.rel;
  968. if (dataidx === '0') {
  969. var index = layer.open({
  970. type: 2,// ╠common.DownLoadSignDocuments_Preview⇒簽收證明預覽╣ ╠common.DownLoadReturnSheet_Preview⇒回運指示單預覽╣
  971. title: flowtype === 'Import' ? i18next.t('common.DownLoadSignDocuments_Preview') : i18next.t('common.DownLoadReturnSheet_Preview'),
  972. content: gServerUrl + '/' + sPath,
  973. area: ['900px', '500px'],
  974. maxmin: true
  975. });
  976. //layer.full(index); //弹出即全屏
  977. }
  978. else {
  979. DownLoadFile(sPath);
  980. }
  981. }
  982. else {// ╠common.Preview_Failed⇒預覽失敗╣ ╠common.DownLoad_Failed⇒下載失敗╣
  983. showMsg(i18next.t(dataidx === '0' ? 'common.Preview_Failed' : "common.DownLoad_Failed") + '<br>' + res.MSG, 'error');
  984. }
  985. }, function () {// ╠common.Preview_Failed⇒預覽失敗╣ ╠common.DownLoad_Failed⇒下載失敗╣
  986. showMsg(i18next.t(dataidx === '0' ? 'common.Preview_Failed' : "common.DownLoad_Failed"), 'error');
  987. }, true, i18next.t(dataidx === '0' ? 'message.Dataprocessing' : 'message.Downloading'));// ╠message.Dataprocessing⇒資料處理中...╣ ╠message.Downloading⇒文件下载中...╣
  988. };
  989. fnDownload();
  990. },
  991. /**
  992. * 設定流程頁簽
  993. */
  994. setFlowBox = function (flag) {
  995. var iFlowLength = $('.flow').length;
  996. if (iFlowLength > 1) {
  997. $('.addreimport').hide();
  998. }
  999. else {
  1000. $('.addreimport').show();
  1001. }
  1002. if ($('.addnextreimport').length > 1) {
  1003. $('.addnextreimport').not(':last').hide();
  1004. $('.addnextreimport:last').show();
  1005. }
  1006. if (iFlowLength >= 6 || iFlowLength == 2) {
  1007. $('.addnextreimport').remove();
  1008. }
  1009. if ($('#Import_complete').val() == 'Y') {
  1010. $('#Import').find('[name]').attr('disabled', true);
  1011. $('#Import').find(':input.complete').attr('disabled', true);
  1012. if (flag) {
  1013. $('#Import').find(':input.undo').removeAttr('disabled').off('click').click(function () {
  1014. var fnCallBack = function () {
  1015. $('#Import').find(':input').removeAttr('disabled');
  1016. $('#Import').find(':input.undo').attr('disabled', true);
  1017. $('#Import').find(':input[type=hidden]').val('');
  1018. };
  1019. // ╠message.IsSendEmailToCharGer⇒是否要寄送郵件通知負責業務人員?╣ ╠common.Tips⇒提示╣
  1020. layer.confirm(i18next.t('message.IsSendEmailToCharGer'), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  1021. fnSendEmail(0, fnCallBack);
  1022. layer.close(index);
  1023. }, function () {
  1024. fnCallBack();
  1025. });
  1026. });
  1027. }
  1028. $('.addreimport').removeAttr('disabled').off('click').click(function () {
  1029. fnAddReimport();
  1030. });
  1031. } else {
  1032. setSuccessBtn($('#Import'));
  1033. }
  1034. if (flag) {
  1035. $('#Import').find('.dropdown-toggle').removeAttr('disabled');
  1036. $('#Import').find('.downsigndoc').off('click').click(function () {
  1037. fnToDownLoadSignDocuments('Import', $(this).attr('data-index'));
  1038. });
  1039. }
  1040. if (oCurData.ReImports) {
  1041. $.each(oCurData.ReImports, function (idx, reImport) {
  1042. var iIndex = idx + 1,
  1043. oFlow = $('#ReImport' + iIndex);
  1044. if (reImport.ReImport && (reImport.ReImport.complete || $('#ReImport' + iIndex + '_complete').val())) {
  1045. oFlow.find('[name]').attr('disabled', true);
  1046. oFlow.find(':input.complete').attr('disabled', true);
  1047. oFlow.find(':input.undo').removeAttr('disabled').off('click').click(function () {
  1048. var fnCallBack = function () {
  1049. oFlow.find(':input').removeAttr('disabled');
  1050. oFlow.find(':input.undo').attr('disabled', true);
  1051. oFlow.find(':input[type=hidden]').val('');
  1052. };
  1053. // ╠message.IsSendEmailToCharGer⇒是否要寄送郵件通知負責業務人員?╣ ╠common.Tips⇒提示╣
  1054. layer.confirm(i18next.t('message.IsSendEmailToCharGer'), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  1055. fnSendEmail(iIndex, fnCallBack);
  1056. layer.close(index);
  1057. }, function () {
  1058. fnCallBack();
  1059. });
  1060. });
  1061. } else {
  1062. setSuccessBtn(oFlow);
  1063. }
  1064. if (flag) {
  1065. oFlow.find('.dropdown-toggle').removeAttr('disabled');
  1066. oFlow.find('.downsigndoc').off('click').click(function () {
  1067. fnToDownLoadSignDocuments('ReImport' + (oCurData.ReImports.length > 1 ? '-' + iIndex : ''), $(this).attr('data-index'));
  1068. });
  1069. }
  1070. });
  1071. }
  1072. $('.addnextreimport').off('click').click(function () {
  1073. fnAddNextReimport();
  1074. fnAddReturnData();
  1075. fnAddNextUpload(1);
  1076. });
  1077. $('.ui-icon-close').off('click').on('click', function () {
  1078. var index = $(this).attr('data-index');
  1079. switch (index) {
  1080. case '0':
  1081. $(this).parents('.form-group').remove();
  1082. break;
  1083. case '1':
  1084. $('.flow').not('#Import').remove();
  1085. $('#tab5').html('');
  1086. $('#filepanel_1,#filepanel_2,#filepanel_3,#filepanel_4,#filepanel_5').remove();
  1087. $('#filecontrol_1,#filecontrol_2,#filecontrol_3,#filecontrol_4,#filecontrol_5').remove();
  1088. break;
  1089. case '3':
  1090. $('#ReImport3,#ReImport4,#ReImport5').remove();
  1091. $('#ReImportData_3,#ReImportData_4,#ReImportData_5').remove();
  1092. $('#filepanel_3,#filepanel_4,#filepanel_5').remove();
  1093. $('#filecontrol_3,#filecontrol_4,#filecontrol_5').remove();
  1094. break;
  1095. case '4':
  1096. $('#ReImport4,#ReImport5').remove();
  1097. $('#ReImportData_4,#ReImportData_5').remove();
  1098. $('#filepanel_4,#filepanel_5').remove();
  1099. $('#filecontrol_4,#filecontrol_5').remove();
  1100. break;
  1101. case '5':
  1102. $('#ReImport5').remove();
  1103. $('#ReImportData_5').remove();
  1104. $('#filepanel_5').remove();
  1105. $('#filecontrol_5').remove();
  1106. break;
  1107. }
  1108. setFlowBox();
  1109. });
  1110. fntBindCheckBoxEvent();
  1111. },
  1112. /**
  1113. * 設定客戶下拉選單
  1114. */
  1115. fnSetCustomersDrop = function () {
  1116. return g_api.ConnectLite(Service.sys, 'GetCustomerlist', {}, function (res) {
  1117. if (res.RESULT) {
  1118. saCustomers = res.DATA.rel;
  1119. var saContactors = [];
  1120. if (saCustomers.length > 0) {
  1121. sCustomersOptionsHtml = createOptions(saCustomers, 'id', 'text');
  1122. $('#Supplier').html(sCustomersOptionsHtml).on('change', function () {
  1123. var sId = this.value;
  1124. if (sId) {
  1125. var oCur = Enumerable.From(saCustomers).Where(function (item) { return item.id === sId; }).First();
  1126. saContactors = JSON.parse(oCur.Contactors || '[]');
  1127. $('#Contactor').html(createOptions(saContactors, 'guid', 'FullName')).off('change').on('change', function () {
  1128. var sContactor = this.value;
  1129. if (sContactor) {
  1130. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  1131. Type: '',
  1132. Params: {
  1133. customers: {
  1134. guid: sId
  1135. },
  1136. }
  1137. }, function (res) {
  1138. var oRes = $.parseJSON(res.d);
  1139. if (oRes.Contactors) {
  1140. oRes.Contactors = $.parseJSON(oRes.Contactors || '[]');
  1141. var sContactorName = $(this).find('option:selected').text(),
  1142. oContactor = Enumerable.From(oRes.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
  1143. $('#SupplierEamil').val(oContactor.Email);
  1144. $('#Telephone').val(oContactor.TEL1);
  1145. $('#SitiContactor').val(sContactorName);
  1146. $('#SitiTelephone').val(oContactor.TEL1);
  1147. }
  1148. });
  1149. }
  1150. else {
  1151. $('#SupplierEamil').val('');
  1152. $('#Telephone').val('');
  1153. $('#SitiContactor').val('');
  1154. $('#SitiTelephone').val('');
  1155. }
  1156. });
  1157. }
  1158. else {
  1159. $('#Contactor').html(createOptions([]));
  1160. $('#Telephone').val('');
  1161. }
  1162. });
  1163. var saContactors_Agent = [];
  1164. $('#Agent').html(sCustomersOptionsHtml).on('change', function () {
  1165. var sId = this.value;
  1166. if (sId) {
  1167. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == sId; }).First();
  1168. saContactors_Agent = JSON.parse(oCur.Contactors || '[]');
  1169. $('#AgentContactor').html(createOptions(saContactors_Agent, 'guid', 'FullName')).off('change').on('change', function () {
  1170. var sContactor = this.value;
  1171. if (sContactor) {
  1172. var oContactor = Enumerable.From(saContactors_Agent).Where(function (e) { return e.guid == sContactor; }).First();
  1173. $('#AgentEmail,#RefNumberEmail').val(oContactor.Email);
  1174. $('#AgentTelephone').val(oContactor.TEL1);
  1175. }
  1176. else {
  1177. $('#AgentEmail,#RefNumberEmail').val('');
  1178. $('#AgentTelephone').val('');
  1179. }
  1180. bRequestStorage = true;
  1181. });
  1182. }
  1183. else {
  1184. $('#AgentContactor').html(createOptions([]));
  1185. }
  1186. });
  1187. $('#ImportPerson').html(sCustomersOptionsHtml);
  1188. var saNotAuditCurs = Enumerable.From(saCustomers).Where(function (e) { return e.IsAudit == 'Y'; }).ToArray();
  1189. sCustomersNotAuditOptionsHtml = createOptions(saNotAuditCurs, 'id', 'text');
  1190. }
  1191. select2Init();
  1192. }
  1193. });
  1194. },
  1195. /**
  1196. * 抓取用戶角色
  1197. */
  1198. fnInitfileInput = function (flag) {
  1199. $('#upload' + flag).before('<input class="w100p" multiple type="file" class="displayNone" name="files[]" id="fileInput' + flag + '" />');
  1200. if (!$('#SignatureFileId' + flag).val()) {
  1201. $('#SignatureFileId' + flag).val(guid());
  1202. }
  1203. $('#fileInput' + flag).filer({
  1204. limit: 1,
  1205. maxSize: 50,
  1206. changeInput: true,
  1207. showThumbs: true,
  1208. afterShow: function () {
  1209. transLang($('#tab8'));
  1210. },
  1211. onEmpty: function () {
  1212. setTimeout(function () {
  1213. transLang($('#tab8'));
  1214. }, 100);
  1215. },
  1216. captions: {
  1217. errors: {
  1218. filesLimit: function (opt) {
  1219. return i18next.t('common.FileLimit').replace('{limit}', opt.limit);// ╠common.FileLimit⇒最多能上傳{limit}個文件╣
  1220. }
  1221. }
  1222. }
  1223. });
  1224. fnInitUploadEvents();
  1225. transLang($('#tab8'));
  1226. },
  1227. /**
  1228. * 獲取展覽名稱資料
  1229. */
  1230. fnGetPopData_ImportData = function (args) {
  1231. args = args || {};
  1232. args.sortField = args.sortField || 'RefNumber';
  1233. args.sortOrder = args.sortOrder || 'desc';
  1234. args.pageIndex = args.pageIndex || 1;
  1235. args.pageSize = args.pageSize || 10;
  1236. args.ImportBillName = $('#Pop_ImportBillName').val();
  1237. args.ImportBillEName = $('#Pop_ImportBillEName').val();
  1238. args.Supplier = $('#Pop_Supplier').val();
  1239. args.Agent = $('#Pop_Agent').val();
  1240. return g_api.ConnectLite(sQueryPrgId, 'GetExcel', args);
  1241. },
  1242. /**
  1243. * 處理多廠商資料行
  1244. * @param (int) type 編輯類型
  1245. * @return (object)item 當前資料
  1246. */
  1247. fnRenderSupplierInfo = function (type, item) {
  1248. var oDiv = $('<div>', {
  1249. html: '<div class="form-group">\
  1250. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.Contactor">聯絡人</span></label>\
  1251. <div class="col-sm-4" data-box="Contactor">\
  1252. <select class="form-control w100p" data-id="Contactor"></select>\
  1253. </div>\
  1254. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.Telephone">電話</span></label>\
  1255. <div class="col-sm-4" data-box="Telephone">\
  1256. <input type="text" class="form-control w100p" data-id="Telephone" maxlength="20" data-keytelno="Y">\
  1257. </div>\
  1258. </div>\
  1259. <div class="form-group">\
  1260. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.ApproachTime">進場時間</span></label>\
  1261. <div class="col-sm-4" data-box="ApproachTime">\
  1262. <input type="text" class="form-control w100p date" data-id="ApproachTime" maxlength="16">\
  1263. </div>\
  1264. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.ExitTime">退場時間</span></label>\
  1265. <div class="col-sm-4" data-box="ExitTime">\
  1266. <input type="text" class="form-control w100p date" data-id="ExitTime" maxlength="16">\
  1267. </div>\
  1268. </div>\
  1269. <div class="form-group">\
  1270. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.Hall">館別</span></label>\
  1271. <div class="col-sm-4" data-box="Hall">\
  1272. <select class="form-control w100p" data-id="Hall"></select>\
  1273. </div>\
  1274. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.MuseumMumber">攤位</span></label>\
  1275. <div class="col-sm-4" data-box="MuseumMumber">\
  1276. <input type="text" class="form-control w100p" data-id="MuseumMumber" maxlength="10">\
  1277. </div>\
  1278. </div>\
  1279. <div class="form-group">\
  1280. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.BoxNo">件數</span></label>\
  1281. <div class="col-sm-4" data-box="BoxNo">\
  1282. <div class="col-sm-6" style="padding:0">\
  1283. <input type="text" class="form-control w100p" data-id="BoxNo" data-keyint="Y" maxlength="20" placeholderid="ExhibitionImport_Upd.Instruction_BoxNo">\
  1284. </div>\
  1285. <div class="col-sm-6" style="padding:0">\
  1286. <input type="text" class="form-control w100p" data-id="Unit" maxlength="10">\
  1287. </div>\
  1288. </div>\
  1289. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.Weight">重量</span></label>\
  1290. <div class="col-sm-4" data-box="Weight">\
  1291. <div class="input-group input-append">\
  1292. <input type="text" class="form-control w100p" data-id="Weight" data-keyintp3="Y" maxlength="20" placeholderid="ExhibitionImport_Upd.Instruction_Weight">\
  1293. <span class="input-group-addon cusgroup-addon">\
  1294. KG\
  1295. </span>\
  1296. </div>\
  1297. </div>\
  1298. </div>\
  1299. <div class="form-group">\
  1300. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.Volume">材積(CBM)</span></label>\
  1301. <div class="col-sm-4" data-box="Volume">\
  1302. <div class="input-group input-append">\
  1303. <input type="text" class="form-control w100p" data-id="Volume" data-keyintp2="Y" maxlength="50" placeholderid="ExhibitionImport_Upd.Instruction_Volume">\
  1304. <span class="input-group-addon cusgroup-addon">\
  1305. CBM\
  1306. </span>\
  1307. </div>\
  1308. </div>\
  1309. <label class="col-sm-2 control-label"><span data-i18n="ExhibitionImport_Upd.VolumeWeight">材積重(C.W.)</span></label>\
  1310. <div class="col-sm-4" data-box="VolumeWeight">\
  1311. <div class="input-group input-append">\
  1312. <input type="text" class="form-control w100p" data-id="VolumeWeight" data-keyintp1="Y" maxlength="50" placeholderid="ExhibitionImport_Upd.Instruction_VolumeWeight">\
  1313. <span class="input-group-addon cusgroup-addon">\
  1314. KG\
  1315. </span>\
  1316. </div>\
  1317. </div>\
  1318. </div>\
  1319. <div class="form-group">\
  1320. <label class="col-sm-2 control-label"><span data-i18n="common.Memo">備註</span></label>\
  1321. <div class="col-sm-10" data-box="Memo">\
  1322. <textarea class="form-control" data-id="Memo" rows="3" cols="20"></textarea>\
  1323. </div>\
  1324. </div>'
  1325. });
  1326. if (type === 1) {
  1327. oDiv.find('[data-box]').each(function () {
  1328. var sId = $(this).attr('data-box'),
  1329. sVal = item[sId];
  1330. if (sId === 'Contactor') {
  1331. $(this).text(item['ContactorName']);
  1332. }
  1333. else if (sId === 'Hall') {
  1334. $(this).text(item['HallName']);
  1335. }
  1336. else {
  1337. $(this).text(sVal);
  1338. }
  1339. if (sId === 'BoxNo') {
  1340. $(this).append(' ' + item.Unit);
  1341. }
  1342. $(this).addClass('span-text');
  1343. });
  1344. }
  1345. else {
  1346. oDiv.find('.date').datetimepicker({
  1347. changeYear: true,
  1348. changeMonth: true,
  1349. altFormat: 'yyyy/MM/dd HH:mm'
  1350. });
  1351. oDiv.find('[data-id="BoxNo"],[data-id="Weight"],[data-id="Volume"],[data-id="VolumeWeight"],[data-id="Unit"]').on('blur', function () {
  1352. var sId = $(this).attr('data-id'),
  1353. sVal = this.value,
  1354. iLastVal = 0;
  1355. if (sId === 'Unit') {
  1356. $('#Unit').val(sVal);
  1357. }
  1358. else {
  1359. $.each(oCurData.Suppliers, function (idx, supplier) {
  1360. if (item.guid != supplier.guid) {
  1361. iLastVal += parseFloat(supplier[sId] || 0);
  1362. }
  1363. });
  1364. iLastVal += parseFloat(sVal === '' ? 0 : sVal);
  1365. $('#' + sId).val(iLastVal);
  1366. if (sId === 'Volume') {
  1367. var sVolumeWeight = (Math.floor(sVal * 100) / 100 * 167).toFloat(2);
  1368. $('[data-id="VolumeWeight"]').val(sVolumeWeight);
  1369. item.VolumeWeight = sVolumeWeight;
  1370. }
  1371. }
  1372. });
  1373. oDiv.find('[data-id="Hall"]').html($('#Hall').html());
  1374. if (type === 3) {
  1375. item.Contactors = [];
  1376. if (item.SupplierID) {
  1377. var saCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == item.SupplierID; }).ToArray();
  1378. if (saCur.length > 0) {
  1379. item.Contactors = JSON.parse(saCur[0].Contactors || '[]');
  1380. }
  1381. }
  1382. oDiv.find('[data-id="Contactor"]').html(createOptions(item.Contactors, 'guid', 'FullName')).on('change', function () {
  1383. var sContactor = this.value;
  1384. if (sContactor) {
  1385. var oContactor = Enumerable.From(item.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
  1386. oDiv.find('[data-id="Telephone"]').val(oContactor.TEL1);
  1387. oAddItem.Contactor = sContactor;
  1388. oAddItem.ContactorName = oContactor.FullName;
  1389. oAddItem.Telephone = oContactor.TEL1;
  1390. }
  1391. else {
  1392. oAddItem.Contactor = '';
  1393. oAddItem.ContactorName = '';
  1394. oAddItem.Telephone = '';
  1395. oDiv.find('[data-id="Telephone"]').val('');
  1396. }
  1397. });
  1398. oDiv.find('[data-id]').each(function () {
  1399. var sId = $(this).attr('data-id');
  1400. this.value = item[sId];
  1401. });
  1402. }
  1403. else {
  1404. oDiv.find('[data-id="Contactor"]').html(createOptions([]));
  1405. }
  1406. oDiv.find('[data-id]').on('change', function () {
  1407. var sId = $(this).attr('data-id'),
  1408. sVal = this.value;
  1409. item[sId] = sVal;
  1410. if (sId === 'Contactor') {
  1411. if (sVal) {
  1412. var sText = $(this).find('option:selected').text();
  1413. item.ContactorName = sText;
  1414. }
  1415. else {
  1416. item.ContactorName = '';
  1417. }
  1418. }
  1419. else if (sId === 'Hall') {
  1420. if (sVal) {
  1421. var sText = $(this).find('option:selected').text();
  1422. item.HallName = sText;
  1423. }
  1424. else {
  1425. item.HallName = '';
  1426. }
  1427. }
  1428. });
  1429. }
  1430. transLang(oDiv);
  1431. return oDiv;
  1432. },
  1433. /*
  1434. * 取得當年度幣值設定
  1435. */
  1436. fnGetCurrencyThisYear = function (BillCreateTime) {
  1437. return fnGetCurrencyByYear({
  1438. Year: BillCreateTime, CallBack: function (data) {
  1439. saAccountingCurrency = data;
  1440. sAccountingCurrencyOptionsHtml = createOptions(saAccountingCurrency, 'ArgumentID', 'ArgumentValue', false, 'Correlation');
  1441. }
  1442. });
  1443. },
  1444. /**------------------------帳單部分---------------------------Start*/
  1445. /**
  1446. * 檢核審核時間有沒有符合被鎖定的日期
  1447. * @param {Object}date 審核時間
  1448. */
  1449. fnCheckAuditDate = function (date) {
  1450. var bRel = true,
  1451. dNow = new Date(),
  1452. dAuditDate = new Date();
  1453. if (date) {
  1454. dAuditDate = new Date(date);
  1455. if (dNow.getMonth() > dAuditDate.getMonth() && dNow.getDate() > 4) {
  1456. bRel = false;
  1457. }
  1458. }
  1459. return bRel;
  1460. },
  1461. /**
  1462. * 審核通過後禁用頁面欄位
  1463. * @param {Object}dom 當前區塊
  1464. */
  1465. fnSetDisabled = function (dom, data) {
  1466. //AuditVal(0:初始狀態;1:提交審核(報價/帳單);2:(報價/帳單)審核(通過);)
  1467. if (data) {
  1468. dom.find('.bill-status-box').show();
  1469. dom.find('.notpass-reason-box').hide();
  1470. let DraftRecipt = false;
  1471. switch (data.AuditVal) {
  1472. case '0':// ╠common.NotAudit⇒未提交審核╣
  1473. dom.find('.bill-status').text(i18next.t("common.NotAudit")).css('color', 'red');
  1474. dom.find('.submittoaudit,.synquote,.alreadyaudit').show();
  1475. dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
  1476. dom.find('.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1477. if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
  1478. if (data.FeeItems.length > 0) {
  1479. dom.find('.submittoaudit').removeAttr('disabled');
  1480. dom.parent().next().find('.synquote').removeAttr('disabled');
  1481. }
  1482. else {
  1483. dom.find('.submittoaudit').prop('disabled', true);
  1484. dom.parent().next().find('.synquote').prop('disabled', true);
  1485. }
  1486. }
  1487. else {
  1488. if (data.KeyName === 'Bill') {
  1489. dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1490. dom.find('.icon-p').addClass('disabled');
  1491. }
  1492. }
  1493. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1494. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1495. }
  1496. else {
  1497. dom.find('.billvoid').hide();
  1498. }
  1499. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1500. dom.find('.billdelete').removeAttr('disabled');
  1501. }
  1502. else {
  1503. dom.find('.billdelete').hide();
  1504. }
  1505. dom.find('.bills-print').removeAttr('disabled');
  1506. DraftRecipt = true;
  1507. break;
  1508. case '1':// ╠common.InAudit⇒提交審核中╣
  1509. dom.find('.bill-status').text(i18next.t("common.InAudit")).css('color', 'blue');
  1510. dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.cancelaudi').hide();
  1511. dom.find('.submittoaudit,.synquote,.alreadyaudit,.reedit,.cancelreedit').show();
  1512. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.submittoaudit,.synquote,.billpost,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1513. dom.find('.icon-p').addClass('disabled');
  1514. if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
  1515. dom.find('.reedit').removeAttr('disabled');
  1516. }
  1517. if (parent.UserInfo.UsersDown.indexOf(oCurData.ResponsiblePerson) > -1 || parent.UserInfo.UsersBranch.indexOf(oCurData.ResponsiblePerson) > -1 || parent.SysSet.BillAuditor.indexOf(parent.UserInfo.MemberID) > -1) {
  1518. dom.find('.alreadyaudit').removeAttr('disabled');
  1519. }
  1520. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1521. dom.find('.reedit,.cancelreedit').hide();
  1522. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1523. }
  1524. else {
  1525. dom.find('.billvoid').hide();
  1526. }
  1527. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1528. dom.find('.billdelete').removeAttr('disabled');
  1529. }
  1530. else {
  1531. dom.find('.billdelete').hide();
  1532. }
  1533. dom.find('.bills-print').removeAttr('disabled');
  1534. break;
  1535. case '2':// ╠common.Audited⇒已審核╣
  1536. dom.find('.bill-status').text(i18next.t("common.Audited")).css('color', 'green');
  1537. dom.find('.submittoaudit,.synquote,.alreadyaudit,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
  1538. dom.find('.billpost,.cancelpost,.cancelaudi,.writeoff').show();
  1539. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.submittoaudit,.synquote,.billpost,.alreadyaudit,.cancelpost,.writeoff,[data-id="Payer"]').attr('disabled', 'disabled');
  1540. dom.find('.icon-p').addClass('disabled');
  1541. dom.find('.bills-print').removeAttr('disabled');
  1542. if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
  1543. dom.find('.billpost,.receiptnumberbtn,.checkauditdate').removeAttr('disabled');
  1544. }
  1545. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1546. dom.find('.prepay,.mprepay,.cancelaudi,.billvoid,.writeoff').removeAttr('disabled');
  1547. }
  1548. else {
  1549. dom.find('.billvoid').hide();
  1550. }
  1551. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1552. dom.find('.billdelete').removeAttr('disabled');
  1553. dom.find('.billpost,.cancelpost').hide();
  1554. }
  1555. else {
  1556. dom.find('.billdelete').hide();
  1557. }
  1558. break;
  1559. case '3':// ╠common.NotPass⇒不通過╣
  1560. dom.find('.notpass-reason-text').text(data.NotPassReason || '');
  1561. dom.find('.bill-status').text(i18next.t("common.NotPass")).css('color', 'red');
  1562. dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
  1563. dom.find('.submittoaudit,.synquote,.alreadyaudit,.notpass-reason-box').show();
  1564. if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
  1565. if (data.FeeItems.length > 0) {
  1566. dom.find('.submittoaudit').removeAttr('disabled');
  1567. dom.parent().next().find('.synquote').removeAttr('disabled');
  1568. }
  1569. else {
  1570. dom.find('.submittoaudit').prop('disabled', true);
  1571. dom.parent().next().find('.synquote').prop('disabled', true);
  1572. }
  1573. }
  1574. else {
  1575. dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1576. dom.find('.icon-p').addClass('disabled');
  1577. }
  1578. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1579. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1580. }
  1581. else {
  1582. dom.find('.billvoid').hide();
  1583. }
  1584. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1585. dom.find('.billdelete').removeAttr('disabled');
  1586. }
  1587. else {
  1588. dom.find('.billdelete').hide();
  1589. }
  1590. break;
  1591. case '4':// ╠common.NotPass⇒已銷帳╣
  1592. dom.find('.bill-status').text(i18next.t("common.HasBeenRealized")).css('color', 'red');
  1593. dom.find('.submittoaudit,.synquote,.alreadyaudit,.cancelaudi,.billpost,.cancelpost,.writeoff,.reedit,.cancelreedit').hide();
  1594. dom.find('.canceloff').show();
  1595. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.submittoaudit,.synquote,.billpost').attr('disabled', 'disabled');
  1596. dom.find('.icon-p').addClass('disabled');
  1597. dom.find('.bills-print').removeAttr('disabled');
  1598. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1599. dom.find('.canceloff,.billvoid').removeAttr('disabled');
  1600. }
  1601. else {
  1602. dom.find('.billvoid').hide();
  1603. }
  1604. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1605. dom.find('.billdelete').removeAttr('disabled');
  1606. }
  1607. else {
  1608. dom.find('.billdelete').hide();
  1609. }
  1610. break;
  1611. case '5':// ╠common.HasBeenPost⇒已過帳╣
  1612. dom.find('.bill-status').text(i18next.t("common.HasBeenPost")).css('color', 'green');
  1613. dom.find('.billpost,.submittoaudit,.synquote,.alreadyaudit,.cancelaudi,.reedit,.cancelreedit').hide();
  1614. dom.find('.cancelpost,.writeoff,.canceloff').show();
  1615. dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.bills-print,.submittoaudit,.synquote,.billpost').attr('disabled', 'disabled');
  1616. dom.find('.icon-p').addClass('disabled');
  1617. dom.find('.bills-print').removeAttr('disabled');
  1618. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1619. dom.find('.cancelpost,.writeoff,.billvoid').removeAttr('disabled');
  1620. }
  1621. else {
  1622. dom.find('.billvoid').hide();
  1623. }
  1624. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1625. dom.find('.billdelete').removeAttr('disabled');
  1626. }
  1627. else {
  1628. dom.find('.billdelete').hide();
  1629. }
  1630. break;
  1631. case '6':// ╠common.HasVoid⇒已作廢╣
  1632. dom.find('.notpass-reason-text').text(data.VoidReason || '');
  1633. dom.find('.bill-status').text(i18next.t("common.HasVoid")).css('color', '#b2b1b1');
  1634. dom.find('button').not('.plusfeeitem').hide();
  1635. dom.find('.notpass-reason-box').show();
  1636. dom.find(':input,textarea').attr('disabled', 'disabled');
  1637. dom.find('.icon-p').addClass('disabled');
  1638. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1639. dom.find('.billvoid').removeAttr('disabled');
  1640. }
  1641. break;
  1642. case '7':// ╠common.HasReEdit⇒抽單中╣
  1643. dom.find(':input,textarea').removeAttr('disabled');
  1644. dom.find('.icon-p').removeClass('disabled');
  1645. dom.find('.bill-status').text(i18next.t("common.HasReEdit")).css('color', 'blue');
  1646. dom.find('.submittoaudit,.synquote,.alreadyaudit').show();
  1647. dom.find('.billpost,.cancelpost,.writeoff,.canceloff').hide();
  1648. dom.find('.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.bills-print,.submittoaudit,.synquote,.reedit').attr('disabled', 'disabled');
  1649. if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {//如果有資料且是null或者N
  1650. dom.find('.cancelreedit').removeAttr('disabled');
  1651. }
  1652. else {
  1653. if (data.KeyName === 'Bill') {
  1654. dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
  1655. dom.find('.icon-p').addClass('disabled');
  1656. }
  1657. }
  1658. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  1659. dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
  1660. }
  1661. else {
  1662. dom.find('.billvoid').hide();
  1663. }
  1664. if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
  1665. dom.find('.billdelete').removeAttr('disabled');
  1666. }
  1667. else {
  1668. dom.find('.billdelete').hide();
  1669. }
  1670. break;
  1671. }
  1672. if (DraftRecipt) {
  1673. dom.find("[data-action='Print_Receipt']").hide();
  1674. dom.find("[data-action='Download_Receipt']").hide();
  1675. }
  1676. else {
  1677. dom.find("[data-action='Print_Receipt']").show();
  1678. dom.find("[data-action='Download_Receipt']").show();
  1679. }
  1680. if (parent.UserInfo.roles.indexOf('Business') > -1) {
  1681. dom.find('[data-id="ExchangeRate"]').attr('disabled', 'disabled');
  1682. }
  1683. fnOpenAccountingArea(dom.find('.OnlyForAccounting'), parent.UserInfo.roles);
  1684. }
  1685. },
  1686. /**
  1687. * 綁定費用項目
  1688. * @param {HTMLELment} dom 當前標籤
  1689. * @param {HTMLELment} parentdata 父層標籤
  1690. * @param {Object} data 當前資料
  1691. * @param {String} flag 綁定狀態
  1692. */
  1693. fnBindFeeItem = function (dom, parentdata, data, flag) {
  1694. $.each(data.FeeItems, function (idx, item) {
  1695. item.OrderBy = idx + 1;
  1696. item.FinancialUnitPrice = parseFloat((item.FinancialUnitPrice || '0').toString().replaceAll(',', ''));
  1697. item.FinancialAmount = parseFloat((item.FinancialAmount || '0').toString().replaceAll(',', ''));
  1698. item.FinancialTWAmount = parseFloat((item.FinancialTWAmount || '0').toString().replaceAll(',', ''));
  1699. item.FinancialTax = parseFloat((item.FinancialTax || '0').toString().replaceAll(',', ''));
  1700. });
  1701. data.FeeItems = Enumerable.From(data.FeeItems).OrderBy("x=>x.OrderBy").ToArray();
  1702. var sFeeItemsHtml = '',
  1703. iSubtotal = 0,
  1704. iSubtotal_Tax = 0,
  1705. iSubtotal_NoTax = 0,
  1706. iTaxtotal = 0,
  1707. iTaxSubtotal = 0,
  1708. oFinancial = dom.parents('.financial'),
  1709. sDomId = dom.attr('data-id'),
  1710. bForn = (data.Currency === undefined || data.Currency === 'NTD'),
  1711. iOldBoxTotal = parseFloat((oFinancial.find('.boxtotal').val() || '0').replaceAll(',', '')),
  1712. oTab = dom.parents('.tab-pane');
  1713. $.each(data.FeeItems, function (idx, item) {
  1714. sFeeItemsHtml += '<tr>'
  1715. + '<td class="wcenter">' + (idx + 1) + '</td>'
  1716. + '<td class="wcenter">' + item.FinancialCode + '</td>'
  1717. + '<td>' + (!item.FinancialCostStatement ? item.Memo : item.FinancialCostStatement + (!item.Memo ? '' : '(' + item.Memo + ')')) + '</td>'
  1718. + '<td class="wcenter">' + item.FinancialCurrency + '</td>'
  1719. + '<td class="wright">' + fMoney(item.FinancialUnitPrice, 2) + '</td>'
  1720. + '<td class="wcenter">' + item.FinancialNumber + '</td>'
  1721. + '<td>' + item.FinancialUnit + '</td>'
  1722. + '<td class="wright">' + fMoney(item.FinancialAmount, 2) + '</td>'
  1723. + '<td class="wcenter">' + item.FinancialExchangeRate + '</td>'
  1724. + '<td class="wright">' + fMoney(item.FinancialTWAmount, 2) + '</td>'
  1725. + '<td class="wcenter">' + item.FinancialTaxRate + '</td>'
  1726. + '<td class="wright">' + fMoney(item.FinancialTax, 2) + '</td>'
  1727. + (data.KeyName === 'ActualCost' ? '<td class="wcenter billpayer w15p " data-billno="' + (item.BillNO || '') + '" data-value="' + item.guid + '"></td>' : '')
  1728. + (!flag ? '<td class="wcenter">'
  1729. + '<div class="fa-item col-sm-3"><i class="glyphicon glyphicon-pencil icon-p" data-value="' + item.guid + '" title="編輯"></i></div>'
  1730. + '<div class="fa-item col-sm-3"><i class="glyphicon glyphicon-trash icon-p" data-value="' + item.guid + '" title="刪除"></i></div>'
  1731. + ((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>')
  1732. + ((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>')
  1733. + '</td>' : '') +
  1734. +'</tr>';
  1735. if (item.FinancialTaxRate.toString().replace('%', '') !== '0') {
  1736. iSubtotal_Tax += parseFloat(item.FinancialTWAmount);
  1737. }
  1738. else {
  1739. iSubtotal_NoTax += parseFloat(item.FinancialTWAmount);
  1740. }
  1741. });
  1742. //計算總計(total)依序:1.參數的幣值 2.抓到財務的Currency設定 3.再來設定台幣。
  1743. var CurrencyType = (data.Currency || oFinancial.find('[data-id="Currency"]').val()) || FeeItemCurrency;
  1744. dom.html(sFeeItemsHtml);
  1745. iSubtotal_Tax = fnRound(iSubtotal_Tax, data.Currency);
  1746. iSubtotal_NoTax = fnRound(iSubtotal_NoTax, data.Currency);
  1747. iSubtotal = fnRound(iSubtotal_Tax + iSubtotal_NoTax, CurrencyType);
  1748. var iTaxRate = parent.SysSet.TaxRate.toPoint();
  1749. iTaxtotal = fnRound(iSubtotal_Tax * (iTaxRate === 0 ? 0.05 : iTaxRate), CurrencyType);
  1750. iTaxSubtotal = iSubtotal + iTaxtotal;
  1751. oFinancial.find('.subtotal').val(fMoney(iSubtotal, 2, CurrencyType));
  1752. oFinancial.find('.taxtotal').val(fMoney(iTaxtotal, 2, CurrencyType));
  1753. oFinancial.find('.boxtotal').val(fMoney(iTaxSubtotal, 2, CurrencyType));
  1754. data.AmountSum = iSubtotal;
  1755. data.TaxSum = iTaxtotal;
  1756. data.AmountTaxSum = iTaxSubtotal;
  1757. switch (data.KeyName) {
  1758. case 'ActualCost':
  1759. if (oTab[0].id === 'tab4') {
  1760. $('#tab4 .topshowsum').show();
  1761. $('#tab4 .actualsum').val(fMoney(iTaxSubtotal, 2, data.Currency));
  1762. if (parentdata.ActualCost.AmountTaxSum > parentdata.EstimatedCost.AmountTaxSum) {
  1763. $('#tab4 #warnning_tips').show();
  1764. }
  1765. else {
  1766. $('#tab4 #warnning_tips').hide();
  1767. }
  1768. }
  1769. else if (oTab[0].id === 'tab10') {
  1770. oFinancial.find('.actualsum').val(fMoney(iTaxSubtotal, 2, data.Currency));
  1771. var iAcount = 0;
  1772. $.each(parentdata.Bills, function (idx, _bill) {
  1773. if (_bill.AuditVal !== '6') {
  1774. iAcount += _bill.AmountTaxSum;
  1775. }
  1776. });
  1777. oFinancial.find('.amountsum').val(fMoney(iAcount, 2, data.Currency));
  1778. if (parentdata.ActualCost.AmountTaxSum > parentdata.EstimatedCost.AmountTaxSum) {
  1779. oFinancial.parent().prev().find('.warnningtips').show();
  1780. }
  1781. else {
  1782. oFinancial.parent().prev().find('.warnningtips').hide();
  1783. }
  1784. }
  1785. break;
  1786. case 'EstimatedCost':
  1787. if (oTab[0].id === 'tab3') {
  1788. $('#tab3 .estimatedcostsum').val(fMoney(iSubtotal, 2, data.Currency));
  1789. }
  1790. else if (oTab[0].id === 'tab9') {
  1791. //增加退運報價/預估成本-預估成本累加
  1792. let Return_Estimatedcostsum = $('#tab9 .return_estimatedcostsum').val();
  1793. let Current_Return_Estimatedcostsum = parseFloat((Return_Estimatedcostsum || '0').toString().replaceAll(',', ''));
  1794. $('#tab9 .return_estimatedcostsum').val(fMoney(Current_Return_Estimatedcostsum + iSubtotal, 2, data.Currency));
  1795. }
  1796. break;
  1797. case 'Bill':
  1798. var iAdvance = parseFloat(oFinancial.find('.prepay').val().replaceAll(',', '')),
  1799. iExchangeRate = data.ExchangeRate || 1;
  1800. data.TotalReceivable = iTaxSubtotal - iAdvance;
  1801. oFinancial.find('.subtotal').val(fMoney(iSubtotal, 2, data.Currency));
  1802. oFinancial.find('.taxtotal').val(fMoney(iTaxtotal, 2, data.Currency));
  1803. oFinancial.find('.boxtotal').val(fMoney(iTaxSubtotal, 2, data.Currency));
  1804. oFinancial.find('.paytotal').val(fMoney(iTaxSubtotal - iAdvance, 2, data.Currency));
  1805. // 匯率
  1806. let TabTipExchangeRate = (bForn ? 1 : iExchangeRate);
  1807. // 純稅金(本幣別)
  1808. let TabTipTaxtotal = fnRound(iTaxtotal * TabTipExchangeRate, FeeItemCurrency);
  1809. // 未稅總額(本幣別)
  1810. let TabTipUntaxtotal = fnRound(iSubtotal * TabTipExchangeRate, FeeItemCurrency);
  1811. iOldBoxTotal = iOldBoxTotal * (bForn ? 1 : iExchangeRate);
  1812. if (oTab[0].id === 'tab3') {
  1813. oTab.css({ 'padding-top': 40 });
  1814. if (data.AuditVal !== '6') {
  1815. let LastRowActualsum = parseFloat($('#tab3 .amountsum').val().replaceAll(',', '')) - iOldBoxTotal;
  1816. $('#tab3 .amountsum').val(fMoney(LastRowActualsum + TabTipUntaxtotal, 2, FeeItemCurrency));
  1817. $('#tab4 .amountsum').val($('#tab3 .amountsum').val());
  1818. }
  1819. }
  1820. else if (oTab[0].id === 'tab9') {
  1821. // 每筆退運帳單的預估成本
  1822. oFinancial.find('.topshowsum').show();
  1823. oFinancial.find('.estimatedcostsum').val(fMoney(parentdata.EstimatedCost.AmountSum, 2, data.Currency));
  1824. if (data.AuditVal !== '6') {
  1825. //退運帳單加總
  1826. let LastRowActualsum = parseFloat(oFinancial.find('.amountsum').val().replaceAll(',', '')) - iOldBoxTotal;
  1827. oFinancial.find('.amountsum').val(fMoney(LastRowActualsum + TabTipUntaxtotal, 2, FeeItemCurrency));
  1828. $('.bill-box-' + data.BillNO).find('.amountsum').val(oFinancial.find('.amountsum').val());
  1829. //增加退運報價/預估成本-帳單金額累加(有先後順序,無法對調)
  1830. let LastRow_Return_Amountsum = parseFloat($('#tab9 .return_amountsum').val().replaceAll(',', ''));
  1831. $('#tab9 .return_amountsum').val(fMoney(LastRow_Return_Amountsum + TabTipUntaxtotal, 2, FeeItemCurrency));
  1832. }
  1833. }
  1834. break;
  1835. }
  1836. /*計算$$*/
  1837. if (oTab[0].id === 'tab3') {
  1838. if (data.KeyName === 'Bill')
  1839. fnCalcuBillsFee(oFinancial, '.BillForeignCurrency', '.BillMainCurrency', data.Currency, data.ExchangeRate);
  1840. else
  1841. fnCalcuQuotationFee(oFinancial.find('.QuotationForeignCurrency'), oFinancial.find('.QuotationMainCurrency'),
  1842. parentdata.Quote.QuotationOrBillingCurrency, parentdata.Quote.AccountingExchangeRate);
  1843. }
  1844. else if (oTab[0].id === 'tab9') {
  1845. if (data.KeyName === 'Bill')
  1846. fnCalcuBillsFee(oFinancial, '.ReturnBillForeignCurrency', '.ReturnBillMainCurrency',
  1847. data.Currency, data.ExchangeRate);
  1848. else {
  1849. fnCalcuQuotationFee(oFinancial.find('.ReturnQuotationForeignCurrency'), oFinancial.find('.ReturnQuotationMainCurrency'),
  1850. parentdata.ReturnQuotationOrBillingCurrency, parentdata.ReturnAccountingExchangeRate);
  1851. }
  1852. }
  1853. dom.parents('.financial').find('.plusfeeitem').prop('disabled', false);
  1854. fnSetDisabled(oFinancial, data);
  1855. inputChange(oFinancial.find('.input-value'), data);
  1856. if (data.KeyName === 'ActualCost') {
  1857. var saBillPayers = function () {
  1858. var saRetn = [];
  1859. $.each(parentdata.Bills, function (idx, bill) {
  1860. if (!bill.VoidReason) {
  1861. var sPayer = '',
  1862. oCur = {};
  1863. if (bill.Payer) {
  1864. oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == bill.Payer; }).First();
  1865. }
  1866. saRetn.push({
  1867. id: bill.BillNO,
  1868. text: oCur.text,
  1869. val: bill.BillNO + '-' + (oCur.text || '') + '-' + bill.BillCreateDate
  1870. });
  1871. }
  1872. });
  1873. return saRetn;
  1874. }();
  1875. dom.find('.billpayer').each(function () {
  1876. var sGuid = $(this).attr('data-value'),
  1877. sBillNO = $(this).attr('data-billno'),
  1878. Selector = 'oBillPayers-' + sGuid;
  1879. $(this).append($('<select>', {
  1880. class: 'form-control w100p ' + Selector, 'multiple': 'multiple',
  1881. html: createOptions(saBillPayers, 'id', 'id', false),
  1882. change: function () {
  1883. var sBill = this.value;
  1884. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  1885. if (sGuid === item.guid) {
  1886. var SelectedValues = getSelectedValues('.oBillPayers-' + this.guid);
  1887. var MappedPayers = Enumerable.From(saBillPayers).Where(function (e) {
  1888. return SelectedValues.indexOf(e.id) > -1;
  1889. }).ToArray();
  1890. item.BillNO = MappedPayers.map(c => c.id).join(',');
  1891. item.BillPayer = MappedPayers.map(c => c.val).join(',');
  1892. return false;
  1893. }
  1894. });
  1895. }
  1896. }));
  1897. $(this).find('.' + Selector + ' option:first').remove();
  1898. let mySelect = new vanillaSelectBox('.' + Selector, {
  1899. search: true,
  1900. maxHeight: 160,
  1901. maxWidth: 200,
  1902. });
  1903. mySelect.multipleSize = 2;
  1904. mySelect.setValue(sBillNO);
  1905. $('#btn-group-\\.' + Selector).click(function (e) {
  1906. $('.vsb-menu').css('display', 'none');
  1907. $('#btn-group-\\.' + Selector).find('.vsb-menu').css('display', 'block');
  1908. })
  1909. });
  1910. }
  1911. dom.find('.glyphicon-pencil').off('click').on('click', function () {
  1912. var that = this,
  1913. sGuid = $(that).attr('data-value'),
  1914. oCurFee = {},
  1915. sBillNO = dom.attr('data-billno') || '';
  1916. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  1917. switch (sDomId) {
  1918. case 'quote-box':
  1919. $.each(parentdata.Quote.FeeItems, function (idx, item) {
  1920. if (sGuid === item.guid) {
  1921. oCurFee = item;
  1922. return false;
  1923. }
  1924. });
  1925. break;
  1926. case 'estimatedcost-box':
  1927. $.each(parentdata.EstimatedCost.FeeItems, function (idx, item) {
  1928. if (sGuid === item.guid) {
  1929. oCurFee = item;
  1930. return false;
  1931. }
  1932. });
  1933. break;
  1934. case 'bill_fees_' + sBillNO:
  1935. $.each(parentdata.Bills, function (idx, bill) {
  1936. if (sBillNO === bill.BillNO) {
  1937. $.each(bill.FeeItems, function (idx, item) {
  1938. if (sGuid === item.guid) {
  1939. oCurFee = item;
  1940. return false;
  1941. }
  1942. });
  1943. return false;
  1944. }
  1945. });
  1946. break;
  1947. case 'actualcost-box':
  1948. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  1949. if (sGuid === item.guid) {
  1950. oCurFee = item;
  1951. return false;
  1952. }
  1953. });
  1954. break;
  1955. }
  1956. fnPlusFeeItem(that, parentdata, oCurFee, data.Currency);
  1957. });
  1958. dom.find('.glyphicon-trash').off('click').on('click', function () {
  1959. var that = this,
  1960. sGuid = $(that).attr('data-value'),
  1961. saNewList = [],
  1962. sBillNO = dom.attr('data-billno') || '';
  1963. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  1964. switch (sDomId) {
  1965. case 'quote-box':
  1966. $.each(parentdata.Quote.FeeItems, function (idx, item) {
  1967. if (sGuid !== item.guid) {
  1968. saNewList.push(item);
  1969. }
  1970. });
  1971. parentdata.Quote.FeeItems = saNewList;
  1972. fnBindFeeItem(dom, parentdata, parentdata.Quote);
  1973. break;
  1974. case 'estimatedcost-box':
  1975. $.each(parentdata.EstimatedCost.FeeItems, function (idx, item) {
  1976. if (sGuid !== item.guid) {
  1977. saNewList.push(item);
  1978. }
  1979. });
  1980. parentdata.EstimatedCost.FeeItems = saNewList;
  1981. fnBindFeeItem(dom, parentdata, parentdata.EstimatedCost);
  1982. break;
  1983. case 'bill_fees_' + sBillNO:
  1984. $.each(parentdata.Bills, function (idx, bill) {
  1985. if (sBillNO === bill.BillNO) {
  1986. $.each(bill.FeeItems, function (idx, item) {
  1987. if (sGuid !== item.guid) {
  1988. saNewList.push(item);
  1989. }
  1990. });
  1991. bill.FeeItems = saNewList;
  1992. fnBindFeeItem(dom, parentdata, bill);
  1993. return false;
  1994. }
  1995. });
  1996. break;
  1997. case 'actualcost-box':
  1998. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  1999. if (sGuid !== item.guid) {
  2000. saNewList.push(item);
  2001. }
  2002. });
  2003. parentdata.ActualCost.FeeItems = saNewList;
  2004. fnBindFeeItem(dom, parentdata, parentdata.ActualCost);
  2005. break;
  2006. }
  2007. $(that).parents('tr').remove();
  2008. });
  2009. dom.find('.glyphicon-arrow-down').off('click').on('click', function () {
  2010. var that = this,
  2011. sGuid = $(that).attr('data-value'),
  2012. iOrderBy = 0;
  2013. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  2014. $.each(data.FeeItems, function (n, item) {
  2015. if (sGuid === item.guid) {
  2016. iOrderBy = item.OrderBy;
  2017. item.OrderBy++;
  2018. }
  2019. if (iOrderBy !== 0 && iOrderBy === n) {
  2020. item.OrderBy--;
  2021. return false;
  2022. }
  2023. });
  2024. data.FeeItems = Enumerable.From(data.FeeItems).OrderBy("x=>x.OrderBy").ToArray();
  2025. fnBindFeeItem(dom, parentdata, data);
  2026. });
  2027. dom.find('.glyphicon-arrow-up').off('click').on('click', function () {
  2028. var that = this,
  2029. sGuid = $(that).attr('data-value'),
  2030. iOrderBy = Enumerable.From(data.FeeItems).Where(function (e) { return e.guid == sGuid; }).First().OrderBy;
  2031. if ($(that).hasClass('disabled')) { return; }//如果禁用後就不執行
  2032. $.each(data.FeeItems, function (n, item) {
  2033. if (iOrderBy - 2 === n) {
  2034. item.OrderBy++;
  2035. }
  2036. if (sGuid === item.guid) {
  2037. item.OrderBy--;
  2038. return false;
  2039. }
  2040. });
  2041. data.FeeItems = Enumerable.From(data.FeeItems).OrderBy("x=>x.OrderBy").ToArray();
  2042. fnBindFeeItem(dom, parentdata, data);
  2043. });
  2044. },
  2045. /**
  2046. * 添加費用項目
  2047. * @param (Object)that 當前dom對象
  2048. * @return (Object)data 當前費用項目
  2049. */
  2050. fnPlusFeeItem = function (that, parentdata, feeinfo, currency) {
  2051. var oFinancial = $(that).parents('.financial'),
  2052. oTable = oFinancial.find('tbody'),
  2053. sId = oTable.attr('data-id'),
  2054. sBillNO = oTable.attr('data-billno') || '',
  2055. sMainCurrency = oFinancial.find('[data-id="Currency"]').val() || FeeItemCurrency;
  2056. oTable.find('tr').not('.fee-add').find('.jsgrid-cancel-edit-button').click();
  2057. var fnSum = function () {
  2058. var iPrice = oUnitPrice.attr('data-value') || 0,
  2059. iNumber = oNumber.val().replaceAll(',', ''),
  2060. iExchangeRate = oExchangeRate.val(),
  2061. sFinancialCurrency = oCurrency.val(),
  2062. iAmount = 0,
  2063. bForn = (currency === undefined || currency === 'NTD');
  2064. bForn = true;
  2065. iPrice = iPrice === '' ? 0 : parseFloat(iPrice);
  2066. iExchangeRate = iExchangeRate === '' ? 1 : parseFloat(iExchangeRate);
  2067. iNumber = iNumber === '' ? 0 : parseFloat(iNumber);
  2068. iAmount = iPrice * iNumber;
  2069. oAmount.attr('data-value', iAmount.toFloat(2)).val(fMoney(iAmount, 2));
  2070. oTWAmount.attr('data-value', (iAmount * iExchangeRate).toFloat(2)).val(fMoney(iAmount * iExchangeRate, 2));
  2071. if (oTaxRate.val()) {
  2072. var iTaxRate = oTaxRate.val().toPoint();
  2073. oTax.attr('data-value', (iAmount * iTaxRate * (bForn ? iExchangeRate : 1)).toFloat(2)).val(fMoney(iAmount * iTaxRate * (bForn ? iExchangeRate : 1), 2));
  2074. }
  2075. },
  2076. oTR_Old = null,
  2077. oTR = $('<tr />', { class: 'jsgrid' }),
  2078. oTD = $('<td />', { class: 'wcenter', 'style': 'padding: 2px !important;' }),
  2079. oCode = $('<select />', {
  2080. class: 'form-control w100p', change: function () {
  2081. var sFeeVal = this.value,
  2082. sFeeText = $(this).find("option:selected").text();
  2083. oCostStatement.val(sFeeText.replace(sFeeVal + '-', '').replace('*', ''));
  2084. if ('TE001,TE199,TE299,TG001,TG199,TG299,SG001,SG199,SG299'.indexOf(sFeeVal) > -1) {
  2085. oCostStatement.removeAttr('disabled');
  2086. }
  2087. else {
  2088. oCostStatement.prop('disabled', true);
  2089. }
  2090. }
  2091. }),
  2092. oCostStatement = $('<input />', { class: 'form-control w100p', 'style': 'width:260px !important;' }),
  2093. oMemo = $('<textarea />', { class: 'form-control w100p', rows: '2', cols: '10' }),
  2094. oCurrency = $('<select />', {
  2095. class: 'form-control w100p', html: sCurrencyOptionsHtml, change: function () {
  2096. var sCurrencyId = this.value;
  2097. if (sCurrencyId) {
  2098. var oCurrency = Enumerable.From(saCurrency).Where(function (e) { return e.id == sCurrencyId; }).First();
  2099. oExchangeRate.val(oCurrency.Correlation || '').change();
  2100. }
  2101. }
  2102. }).css('cssText', 'width:80px !important').val(sMainCurrency),
  2103. oUnitPrice = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  2104. oNumber = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  2105. oUnit = $('<input />', { class: 'form-control w100p' }),
  2106. oAmount = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' }),
  2107. oExchangeRate = $('<input />', { class: 'form-control w100p', value: '1.000', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  2108. oTWAmount = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' }),
  2109. oTaxRate = $('<input />', { class: 'form-control w100p', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
  2110. oTax = $('<input />', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' });
  2111. let Selector = feeinfo ? 'oBillPayers-' + feeinfo.guid : 'oBillPayers';
  2112. var oBillPayers = $('<select />', { class: 'form-control w100p ' + Selector, 'multiple': 'multiple' });
  2113. var oConfirm = $('<input />', {
  2114. class: 'jsgrid-button jsgrid-update-button', type: 'button', title: i18next.t('common.Confirm'), click: function () {// ╠common.Confirm⇒確認╣
  2115. var sError = '';
  2116. if (!oCode.val()) {
  2117. sError += i18next.t("common.FinancialCode_required") + '<br/>'; // ╠common.FinancialCode_required⇒請選擇費用代號╣
  2118. }
  2119. if (!oCostStatement.val() && !oMemo.val()) {
  2120. sError += i18next.t("common.FinancialCostStatement_required") + '<br/>'; // ╠common.FinancialCostStatement_required⇒請輸入費用說明或備註╣
  2121. }
  2122. if (!oCurrency.val()) {
  2123. sError += i18next.t("common.Currency_required") + '<br/>'; // ╠common.Currency_required⇒請選擇幣別╣
  2124. }
  2125. if (sError) {
  2126. showMsg(sError);
  2127. return false;
  2128. }
  2129. var data = {};
  2130. data.FinancialCode = oCode.val();
  2131. data.FinancialCostStatement = oCostStatement.val();
  2132. data.Memo = oMemo.val();
  2133. data.FinancialCurrency = oCurrency.val();
  2134. data.FinancialUnitPrice = oUnitPrice.val();
  2135. data.FinancialNumber = oNumber.val();
  2136. data.FinancialUnit = oUnit.val();
  2137. data.FinancialAmount = oAmount.val();
  2138. data.FinancialExchangeRate = oExchangeRate.val();
  2139. data.FinancialTWAmount = oTWAmount.val();
  2140. data.FinancialTaxRate = oTaxRate.val() === '' ? 0 : oTaxRate.val();
  2141. data.FinancialTax = oTax.val();
  2142. if (sId === 'actualcost-box') {
  2143. data.BillNO = oBillPayers.val();
  2144. data.BillPayer = oBillPayers.attr('_payer') || '';
  2145. }
  2146. if (data.FinancialNumber.indexOf('.00') > 0)
  2147. data.FinancialNumber = data.FinancialNumber.replace('.00', '');
  2148. switch (sId) {
  2149. case 'quote-box':
  2150. if (feeinfo) {
  2151. $.each(parentdata.Quote.FeeItems, function (idx, item) {
  2152. if (feeinfo.guid === item.guid) {
  2153. data = packParams(data, 'upd');
  2154. $.extend(item, item, data);
  2155. return false;
  2156. }
  2157. });
  2158. }
  2159. else {
  2160. data = packParams(data);
  2161. data.guid = guid();
  2162. parentdata.Quote.FeeItems.push(data);
  2163. }
  2164. fnBindFeeItem(oTable, parentdata, parentdata.Quote);
  2165. break;
  2166. case 'estimatedcost-box':
  2167. if (feeinfo) {
  2168. $.each(parentdata.EstimatedCost.FeeItems, function (idx, item) {
  2169. if (feeinfo.guid === item.guid) {
  2170. data = packParams(data, 'upd');
  2171. $.extend(item, item, data);
  2172. return false;
  2173. }
  2174. });
  2175. }
  2176. else {
  2177. data = packParams(data);
  2178. data.guid = guid();
  2179. parentdata.EstimatedCost.FeeItems.push(data);
  2180. }
  2181. fnBindFeeItem(oTable, parentdata, parentdata.EstimatedCost);
  2182. break;
  2183. case 'bill_fees_' + sBillNO:
  2184. $.each(parentdata.Bills, function (idx, bill) {
  2185. if (sBillNO === bill.BillNO) {
  2186. if (feeinfo) {
  2187. $.each(bill.FeeItems, function (idx, item) {
  2188. if (feeinfo.guid === item.guid) {
  2189. data = packParams(data, 'upd');
  2190. $.extend(item, item, data);
  2191. return false;
  2192. }
  2193. });
  2194. }
  2195. else {
  2196. data = packParams(data);
  2197. data.guid = guid();
  2198. bill.FeeItems.push(data);
  2199. }
  2200. fnBindFeeItem(oTable, parentdata, bill);
  2201. return false;
  2202. }
  2203. });
  2204. break;
  2205. case 'actualcost-box':
  2206. if (feeinfo) {
  2207. $.each(parentdata.ActualCost.FeeItems, function (idx, item) {
  2208. if (feeinfo.guid === item.guid) {
  2209. data = packParams(data, 'upd');
  2210. $.extend(item, item, data);
  2211. return false;
  2212. }
  2213. });
  2214. }
  2215. else {
  2216. data = packParams(data);
  2217. data.guid = guid();
  2218. parentdata.ActualCost.FeeItems.push(data);
  2219. }
  2220. fnBindFeeItem(oTable, parentdata, parentdata.ActualCost);
  2221. break;
  2222. }
  2223. bRequestStorage = true;
  2224. oTR.remove();
  2225. }
  2226. }),
  2227. oCancel = $('<input />', {
  2228. class: 'jsgrid-button jsgrid-cancel-edit-button', type: 'button', title: i18next.t('common.Cancel'), click: function () {// ╠common.Cancel⇒取消╣
  2229. if (feeinfo) {
  2230. if (feeinfo.BillNO) {
  2231. oTR_Old.find('select').val(feeinfo.BillNO);
  2232. }
  2233. oTR.after(oTR_Old).remove();
  2234. oTR_Old = null;
  2235. }
  2236. else {
  2237. oTR.remove();
  2238. $(that).prop('disabled', false);
  2239. }
  2240. }
  2241. });
  2242. oTR.append(oTD.clone());
  2243. oTR.append(oTD.clone().append(oCode));
  2244. oTR.append(oTD.clone().append([oCostStatement, oMemo]));
  2245. oTR.append(oTD.clone().append(oCurrency));
  2246. oTR.append(oTD.clone().append(oUnitPrice));
  2247. oTR.append(oTD.clone().append(oNumber));
  2248. oTR.append(oTD.clone().append(oUnit));
  2249. oTR.append(oTD.clone().append(oAmount));
  2250. oTR.append(oTD.clone().append(oExchangeRate));
  2251. oTR.append(oTD.clone().append(oTWAmount));
  2252. oTR.append(oTD.clone().append(oTaxRate));
  2253. oTR.append(oTD.clone().append(oTax));
  2254. if (sId === 'actualcost-box') {
  2255. var saBillPayers = function () {
  2256. var saRetn = [];
  2257. $.each(parentdata.Bills, function (idx, bill) {
  2258. if (!bill.VoidReason) {
  2259. var sPayer = '',
  2260. oCur = {};
  2261. if (bill.Payer) {
  2262. oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == bill.Payer; }).First();
  2263. }
  2264. saRetn.push({
  2265. id: bill.BillNO,
  2266. text: oCur.text,
  2267. val: bill.BillNO + '-' + (oCur.text || '') + '-' + bill.BillCreateDate
  2268. });
  2269. }
  2270. });
  2271. return saRetn;
  2272. }();
  2273. oTR.append(oTD.clone().append(oBillPayers.html(createOptions(saBillPayers, 'id', 'id', false)).change(function () {
  2274. var sBill = this.value;
  2275. if (sBill) {
  2276. var oBillPayer = Enumerable.From(saBillPayers).Where(function (e) { return e.id == sBill; }).First();
  2277. $(this).attr('_payer', oBillPayer.val || '');
  2278. }
  2279. else {
  2280. $(this).attr('_payer', '');
  2281. }
  2282. })));
  2283. }
  2284. oTR.append(oTD.clone().css('cssText', 'padding-top:30px !important;').append([oConfirm, oCancel]));
  2285. oCode.html(createOptions(saFeeClass, 'id', 'text', true)).val(!feeinfo ? '' : feeinfo.FinancialCode).select2({ width: '160px' });
  2286. if (parent.SysSet.TaxRate) {
  2287. oTaxRate.val(parent.SysSet.TaxRate);
  2288. }
  2289. if (feeinfo) {
  2290. oCode.val(feeinfo.FinancialCode);
  2291. oCostStatement.val(feeinfo.FinancialCostStatement.replace(feeinfo.FinancialCode + '-', ''));
  2292. oMemo.val(feeinfo.Memo);
  2293. oCurrency.val(feeinfo.FinancialCurrency);
  2294. oUnitPrice.val(feeinfo.FinancialUnitPrice);
  2295. oNumber.val(feeinfo.FinancialNumber);
  2296. oUnit.val(feeinfo.FinancialUnit);
  2297. oAmount.val(feeinfo.FinancialAmount);
  2298. oExchangeRate.val(feeinfo.FinancialExchangeRate);
  2299. oTWAmount.val(feeinfo.FinancialTWAmount);
  2300. oTaxRate.val(feeinfo.FinancialTaxRate);
  2301. oTax.val(feeinfo.FinancialTax);
  2302. if (sId === 'actualcost-box') {
  2303. oBillPayers.val(feeinfo.BillNO);
  2304. }
  2305. oTR_Old = $(that).parents('tr').clone(true);
  2306. $(that).parents('tr').after(oTR).remove();
  2307. if ('TE001,TE199,TE299,TG001,TG199,TG299,SG001,SG199,SG299'.indexOf(feeinfo.FinancialCode) > -1) {
  2308. oCostStatement.prop('disabled', false);
  2309. }
  2310. else {
  2311. oCostStatement.prop('disabled', true);
  2312. }
  2313. }
  2314. else {
  2315. oTable.append(oTR.addClass('fee-add'));
  2316. $(that).prop('disabled', true);
  2317. }
  2318. moneyInput($('[data-type="int"]'), 2, true);
  2319. oTR.find('.' + Selector + ' option:first').remove();
  2320. if (sId === 'actualcost-box') {
  2321. let mySelect = new vanillaSelectBox("." + Selector, {
  2322. search: true
  2323. });
  2324. mySelect.multipleSize = 2;
  2325. if (feeinfo) {
  2326. mySelect.setValue(feeinfo.BillNO);
  2327. }
  2328. }
  2329. },
  2330. /**
  2331. * 批次添加費用項目&收藏
  2332. * @param(Object)that 當前dom對象
  2333. * @return(Object)data 當前費用項目
  2334. */
  2335. fnPlusFeeItemStar = function (that, handle, parentdata) {
  2336. var oFinancial = $(that).parents('.financial'),
  2337. oTable = oFinancial.find('tbody'),
  2338. sId = oTable.attr('data-id'),
  2339. sBillNO = oTable.attr('data-billno') || '',
  2340. oOption = {};
  2341. oOption.Callback = function (data) {
  2342. if (data.length > 0) {
  2343. parentdata.Quote.FeeItems = clone(data);
  2344. fnBindFeeItem(handle, parentdata, parentdata.Quote);
  2345. $(that).prev().prop('disabled', false);
  2346. }
  2347. };
  2348. fnStarFeeItems(oOption);
  2349. },
  2350. /**
  2351. * 匯入費用項目
  2352. * @paramthat(Object)當前dom對象
  2353. * @returndata(Object)當前費用項目
  2354. */
  2355. fnImportFeeitems = function (type, parentdom, parentdata) {
  2356. $('#importfile').val('').off('change').on('change', function () {
  2357. if (this.value.indexOf('.xls') > -1 || this.value.indexOf('.xlsx') > -1) {
  2358. var sFileId = guid(),
  2359. sFileName = this.value;
  2360. $.ajaxFileUpload({
  2361. url: '/Controller.ashx?action=importfile&FileId=' + sFileId,
  2362. secureuri: false,
  2363. fileElementId: 'importfile',
  2364. success: function (data, status) {
  2365. var that = this;
  2366. g_api.ConnectLite('Exhibition', 'GetImportFeeitems', {//匯入費用項目
  2367. OrgID: parent.OrgID,
  2368. FileId: sFileId,
  2369. FileName: sFileName
  2370. }, function (res) {
  2371. if (res.RESULT) {
  2372. if (res.DATA.rel.length > 0) {
  2373. if (type === 'quote') {
  2374. parentdata.Quote.FeeItems = res.DATA.rel;
  2375. fnBindFeeItem(parentdom.find('[data-id="quote-box"]'), parentdata, parentdata.Quote);
  2376. }
  2377. else if (type === 'estimatedcost') {
  2378. parentdata.EstimatedCost.FeeItems = res.DATA.rel;
  2379. fnBindFeeItem(parentdom.find('[data-id="estimatedcost-box"]'), parentdata, parentdata.EstimatedCost);
  2380. }
  2381. else if (type === 'actualcost') {
  2382. parentdata.ActualCost.FeeItems = res.DATA.rel;
  2383. fnBindFeeItem(parentdom.find('[data-id="actualcost-box"]'), parentdata, parentdata.ActualCost);
  2384. }
  2385. }
  2386. else {
  2387. showMsg(i18next.t("message.NoMatchData")); // ╠message.NoMatchData⇒找不到相關資料╣
  2388. }
  2389. }
  2390. else {
  2391. showMsg(i18next.t('message.ProgressError') + '<br>' + res.MSG, 'error'); // ╠message.ProgressError⇒資料處理異常╣
  2392. }
  2393. }, function () {
  2394. showMsg(i18next.t("message.ProgressError"), 'error'); // ╠message.ProgressError⇒資料處理異常╣
  2395. });
  2396. },
  2397. error: function (data, status, e) {
  2398. showMsg(i18next.t("message.ProgressError"), 'error'); // ╠message.ProgressError⇒資料處理異常╣
  2399. }
  2400. });
  2401. bRequestStorage = true;
  2402. }
  2403. else {
  2404. showMsg(i18next.t("message.FileTypeError"), 'error'); // ╠message.FileTypeError⇒文件格式錯誤╣
  2405. }
  2406. }).click();
  2407. },
  2408. /**
  2409. * 複製費用項目
  2410. * @paramthat(Object)當前dom對象
  2411. * @returnquote(Object)當前費用項目
  2412. */
  2413. fnCopyFeeitems = function (type, parentdom, parentdata) {
  2414. var oOption = {};
  2415. oOption.Callback = function (data) {
  2416. if (data.length > 0) {
  2417. $.each(data, function (idx, item) {
  2418. item.FinancialUnitPrice = 0;
  2419. item.FinancialNumber = 0;
  2420. item.FinancialAmount = 0;
  2421. item.FinancialTWAmount = 0;
  2422. item.FinancialTaxRate = '0%';
  2423. item.FinancialTax = 0;
  2424. item.CreateUser = parent.UserID;
  2425. item.CreateDate = newDate(null, true);
  2426. });
  2427. if (type === 'quote') {
  2428. parentdata.Quote.FeeItems = data;
  2429. fnBindFeeItem(parentdom.find('[data-id="quote-box"]'), parentdata, parentdata.Quote);
  2430. }
  2431. }
  2432. };
  2433. fnCopyFee(oOption);
  2434. },
  2435. /**
  2436. * 添加新帳單
  2437. */
  2438. fnPushBill = function (data, parentid, bRetn) {
  2439. var fnBill = function (billno) {
  2440. var oNewBill = {};
  2441. oNewBill.guid = guid();
  2442. oNewBill.IsRetn = bRetn ? 'Y' : 'N';
  2443. oNewBill.parentid = parentid || '';
  2444. oNewBill.KeyName = 'Bill';
  2445. oNewBill.AuditVal = '0';
  2446. oNewBill.BillNO = billno || sDataId;
  2447. oNewBill.BillCreateDate = newDate();
  2448. oNewBill.BillFirstCheckDate = '';
  2449. oNewBill.BillCheckDate = '';
  2450. oNewBill.Currency = 'NTD';
  2451. oNewBill.ExchangeRate = 1;
  2452. if (bRetn) {
  2453. var sRtnQuotationOrBillingCurrency = $('#ReturnQuotationOrBillingCurrency-' + parentid + ' option:selected');
  2454. oNewBill.ExchangeRate = sRtnQuotationOrBillingCurrency.attr('Correlation');
  2455. oNewBill.Currency = sRtnQuotationOrBillingCurrency.val();
  2456. }
  2457. else {
  2458. var sQuotationOrBillingCurrency = $('#QuotationOrBillingCurrency option:selected');
  2459. oNewBill.ExchangeRate = sQuotationOrBillingCurrency.attr('Correlation');
  2460. oNewBill.Currency = sQuotationOrBillingCurrency.val();
  2461. }
  2462. oNewBill.Advance = 0;
  2463. oNewBill.Memo = data.Quote.Memo || '';
  2464. oNewBill.FeeItems = clone(data.Quote.FeeItems);
  2465. oNewBill.InvoiceNumber = '';
  2466. oNewBill.InvoiceDate = '';
  2467. oNewBill.ReceiptNumber = '';
  2468. oNewBill.ReceiptDate = '';
  2469. oNewBill.Payer = '';
  2470. oNewBill.CustomerCode = '';
  2471. oNewBill.UniCode = '';
  2472. oNewBill.Contactor = '';
  2473. oNewBill.ContactorName = '';
  2474. oNewBill.AgentContactor = '';
  2475. oNewBill.AgentContactorName = '';
  2476. oNewBill.Telephone = '';
  2477. oNewBill.Number = bRetn ? $('#ReImportData1_Number').val() || '' : $('#BoxNo').val();
  2478. oNewBill.Unit = bRetn ? $('#ReImportData1_Unit').val() || '' : $('#Unit').val();
  2479. oNewBill.Weight = bRetn ? ($('#ReImportData1_ShippedWeight').val() || '').replace(/[^\d.-]/g, '') : $('#Weight').val();
  2480. oNewBill.Volume = bRetn ? ($('#ReImportData1_HeavyTruckBack').val() || '').replace(/[^\d.-]/g, '') : $('#Volume').val();
  2481. oNewBill.ReImportNum = 1;
  2482. data.Bills.push(oNewBill);
  2483. };
  2484. return g_api.ConnectLite(Service.com, ComFn.GetSerial, {
  2485. Type: parent.UserInfo.OrgID + 'I',
  2486. Flag: 'MinYear',
  2487. Len: 3,
  2488. Str: sServiceCode,
  2489. AddType: sServiceCode,
  2490. PlusType: ''
  2491. }, function (res) {
  2492. if (res.RESULT) {
  2493. fnBill(res.DATA.rel);
  2494. }
  2495. else {
  2496. showMsg(i18next.t('message.CreateBill_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CreateBill_Failed⇒帳單新增失敗╣
  2497. }
  2498. }, function () {
  2499. showMsg(i18next.t('message.CreateBill_Failed'), 'error'); // ╠message.CreateBill_Failed⇒帳單新增失敗╣
  2500. });
  2501. },
  2502. /**
  2503. * 初始化:報價/帳單幣別匯率
  2504. */
  2505. fnInitialAccountCurrency = function (tabName) {
  2506. $('#QuotationOrBillingCurrency').html(sAccountingCurrencyOptionsHtml).on('change', function () {
  2507. var sQuotationOrBillingCurrency = $('#QuotationOrBillingCurrency option:selected');
  2508. var sExchangeRate = sQuotationOrBillingCurrency.attr('Correlation');
  2509. var fExchangeRate = parseFloat(sExchangeRate);
  2510. let CurrencyID = this.value;
  2511. oCurData.Quote.QuotationOrBillingCurrency = CurrencyID;
  2512. oCurData.Quote.AccountingExchangeRate = sExchangeRate;
  2513. $('#AccountingExchangeRate').val(sExchangeRate);
  2514. bRequestStorage = true;//要變更儲存
  2515. //是主幣別(TE、TG:NTD;SG:CNY),僅顯示主幣別資訊。
  2516. var MainCurrency = fnCheckMainOrForeignCurrency(CurrencyID);
  2517. var TitleAttr = '';
  2518. if (MainCurrency) {
  2519. TitleAttr = 'common.MainCurrencyNontaxedAmountV2';
  2520. $(tabName + ' .QuotationForeignCurrency').hide();
  2521. }
  2522. else {
  2523. TitleAttr = 'common.ForeignCurrencyNontaxedAmountV2';
  2524. $(tabName + ' .QuotationForeignCurrency').show();
  2525. }
  2526. $(tabName + ' .QuotationAmountTiltle').attr('data-i18n', TitleAttr).text(i18next.t(TitleAttr));
  2527. //重算
  2528. fnCalcuQuotationFee($('.QuotationForeignCurrency'), $('.QuotationMainCurrency'), CurrencyID, fExchangeRate);
  2529. });
  2530. $('#QuotationOrBillingCurrency').val(oCurData.Quote.QuotationOrBillingCurrency);
  2531. $('#AccountingExchangeRate').val(oCurData.Quote.AccountingExchangeRate);
  2532. $('#QuotationOrBillingCurrency').change();
  2533. },
  2534. /**
  2535. * 初始化:退運報價/帳單幣別匯率
  2536. */
  2537. fnInitialReturnAccountCurrency = function (tabName, Guid) {
  2538. $('#ReturnQuotationOrBillingCurrency' + Guid).html(sAccountingCurrencyOptionsHtml).on('change', function () {
  2539. var sRtnQuotationOrBillingCurrency = $('#ReturnQuotationOrBillingCurrency' + Guid + ' option:selected');
  2540. var sCurrencyID = this.value;
  2541. var sExchangeRate = sRtnQuotationOrBillingCurrency.attr('Correlation');
  2542. var fExchangeRate = parseFloat(sExchangeRate);
  2543. $('#ReturnAccountingExchangeRate' + Guid).val(sExchangeRate);
  2544. bRequestStorage = true;//要變更儲存
  2545. var MainCurrency = fnCheckMainOrForeignCurrency(this.value);
  2546. var TitleAttr = '';
  2547. if (MainCurrency) {
  2548. TitleAttr = 'common.MainCurrencyNontaxedAmountV2';
  2549. $(tabName + ' .ReturnQuotationForeignCurrency').hide();
  2550. }
  2551. else {
  2552. TitleAttr = 'common.ForeignCurrencyNontaxedAmountV2';
  2553. $(tabName + ' .ReturnQuotationForeignCurrency').show();
  2554. }
  2555. $(tabName + ' .ReturnQuotationAmountTiltle' + Guid).attr('data-i18n', TitleAttr).text(i18next.t(TitleAttr));
  2556. //儲存資料(forJson)
  2557. $.each(oCurData.ReturnBills, function (idx, item) {
  2558. if (Guid.indexOf(item.guid) > -1) {
  2559. item.ReturnQuotationOrBillingCurrency = sCurrencyID;
  2560. item.ReturnAccountingExchangeRate = sExchangeRate;
  2561. }
  2562. });
  2563. //重算價格
  2564. fnCalcuQuotationFee($(tabName + ' .ReturnQuotationForeignCurrency'), $(tabName + ' .ReturnQuotationMainCurrency'), sCurrencyID, fExchangeRate);
  2565. });
  2566. //loading data
  2567. $.each(oCurData.ReturnBills, function (idx, item) {
  2568. var SuffixSelector = '-' + item.guid;
  2569. $(tabName + ' #ReturnQuotationOrBillingCurrency' + SuffixSelector).val(item.ReturnQuotationOrBillingCurrency);
  2570. $(tabName + ' #ReturnAccountingExchangeRate' + SuffixSelector).val(item.ReturnAccountingExchangeRate);
  2571. $(tabName + ' #ReturnQuotationOrBillingCurrency' + SuffixSelector).change();
  2572. });
  2573. },
  2574. /**
  2575. * 綁定會計區塊
  2576. */
  2577. fnBindFinancial = function () {
  2578. fnBindFeeItem($('#tab3 [data-id="quote-box"]'), oCurData, oCurData.Quote);//綁定報價
  2579. fnBindFeeItem($('#tab3 [data-id="estimatedcost-box"]'), oCurData, oCurData.EstimatedCost);//綁定預估成本
  2580. if (oCurData.EstimatedCost.AuditVal && oCurData.EstimatedCost.AuditVal === '2') {//業務審核完
  2581. fnBindFeeItem($('#tab4 [data-id="actualcost-pre-box"]'), oCurData, oCurData.EstimatedCost, true);
  2582. $('#tab4 .estimatedcost-memo').text(oCurData.EstimatedCost.Memo || '');
  2583. }
  2584. fnBindFeeItem($('#tab4 [data-id="actualcost-box"]'), oCurData, oCurData.ActualCost);//實際成本
  2585. fnInitialAccountCurrency('#tab3');//會計用匯率
  2586. $('#tab3 [data-source="quote"]').text(oCurData.Quote.Memo || '');
  2587. $('#tab3 [data-source="estimatedcost"]').text(oCurData.EstimatedCost.Memo || '');
  2588. $('#tab4 [data-source="actualcost"]').text(oCurData.ActualCost.Memo || '');
  2589. $('#tab3 .plusfeeitem,#tab4 .plusfeeitem').not('disabled').off('click').on('click', function () {
  2590. fnPlusFeeItem(this, oCurData);
  2591. });
  2592. $('#tab3 .importfeeitem').not('disabled').off('click').on('click', function () {
  2593. var sType = $(this).attr('data-type');
  2594. fnImportFeeitems(sType, $('#tab3'), oCurData);
  2595. });
  2596. $('#tab4 .importfeeitem').not('disabled').off('click').on('click', function () {
  2597. var sType = $(this).attr('data-type');
  2598. fnImportFeeitems(sType, $('#tab4'), oCurData);
  2599. });
  2600. $('#tab3 .copyfeeitem').not('disabled').off('click').on('click', function () {
  2601. var sType = $(this).attr('data-type');
  2602. fnCopyFeeitems(sType, $('#tab3'), oCurData);
  2603. });
  2604. $('#tab3 .plusfeeitemstar').not('disabled').off('click').on('click', function () {
  2605. fnPlusFeeItemStar(this, $('#tab3').find('[data-id="quote-box"]'), oCurData);
  2606. });
  2607. $('#tab3 #estimated_submitaudit').not('disabled').off('click').on('click', function () {
  2608. if (oCurData.EstimatedCost.FeeItems.length === 0 && !oCurData.EstimatedCost.Memo) {
  2609. showMsg(i18next.t("message.EstimatedCostMemo_Required")); // ╠message.EstimatedCostMemo_Required⇒預估成本沒有費用明細,請至少填寫備註╣
  2610. return false;
  2611. }
  2612. if (!oCurData.Quote.QuotationOrBillingCurrency || !oCurData.Quote.AccountingExchangeRate) {
  2613. showMsg(i18next.t("message.QuotationOrBillingCurrencyField_Required")); // ╠message.QuotationOrBillingCurrencyField_Required⇒報價/帳單幣或匯率未選擇╣
  2614. return false;
  2615. }
  2616. oCurData.Quote.AuditVal = '1';
  2617. oCurData.EstimatedCost.AuditVal = '1';
  2618. g_api.ConnectLite(sProgramId, 'ToAuditForQuote', {
  2619. ImportBillNO: sDataId,
  2620. Quote: oCurData.Quote,
  2621. EstimatedCost: oCurData.EstimatedCost
  2622. }, function (res) {
  2623. if (res.RESULT) {
  2624. fnSetDisabled($('#tab3 .quoteandprecost'), oCurData.Quote);
  2625. showMsg(i18next.t("message.ToAudit_Success"), 'success'); // ╠message.ToAudit_Success⇒提交審核成功╣
  2626. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  2627. }
  2628. else {
  2629. oCurData.Quote.AuditVal = '0';
  2630. oCurData.EstimatedCost.AuditVal = '0';
  2631. showMsg(i18next.t('message.ToAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  2632. }
  2633. }, function () {
  2634. oCurData.Quote.AuditVal = '0';
  2635. oCurData.EstimatedCost.AuditVal = '0';
  2636. showMsg(i18next.t('message.ToAudit_Failed'), 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  2637. });
  2638. });
  2639. $('#tab3 #estimated_audit').not('disabled').off('click').on('click', function () {
  2640. layer.open({
  2641. type: 1,
  2642. title: i18next.t('common.Leader_Audit'),// ╠common.Leader_Audit⇒主管審核╣
  2643. area: ['400px', '260px'],//寬度
  2644. shade: 0.75,//遮罩
  2645. shadeClose: true,
  2646. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  2647. content: '<div class="pop-box">\
  2648. <textarea name="NotPassReason" id="NotPassReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.NotPassReason" placeholder="不通過原因..."></textarea><br>\
  2649. <button type="button" data-i18n="common.Pass" id="audit_pass" class="btn-custom green">通過</button>\
  2650. <button type="button" data-i18n="common.NotPass" id="audit_notpass" class="btn-custom red">不通過</button>\
  2651. </div>',
  2652. success: function (layero, idx) {
  2653. $('.pop-box :button').click(function () {
  2654. var fnAuditForQuote = function () {
  2655. g_api.ConnectLite(sProgramId, 'AuditForQuote', {
  2656. ImportBillNO: sDataId,
  2657. Quote: oCurData.Quote,
  2658. EstimatedCost: oCurData.EstimatedCost,
  2659. Bills: oCurData.Bills
  2660. }, function (res) {
  2661. if (res.RESULT) {
  2662. showMsg(i18next.t("message.Audit_Completed"), 'success'); // ╠message.Audit_Completed⇒審核完成╣
  2663. if (oCurData.Quote.AuditVal === '2') {
  2664. fnBindBillLists();
  2665. fnBindFeeItem($('#tab4 [data-id="actualcost-pre-box"]'), oCurData, oCurData.EstimatedCost, true);
  2666. $('#tab4 .estimatedcost-memo').text(oCurData.EstimatedCost.Memo || '');
  2667. }
  2668. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2669. fnSetDisabled($('#tab3 .quoteandprecost'), oCurData.Quote);
  2670. }
  2671. else {
  2672. oCurData.Quote.AuditVal = '1';
  2673. oCurData.EstimatedCost.AuditVal = '1';
  2674. showMsg(i18next.t('message.Audit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  2675. }
  2676. }, function () {
  2677. oCurData.Quote.AuditVal = '1';
  2678. oCurData.EstimatedCost.AuditVal = '1';
  2679. showMsg(i18next.t('message.Audit_Failed'), 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  2680. });
  2681. },
  2682. sNotPassReason = $('#NotPassReason').val();
  2683. if (this.id === 'audit_pass') {
  2684. oCurData.Quote.AuditVal = '2';
  2685. oCurData.EstimatedCost.AuditVal = '2';
  2686. oCurData.Quote.NotPassReason = '';
  2687. oCurData.EstimatedCost.NotPassReason = '';
  2688. fnPushBill(oCurData, null, false).done(function () {
  2689. fnAuditForQuote();
  2690. });
  2691. }
  2692. else {
  2693. if (!sNotPassReason) {
  2694. showMsg(i18next.t("message.NotPassReason_Required")); // ╠message.NotPassReason_Required⇒請填寫不通過原因╣
  2695. return false;
  2696. }
  2697. else {
  2698. oCurData.Quote.AuditVal = '3';
  2699. oCurData.EstimatedCost.AuditVal = '3';
  2700. oCurData.Quote.NotPassReason = sNotPassReason;
  2701. oCurData.EstimatedCost.NotPassReason = sNotPassReason;
  2702. fnAuditForQuote();
  2703. }
  2704. }
  2705. layer.close(idx);
  2706. });
  2707. transLang(layero);
  2708. }
  2709. });
  2710. });
  2711. $('#tab3 #estimated_synquote').not('disabled').off('click').on('click', function () {
  2712. oCurData.EstimatedCost.FeeItems = clone(oCurData.Quote.FeeItems);
  2713. $.each(oCurData.EstimatedCost.FeeItems, function (idx, item) {
  2714. item.FinancialUnitPrice = 0;
  2715. item.FinancialNumber = 0;
  2716. item.FinancialAmount = 0;
  2717. item.FinancialTWAmount = 0;
  2718. item.FinancialTaxRate = '0%';
  2719. item.FinancialTax = 0;
  2720. item.CreateUser = parent.UserID;
  2721. item.CreateDate = newDate(null, true);
  2722. });
  2723. fnBindFeeItem($('#tab3').find('[data-id="estimatedcost-box"]'), oCurData, oCurData.EstimatedCost);
  2724. });
  2725. fnBindBillLists();
  2726. },
  2727. /**
  2728. * 獲取收據號碼
  2729. * @param btn(object)產生收據號碼按鈕
  2730. * @return bill(object)當前帳單資料
  2731. */
  2732. fnGetReceiptNumber = function (btn, bill) {
  2733. return g_api.ConnectLite(Service.com, ComFn.GetSerial, {
  2734. Type: 'SE',
  2735. Flag: 'MinYear',
  2736. Len: 6,
  2737. Str: '',
  2738. AddType: '',
  2739. PlusType: ''
  2740. }, function (res) {
  2741. if (res.RESULT) {
  2742. var oBillBox = $(btn).parents('.bill-box-' + bill.BillNO);
  2743. bill.ReceiptNumber = res.DATA.rel;
  2744. bill.ReceiptDate = newDate(null, true);
  2745. oBillBox.find('[data-id="ReceiptNumber"]').val(bill.ReceiptNumber);
  2746. oBillBox.find('[data-id="ReceiptDate"]').val(bill.ReceiptDate);
  2747. $(btn).remove();
  2748. }
  2749. else {
  2750. showMsg(i18next.t('message.CreateReceiptNumber_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CreateReceiptNumber_Failed⇒收據號碼產生失敗╣
  2751. }
  2752. }, function () {
  2753. showMsg(i18next.t('message.CreateReceiptNumber_Failed'), 'error'); // ╠message.CreateReceiptNumber_Failed⇒收據號碼產生失敗╣
  2754. });
  2755. },
  2756. /**
  2757. * 帳單提交審核
  2758. * @param bill(object)帳單資料
  2759. */
  2760. fnBillToAudit = function (bill, el) {
  2761. var sMsg = '',
  2762. elBillBox = $(el).parents('.financial');
  2763. if (!bill.Currency) {
  2764. sMsg += i18next.t("ExhibitionImport_Upd.Currency_required") + '<br/>'; // ╠common.Currency_required⇒請輸入帳單幣別╣
  2765. }
  2766. if (!bill.Payer) {
  2767. sMsg += i18next.t("ExhibitionImport_Upd.Payer_required") + '<br/>'; // ╠ExhibitionImport_Upd.SupplierEamil_required⇒請輸入付款人╣
  2768. }
  2769. if (!bill.Number) {
  2770. sMsg += i18next.t("message.Number_required") + '<br/>'; // ╠message.Number_required⇒請輸入件數╣
  2771. }
  2772. if (!bill.Weight) {
  2773. sMsg += i18next.t("message.Weight_required") + '<br/>'; // ╠message.Weight_required⇒請輸入重量╣
  2774. }
  2775. if (!bill.Volume) {
  2776. sMsg += i18next.t("message.Volume_required") + '<br/>'; // ╠message.Volume_required⇒請輸入材積(CBM)╣
  2777. }
  2778. if (elBillBox.find('.jsgrid-update-button').length > 0) {
  2779. sMsg += i18next.t("message.DataEditing") + '<br/>'; // ╠message.DataEditing⇒該賬單處於編輯中╣
  2780. }
  2781. if (sMsg) {
  2782. showMsg(sMsg); // 必填欄位
  2783. return;
  2784. }
  2785. bill.AuditVal = '1';
  2786. g_api.ConnectLite(sProgramId, 'ToAuditForBill', {
  2787. ImportBillNO: sDataId,
  2788. Bills: oCurData.Bills,
  2789. Bill: bill
  2790. }, function (res) {
  2791. if (res.RESULT) {
  2792. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  2793. showMsg(i18next.t("message.ToAudit_Success"), 'success'); // ╠message.ToAudit_Success⇒提交審核成功╣
  2794. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  2795. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2796. }
  2797. else {
  2798. bill.AuditVal = '0';
  2799. showMsg(i18next.t('message.ToAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  2800. }
  2801. }, function () {
  2802. bill.AuditVal = '0';
  2803. showMsg(i18next.t('message.ToAudit_Failed'), 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  2804. });
  2805. },
  2806. /**
  2807. * 帳單審核
  2808. * @param bill(object)帳單資料
  2809. */
  2810. fnBillAudit = function (bill) {
  2811. layer.open({
  2812. type: 1,
  2813. title: i18next.t('common.Leader_Audit'),// ╠common.Leader_Audit⇒主管審核╣
  2814. area: ['400px', '260px'],//寬度
  2815. shade: 0.75,//遮罩
  2816. shadeClose: true,
  2817. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  2818. content: '<div class="pop-box">\
  2819. <textarea name="NotPassReason" id="NotPassReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.NotPassReason" placeholder="不通過原因..."></textarea><br>\
  2820. <button type="button" data-i18n="common.Pass" id="audit_pass" class="btn-custom green">通過</button>\
  2821. <button type="button" data-i18n="common.NotPass" id="audit_notpass" class="btn-custom red">不通過</button>\
  2822. </div>',
  2823. success: function (layero, idx) {
  2824. $('.pop-box :button').click(function () {
  2825. var sNotPassReason = $('#NotPassReason').val();
  2826. if (this.id === 'audit_pass') {
  2827. bill.AuditVal = '2';
  2828. bill.NotPassReason = '';
  2829. }
  2830. else {
  2831. if (!sNotPassReason) {
  2832. showMsg(i18next.t("message.NotPassReason_Required")); // ╠message.NotPassReason_Required⇒請填寫不通過原因╣
  2833. return false;
  2834. }
  2835. else {
  2836. bill.AuditVal = '3';
  2837. bill.NotPassReason = sNotPassReason;
  2838. }
  2839. }
  2840. bill.BillCheckDate = newDate();
  2841. bill.CreateDate = newDate();
  2842. if (!bill.BillFirstCheckDate) {
  2843. bill.BillFirstCheckDate = bill.BillCheckDate;
  2844. }
  2845. g_api.ConnectLite(sProgramId, 'AuditForBill', {
  2846. ImportBillNO: sDataId,
  2847. Bills: oCurData.Bills,
  2848. Bill: bill
  2849. }, function (res) {
  2850. if (res.RESULT) {
  2851. $('.bill-box-' + bill.BillNO).find('.bill-chewckdate').text(bill.BillCheckDate);
  2852. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  2853. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2854. showMsg(i18next.t("message.Audit_Completed"), 'success'); // ╠message.Audit_Completed⇒審核完成╣
  2855. if (bill.AuditVal === '2') {
  2856. parent.msgs.server.pushTransfer(parent.OrgID, parent.UserID, bill.BillNO, 1);
  2857. }
  2858. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2859. }
  2860. else {
  2861. bill.AuditVal = '1';
  2862. if (bill.BillCheckDate === bill.BillFirstCheckDate) {
  2863. bill.BillFirstCheckDate = '';
  2864. }
  2865. bill.BillCheckDate = '';
  2866. showMsg(i18next.t('message.Audit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  2867. }
  2868. }, function () {
  2869. bill.AuditVal = '1';
  2870. if (bill.BillCheckDate === bill.BillFirstCheckDate) {
  2871. bill.BillFirstCheckDate = '';
  2872. }
  2873. bill.BillCheckDate = '';
  2874. showMsg(i18next.t('message.Audit_Failed'), 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  2875. });
  2876. layer.close(idx);
  2877. });
  2878. transLang(layero);
  2879. }
  2880. });
  2881. },
  2882. /**
  2883. * 會計取消審核
  2884. * @param bill(object)帳單資料
  2885. */
  2886. fnBillCancelAudit = function (bill) {
  2887. var sBillCheckDate = bill.BillCheckDate;
  2888. bill.AuditVal = '0';
  2889. bill.BillCheckDate = '';
  2890. g_api.ConnectLite(sProgramId, 'CancelAudit', {
  2891. ImportBillNO: sDataId,
  2892. Bills: oCurData.Bills,
  2893. Bill: bill,
  2894. LogData: fnGetBillLogData(bill)
  2895. }, function (res) {
  2896. if (res.RESULT) {
  2897. $('.bill-box-' + bill.BillNO).find('.bill-chewckdate').text('');
  2898. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  2899. showMsg(i18next.t("message.CancelAudit_Success"), 'success'); // ╠message.CancelAudit_Success⇒取消審核完成╣
  2900. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2901. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2902. }
  2903. else {
  2904. bill.AuditVal = '2';
  2905. bill.BillCheckDate = sBillCheckDate;
  2906. showMsg(i18next.t('message.CancelAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CancelAudit_Failed⇒取消審核失敗╣
  2907. }
  2908. }, function () {
  2909. bill.AuditVal = '2';
  2910. bill.BillCheckDate = sBillCheckDate;
  2911. showMsg(i18next.t('message.CancelAudit_Failed'), 'error'); // ╠message.CancelAudit_Failed⇒取消審核失敗╣
  2912. });
  2913. },
  2914. /**
  2915. * 過帳
  2916. * @param bill(object)帳單資料
  2917. */
  2918. fnBillPost = function (bill) {
  2919. bill.AuditVal = '5';
  2920. bill.CreateDate = newDate();
  2921. g_api.ConnectLite(sProgramId, 'BillPost', {
  2922. ImportBillNO: sDataId,
  2923. Bills: oCurData.Bills,
  2924. Bill: bill
  2925. }, function (res) {
  2926. if (res.RESULT) {
  2927. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  2928. showMsg(i18next.t("message.BillPost_Success"), 'success'); // ╠message.BillPost_Success⇒過帳完成╣
  2929. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2930. parent.msgs.server.pushTransfer(parent.OrgID, parent.UserID, bill.BillNO, 1);
  2931. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2932. }
  2933. else {
  2934. bill.AuditVal = '2';
  2935. showMsg(i18next.t('message.BillPost_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillPost_Failed⇒過帳失敗╣
  2936. }
  2937. }, function () {
  2938. bill.AuditVal = '2';
  2939. showMsg(i18next.t('message.BillPost_Failed'), 'error'); // ╠message.BillPost_Failed⇒過帳失敗╣
  2940. });
  2941. },
  2942. /**
  2943. * 取消過帳
  2944. * @param bill(object)帳單資料
  2945. */
  2946. fnBillCancelPost = function (bill) {
  2947. bill.AuditVal = '2';
  2948. g_api.ConnectLite(sProgramId, 'BillCancelPost', {
  2949. ImportBillNO: sDataId,
  2950. Bills: oCurData.Bills,
  2951. Bill: bill,
  2952. LogData: fnGetBillLogData(bill)
  2953. }, function (res) {
  2954. if (res.RESULT) {
  2955. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  2956. showMsg(i18next.t("message.BillCancePost_Success"), 'success'); // ╠message.BillCancePost_Success⇒取消過帳完成╣
  2957. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2958. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2959. }
  2960. else {
  2961. bill.AuditVal = '5';
  2962. showMsg(i18next.t('message.BillCancePost_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillCancePost_Failed⇒取消過帳失敗╣
  2963. }
  2964. }, function () {
  2965. bill.AuditVal = '5';
  2966. showMsg(i18next.t('message.BillCancePost_Failed'), 'error'); // ╠message.BillCancePost_Failed⇒取消過帳失敗╣
  2967. });
  2968. },
  2969. /**
  2970. * 會計銷帳
  2971. * @param bill(object)帳單資料
  2972. */
  2973. fnBillWriteOff = function (bill) {
  2974. bill.AuditVal = '4';
  2975. bill.BillWriteOffDate = newDate();
  2976. g_api.ConnectLite(sProgramId, 'WriteOff', {
  2977. ImportBillNO: sDataId,
  2978. Bills: oCurData.Bills,
  2979. Bill: bill
  2980. }, function (res) {
  2981. if (res.RESULT) {
  2982. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  2983. showMsg(i18next.t("message.BillWriteOff_Success"), 'success'); // ╠message.BillWriteOff_Success⇒銷帳完成╣
  2984. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  2985. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  2986. }
  2987. else {
  2988. bill.AuditVal = '5';
  2989. showMsg(i18next.t('message.BillWriteOff_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillWriteOff_Failed⇒銷帳失敗╣
  2990. }
  2991. }, function () {
  2992. bill.AuditVal = '5';
  2993. showMsg(i18next.t('message.BillWriteOff_Failed'), 'error'); // ╠message.BillWriteOff_Failed⇒銷帳失敗╣
  2994. });
  2995. },
  2996. /**
  2997. * 會計取消銷帳
  2998. * @param bill(object)帳單資料
  2999. */
  3000. fnBillCancelWriteOff = function (bill) {
  3001. bill.AuditVal = '5';
  3002. bill.BillWriteOffDate = '';
  3003. g_api.ConnectLite(sProgramId, 'CancelWriteOff', {
  3004. ImportBillNO: sDataId,
  3005. Bills: oCurData.Bills,
  3006. Bill: bill,
  3007. LogData: fnGetBillLogData(bill)
  3008. }, function (res) {
  3009. if (res.RESULT) {
  3010. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  3011. showMsg(i18next.t("message.BillCancelWriteOff_Success"), 'success'); // ╠message.BillCancelWriteOff_Success⇒取消銷帳完成╣
  3012. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  3013. }
  3014. else {
  3015. bill.AuditVal = '4';
  3016. showMsg(i18next.t('message.BillCancelWriteOff_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillCancelWriteOff_Failed⇒取消銷帳失敗╣
  3017. }
  3018. }, function () {
  3019. bill.AuditVal = '4';
  3020. showMsg(i18next.t('message.BillCancelWriteOff_Failed'), 'error'); // ╠message.BillCancelWriteOff_Failed⇒取消銷帳失敗╣
  3021. });
  3022. },
  3023. /**
  3024. * 帳單作廢
  3025. * @param bill(object)帳單資料
  3026. */
  3027. fnBillVoid = function (bill) {
  3028. layer.open({
  3029. type: 1,
  3030. title: i18next.t('common.VoidBill'),// ╠common.VoidBill⇒作廢帳單╣
  3031. area: ['400px', '220px'],//寬度
  3032. shade: 0.75,//遮罩
  3033. shadeClose: true,
  3034. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  3035. content: '<div class="pop-box">\
  3036. <textarea name="VoidReason" id="VoidReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.VoidReason" placeholder="作廢原因..."></textarea>\
  3037. </div>',
  3038. success: function (layero, idx) {
  3039. transLang(layero);
  3040. },
  3041. yes: function (index, layero) {
  3042. var sAuditVal = bill.AuditVal,
  3043. sVoidReason = layero.find('#VoidReason').val();
  3044. if (sVoidReason) {
  3045. bill.VoidReason = sVoidReason;
  3046. bill.AuditVal = '6';
  3047. g_api.ConnectLite(sProgramId, 'BillVoid', {
  3048. ImportBillNO: sDataId,
  3049. Bills: oCurData.Bills,
  3050. Bill: bill,
  3051. LogData: fnGetBillLogData(bill)
  3052. }, function (res) {
  3053. if (res.RESULT) {
  3054. layer.close(index);
  3055. showMsg(i18next.t("message.Void_Success"), 'success'); // ╠message.Void_Success⇒作廢成功╣
  3056. fnBindBillLists();
  3057. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  3058. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  3059. }
  3060. else {
  3061. bill.AuditVal = sAuditVal;
  3062. bill.VoidReason = '';
  3063. showMsg(i18next.t('message.Void_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  3064. }
  3065. }, function () {
  3066. bill.AuditVal = sAuditVal;
  3067. bill.VoidReason = '';
  3068. showMsg(i18next.t('message.Void_Failed'), 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  3069. });
  3070. }
  3071. else {
  3072. showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
  3073. }
  3074. }
  3075. });
  3076. },
  3077. /**
  3078. * 帳單刪除
  3079. * @param bill(object)帳單資料
  3080. */
  3081. fnBillDelete = function (bill) {
  3082. // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  3083. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  3084. var saNewBills = [];
  3085. $.each(oCurData.Bills, function (idx, _bill) {
  3086. if (_bill.BillNO !== bill.BillNO) {
  3087. saNewBills.push(_bill);
  3088. }
  3089. });
  3090. g_api.ConnectLite(sProgramId, 'BillDelete', {
  3091. ImportBillNO: sDataId,
  3092. Bills: saNewBills,
  3093. Bill: bill,
  3094. LogData: fnGetBillLogData(bill)
  3095. }, function (res) {
  3096. if (res.RESULT) {
  3097. showMsg(i18next.t("message.Delete_Success"), 'success'); // ╠message.Delete_Success⇒刪除成功╣
  3098. oCurData.Bills = saNewBills;
  3099. fnBindBillLists();
  3100. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  3101. fnDeleteBillInfo(bill.BillNO);
  3102. }
  3103. else {
  3104. showMsg(i18next.t("message.Delete_Failed") + '<br>' + res.MSG, 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  3105. }
  3106. }, function () {
  3107. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  3108. });
  3109. layer.close(index);
  3110. });
  3111. },
  3112. /**
  3113. * 抽單
  3114. * @param bill(object)帳單資料
  3115. */
  3116. fnBillReEdit = function (bill) {
  3117. bill.AuditVal = '7';
  3118. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  3119. Params: {
  3120. importexhibition: {
  3121. values: { Bills: JSON.stringify(oCurData.Bills) },
  3122. keys: { ImportBillNO: sDataId }
  3123. }
  3124. }
  3125. }, function (res) {
  3126. if (res.d > 0) {
  3127. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  3128. showMsg(i18next.t("message.ReEdit_Success"), 'success'); // ╠message.ReEdit_Success⇒抽單成功╣
  3129. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  3130. }
  3131. else {
  3132. bill.AuditVal = '1';
  3133. showMsg(i18next.t('message.ReEdit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  3134. }
  3135. }, function () {
  3136. bill.AuditVal = '1';
  3137. showMsg(i18next.t('message.ReEdit_Failed'), 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  3138. });
  3139. },
  3140. /**
  3141. * 取消抽單
  3142. * @param bill(object)帳單資料
  3143. */
  3144. fnBillCancelReEdit = function (bill) {
  3145. bill.AuditVal = '1';
  3146. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  3147. Params: {
  3148. importexhibition: {
  3149. values: { Bills: JSON.stringify(oCurData.Bills) },
  3150. keys: { ImportBillNO: sDataId }
  3151. }
  3152. }
  3153. }, function (res) {
  3154. if (res.d > 0) {
  3155. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  3156. showMsg(i18next.t("message.CancelReEdit_Success"), 'success'); // ╠message.CancelReEdit_Success⇒取消抽單成功╣
  3157. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  3158. }
  3159. else {
  3160. bill.AuditVal = '7';
  3161. showMsg(i18next.t('message.CancelReEdit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CancelReEdit_Failed⇒取消抽單失敗╣
  3162. }
  3163. }, function () {
  3164. bill.AuditVal = '7';
  3165. showMsg(i18next.t('message.CancelReEdit_Failed'), 'error'); // ╠message.CancelReEdit_Failed⇒取消抽單失敗╣
  3166. });
  3167. },
  3168. /**
  3169. * 列印事件
  3170. * @paramtemplid (string) 模版id
  3171. * @paramaction (string) 動作標識
  3172. * @parambill (objec) 帳單資料
  3173. */
  3174. fnPrint = function (templid, action, bill) {
  3175. var bReceipt = action.indexOf('Receipt') > -1,
  3176. fnToPrint = function (idx, paydatetext) {
  3177. g_api.ConnectLite(sProgramId, bReceipt ? 'PrintReceipt' : 'PrintBill', {
  3178. ImportBillNO: sDataId,
  3179. TemplID: templid,
  3180. Bill: bill,
  3181. Action: action,
  3182. PayDateText: paydatetext || ''
  3183. }, function (res) {
  3184. if (res.RESULT) {
  3185. if (idx) {
  3186. layer.close(idx);
  3187. }
  3188. var sPath = res.DATA.rel,
  3189. sTitle = bReceipt ? 'common.Receipt_Preview' : 'common.Bill_Preview';// ╠common.Receipt_Preview⇒收據預覽╣ ╠common.Bill_Preview⇒帳單預覽╣
  3190. if (action.indexOf('Print_') > -1) {
  3191. var index = layer.open({
  3192. type: 2,
  3193. title: i18next.t(sTitle),
  3194. content: gServerUrl + '/' + sPath,
  3195. area: ['900px', '500px'],
  3196. maxmin: true
  3197. });
  3198. //layer.full(index); //弹出即全屏
  3199. }
  3200. else {
  3201. DownLoadFile(sPath);
  3202. }
  3203. }
  3204. else {
  3205. // ╠common.Preview_Failed⇒預覽失敗╣ ╠common.DownLoad_Failed⇒下載失敗╣
  3206. showMsg(i18next.t(action.indexOf('Print_') > -1 ? 'common.Preview_Failed' : 'common.DownLoad_Failed') + '<br>' + res.MSG, 'error');
  3207. }
  3208. }, function () {
  3209. // ╠common.Preview_Failed⇒預覽失敗╣ ╠common.DownLoad_Failed⇒下載失敗╣
  3210. showMsg(i18next.t(action.indexOf('Print_') > -1 ? 'common.Preview_Failed' : 'common.DownLoad_Failed'), 'error'); //預覽失敗/下載失敗
  3211. }, true, i18next.t('message.Dataprocessing'));// ╠message.Dataprocessing⇒資料處理中...╣
  3212. };
  3213. if (bReceipt) {
  3214. fnToPrint();
  3215. }
  3216. else {
  3217. layer.open({
  3218. type: 1,
  3219. title: i18next.t('common.PayDatePopTitle'),// ╠common.PayDatePopTitle⇒付款日期設定╣
  3220. area: ['300px', '170px'],//寬度
  3221. shade: 0.75,//遮罩
  3222. shadeClose: true,
  3223. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  3224. content: '<div class="pop-box">\
  3225. <div class="col-sm-12" hidden>\
  3226. <input id="radio_1" type="radio" name="printitem" value="a"/>\
  3227. <label for="radio_1" data-i18n="common.PayDateText1">請立即安排付款</label>\
  3228. <input id="radio_2" type="radio" name="printitem" value="b" />\
  3229. <label for="radio_2" data-i18n="common.PayDateText2">a.s.a.p</label>\
  3230. <input id="radio_3" type="radio" name="printitem" value="c" checked="checked"/>\
  3231. <label for="radio_3" data-i18n="common.PayDateText3">日期</label>\
  3232. </div>\
  3233. <div class="col-sm-12 print-paydate">\
  3234. <input name="PayDate" type="text" maxlength="100" id="PayDate" class="form-control date-picker w100p" />\
  3235. </div>\
  3236. </div>',
  3237. success: function (layero, idx) {
  3238. var BillCheckDate = bill.BillCheckDate ? bill.BillCheckDate : new Date();
  3239. var sDefultDate = newDate(new Date(BillCheckDate).dateAdd('d', 15), true);
  3240. $('[name=printitem]').click(function () {
  3241. if (this.value === 'c') {
  3242. $('.print-paydate').show();
  3243. }
  3244. else {
  3245. $('.print-paydate').hide();
  3246. }
  3247. });
  3248. $('#PayDate').val(sDefultDate).datepicker({
  3249. changeYear: true,
  3250. changeMonth: true,
  3251. altFormat: 'yyyy/MM/dd',
  3252. onSelect: function (d, e) { },
  3253. afterInject: function (d, e) { }
  3254. });
  3255. transLang(layero);
  3256. },
  3257. yes: function (index, layero) {
  3258. var sPayDate = $('#PayDate').val(),
  3259. sPayDateType = $('[name=printitem]:checked').val(),
  3260. sPayDateText = $('[name=printitem]:checked').next().text();
  3261. if (sPayDateType === 'c' && !sPayDate) {
  3262. showMsg(i18next.t("message.PayDate_required")); // ╠message.PayDate_required⇒請選擇付款日期╣
  3263. return false;
  3264. }
  3265. fnToPrint(index, sPayDateType === 'c' ? sPayDate : sPayDateText);
  3266. }
  3267. });
  3268. }
  3269. },
  3270. /**
  3271. * 綁定帳單
  3272. */
  3273. fnBindBillLists = function () {
  3274. var oBillsBox = $('.bills-box');
  3275. oBillsBox.html('');
  3276. $('#tab3 .amountsum').val(0);
  3277. if (oCurData.Bills.length > 0) {
  3278. oCurData.Bills = Enumerable.From(oCurData.Bills).OrderBy("x=>x.BillCreateDate").ToArray();
  3279. $.each(oCurData.Bills, function (idx, bill) {
  3280. bill.Index = idx + 1;
  3281. bill.Advance = bill.Advance || 0;
  3282. var sHtml = $("#temp_billbox").render([bill]);
  3283. oBillsBox.append(sHtml);
  3284. var oBillBox = $('.bill-box-' + bill.BillNO);
  3285. oBillBox.find('[data-id="Currency"]').html(sAccountingCurrencyOptionsHtml).on('change', function () {
  3286. var sCurrencyId = this.value,
  3287. oCurrency = Enumerable.From(saAccountingCurrency).Where(function (e) { return e.ArgumentID == sCurrencyId; }).FirstOrDefault();
  3288. if (oCurrency === undefined)
  3289. oCurrency = {};
  3290. let TitleAttr = '';
  3291. let MainCurrency = fnCheckMainOrForeignCurrency(sCurrencyId);
  3292. if (MainCurrency) {
  3293. TitleAttr = 'common.MainCurrencyNontaxedAmountV2';
  3294. oBillBox.find('.BillMainCurrencyAdd [data-id="plusfeeitem"]').show();
  3295. oBillBox.find('.BillForeignCurrency').hide();
  3296. }
  3297. else {
  3298. TitleAttr = 'common.ForeignCurrencyNontaxedAmountV2';
  3299. oBillBox.find('.BillMainCurrencyAdd [data-id="plusfeeitem"]').hide();
  3300. oBillBox.find('.BillForeignCurrency').show();
  3301. }
  3302. bill.Currency = sCurrencyId;
  3303. bill.ExchangeRate = oCurrency.Correlation || '';
  3304. oBillBox.find('[data-id="ExchangeRate"]').val(oCurrency.Correlation || '');
  3305. oBillBox.find('.BillAmountTiltle').attr('data-i18n', TitleAttr).text(i18next.t(TitleAttr));
  3306. let ExchangeRate = oBillBox.find('[data-id="ExchangeRate"]').val();
  3307. fnCalcuBillsFee(oBillBox, '.BillForeignCurrency', '.BillMainCurrency', sCurrencyId, ExchangeRate);
  3308. bRequestStorage = true;
  3309. }).val(bill.Currency);
  3310. oBillBox.find('[data-id="Currency"]').change();
  3311. //oBillBox.find('[data-id="Currency"] option:first').remove();
  3312. oBillBox.find('[data-id="Payer"]').html(sCustomersNotAuditOptionsHtml).val(bill.Payer);
  3313. setTimeout(function () {
  3314. oBillBox.find('[data-id="Payer"]').select2({ width: '250px' });
  3315. }, 1000);
  3316. if (bill.Payer) {
  3317. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == bill.Payer; }),
  3318. saContactors = [];
  3319. if (oCur.Count() > 0) {
  3320. saContactors = JSON.parse(oCur.First().Contactors || '[]');
  3321. }
  3322. oBillBox.find('[data-id="Contactor"]').html(createOptions(saContactors, 'guid', 'FullName')).val(bill.Contactor).off('change').on('change', function (e) {
  3323. var sContactor = this.value;
  3324. if (sContactor) {
  3325. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  3326. Type: '',
  3327. Params: {
  3328. customers: {
  3329. guid: bill.Payer
  3330. },
  3331. }
  3332. }, function (res) {
  3333. var oRes = $.parseJSON(res.d);
  3334. if (oRes.Contactors) {
  3335. oRes.Contactors = $.parseJSON(oRes.Contactors || '[]');
  3336. var oContactor = Enumerable.From(oRes.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
  3337. bill.ContactorName = oContactor.FullName;
  3338. bill.Contactor = sContactor;
  3339. }
  3340. });
  3341. }
  3342. else {
  3343. bill.ContactorName = '';
  3344. bill.Contactor = '';
  3345. }
  3346. bRequestStorage = true;
  3347. });
  3348. oBillBox.find('[data-id="Contactor"]').select2();
  3349. }
  3350. else {
  3351. oBillBox.find('[data-id="Contactor"]').html(createOptions([]));
  3352. }
  3353. oBillBox.find('[data-id="Telephone"]').val(bill.Telephone);
  3354. moneyInput(oBillBox.find('[data-id="Advance"]'), 2);
  3355. moneyInput(oBillBox.find('[data-id="mAdvance"]'), 0);
  3356. oBillBox.find('[data-id="Advance"]').val(bill.Advance);
  3357. SetBillPrepayEvent(oBillBox, bill);
  3358. oBillBox.find('[data-id="Number"]').val(bill.Number).on('keyup blur', function (e) {
  3359. this.value = this.value.replace(/\D/g, '');
  3360. });
  3361. oBillBox.find('[data-id="Unit"]').val(bill.Unit);
  3362. oBillBox.find('[data-id="Weight"]').val(bill.Weight).on('keyup blur', function (e) {
  3363. keyIntp(e, this, 3);
  3364. });
  3365. oBillBox.find('[data-id="Volume"]').val(bill.Volume).on('keyup blur', function (e) {
  3366. keyIntp(e, this, 2);
  3367. });
  3368. oBillBox.find('[data-id="ExchangeRate"]').val(bill.ExchangeRate || 1.00);
  3369. fnBindFeeItem($('[data-id=bill_fees_' + bill.BillNO + ']'), oCurData, bill);
  3370. if (bill.ReceiptNumber) {//如果收據號碼已經產生就移除該按鈕
  3371. oBillBox.find('[data-id="ReceiptNumber"]').val(bill.ReceiptNumber);
  3372. oBillBox.find('[data-id="ReceiptDate"]').val(bill.ReceiptDate);
  3373. oBillBox.find('[data-id="createreceiptnumber"]').remove();
  3374. }
  3375. oBillBox.find('[data-id="Memo"]').val(bill.Memo);
  3376. oBillBox.find('[data-id="InvoiceNumber"]').val(bill.InvoiceNumber).on('blur', function (e) {
  3377. var that = this,
  3378. sInvoiceNumber = that.value;
  3379. if (sInvoiceNumber) {
  3380. return g_api.ConnectLite(Service.opm, ComFn.CheckInvoiceNum, {
  3381. InvoiceNumber: sInvoiceNumber
  3382. }, function (res) {
  3383. if (res.RESULT) {
  3384. var bExsit = res.DATA.rel;
  3385. if (bExsit) {
  3386. // ╠message.InvoiceNumberRepeat⇒發票號碼重複,請重新輸入!╣ ╠message.Tips⇒提示╣
  3387. layer.alert(i18next.t("message.InvoiceNumberRepeat"), { icon: 0, title: i18next.t("common.Tips") }, function (index) {
  3388. $(that).val('');
  3389. layer.close(index);
  3390. });
  3391. }
  3392. }
  3393. });
  3394. }
  3395. });
  3396. oBillBox.find('[data-id="InvoiceDate"]').val(bill.InvoiceDate);
  3397. oBillBox.find('.date-picker').datepicker({
  3398. changeYear: true,
  3399. changeMonth: true,
  3400. altFormat: 'yyyy/MM/dd'
  3401. });
  3402. oBillBox.find('[data-id="Payer"]').on('change', function () {
  3403. var sCustomerId = this.value,
  3404. saContactors = [];
  3405. if (sCustomerId) {
  3406. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == sCustomerId; }).First();
  3407. saContactors = JSON.parse(oCur.Contactors || '[]');
  3408. oBillBox.find('[data-id="Contactor"]').html(createOptions(saContactors, 'guid', 'FullName')).off('change').on('change', function () {
  3409. var sContactor = this.value;
  3410. if (sContactor) {
  3411. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  3412. Type: '',
  3413. Params: {
  3414. customers: {
  3415. guid: sCustomerId
  3416. },
  3417. }
  3418. }, function (res) {
  3419. var oRes = $.parseJSON(res.d);
  3420. if (oRes.Contactors) {
  3421. oRes.Contactors = $.parseJSON(oRes.Contactors || '[]');
  3422. var oContactor = Enumerable.From(oRes.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
  3423. bill.ContactorName = oContactor.FullName;
  3424. bill.Contactor = sContactor;
  3425. }
  3426. });
  3427. }
  3428. else {
  3429. bill.ContactorName = '';
  3430. bill.Contactor = '';
  3431. }
  3432. bRequestStorage = true;
  3433. });
  3434. oBillBox.find('[data-id="Telephone"]').val(oCur.Telephone);
  3435. oBillBox.find('[data-id="Contactor"]').select2({ width: '250px' });
  3436. }
  3437. else {
  3438. oBillBox.find('[data-id="Contactor"]').html(createOptions([]));
  3439. oBillBox.find('[data-id="Telephone"]').val('');
  3440. }
  3441. oBillBox.find('[data-id="Telephone"]').change();
  3442. bRequestStorage = true;
  3443. });
  3444. oBillBox.find('.bill-print').each(function () {
  3445. var that = this,
  3446. sTypeId = $(that).attr('data-action'),
  3447. oToolBar = null;
  3448. switch (sTypeId) {
  3449. case 'Print_Bill':
  3450. oToolBar = oPrintMenu.InvoicePrintMenu.tmpl
  3451. break;
  3452. case 'Print_Receipt':
  3453. oToolBar = oPrintMenu.ReceiptPrintMenu.tmpl
  3454. break;
  3455. case 'Download_Bill':
  3456. oToolBar = oPrintMenu.InvoiceDownLoadMenu.tmpl
  3457. break;
  3458. case 'Download_Receipt':
  3459. oToolBar = oPrintMenu.ReceiptDownLoadMenu.tmpl
  3460. break;
  3461. }
  3462. $(that).toolbar({
  3463. content: oToolBar,
  3464. position: 'left',
  3465. adjustment: 10,
  3466. style: 'yida',
  3467. }).on('toolbarItemClick',
  3468. function (e, ele) {
  3469. fnPrint($(ele).attr('data-id'), sTypeId, bill);
  3470. }
  3471. );
  3472. });
  3473. oBillBox.find('.btn-custom').not('disabled').off('click').on('click', function () {
  3474. var that = this,
  3475. sId = $(that).attr('data-id');
  3476. switch (sId) {
  3477. case 'plusfeeitem'://新增費用項目
  3478. fnPlusFeeItem(that, oCurData, null, bill.Currency);
  3479. break;
  3480. case 'createreceiptnumber'://產生收據號碼
  3481. fnGetReceiptNumber(that, bill).done(function () {
  3482. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  3483. Params: {
  3484. importexhibition: {
  3485. values: { Bills: JSON.stringify(oCurData.Bills) },
  3486. keys: { ImportBillNO: sDataId }
  3487. }
  3488. }
  3489. });
  3490. });
  3491. break;
  3492. case 'bill_submitaudit'://提交審核
  3493. fnBillToAudit(bill, that);
  3494. break;
  3495. case 'bill_audit'://主管審核
  3496. fnBillAudit(bill);
  3497. break;
  3498. case 'bill_cancelaudit'://取消審核
  3499. fnBillCancelAudit(bill);
  3500. break;
  3501. case 'bill_post'://過帳
  3502. fnBillPost(bill);
  3503. break;
  3504. case 'bill_cancelpost'://取消過帳
  3505. fnBillCancelPost(bill);
  3506. break;
  3507. case 'bill_writeoff'://銷帳
  3508. fnBillWriteOff(bill);
  3509. break;
  3510. case 'bill_canceloff'://銷帳
  3511. fnBillCancelWriteOff(bill);
  3512. break;
  3513. case 'bill_void'://作廢
  3514. fnBillVoid(bill);
  3515. break;
  3516. case 'bill_delete'://刪除
  3517. fnBillDelete(bill);
  3518. break;
  3519. case 'bill_reedit'://抽單
  3520. fnBillReEdit(bill);
  3521. break;
  3522. case 'bill_cancelreedit'://取消抽單
  3523. fnBillCancelReEdit(bill);
  3524. break;
  3525. }
  3526. });
  3527. });
  3528. $('#bills_add').removeAttr('disabled');
  3529. }
  3530. fnSetPermissions();//設置權限
  3531. $('.bills-add,#topshow_box').show();//當審通過之後才顯示新增帳單按鈕
  3532. transLang(oBillsBox);
  3533. },
  3534. /**
  3535. * 設置操作權限
  3536. */
  3537. fnSetPermissions = function () {
  3538. if (parent.UserInfo.roles.indexOf('Admin') === -1) {
  3539. 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) {//報關作業
  3540. $('[href="#tab3"],[href="#tab4"],[href="#tab9"],[href="#tab10"]').parent().show();
  3541. }
  3542. else {
  3543. $('[href="#tab3"],[href="#tab4"],[href="#tab9"],[href="#tab10"]').parent().hide();
  3544. }
  3545. if (!(parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser)) {//其他
  3546. $('#tab3,#tab9').find(':input,button,textarea').not('.alreadyaudit,.cancelaudi,.writeoff,.bills-print,.prepay,.mprepay,.billvoid,.canceloff,.cancelpost').attr('disabled', 'disabled');
  3547. $('#tab3,#tab9').find('.icon-p').addClass('disabled');
  3548. }
  3549. if (parent.UserInfo.roles.indexOf('Business') > -1) {//業務
  3550. $('#tab4,#tab10').find(':input,button,textarea').attr('disabled', 'disabled');
  3551. $('#tab4,#tab10').find('.icon-p').addClass('disabled');
  3552. }
  3553. if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
  3554. $('#tab1,#tab2,#tab3,#tab5,#tab6,#tab7,#tab8,#tab9').find(':input,button,textarea').not('.alreadyaudit,.cancelaudi,.writeoff,.bills-print,.prepay,.mprepay,.billvoid,.canceloff,.cancelpost,.importfeeitem,.plusfeeitem').attr('disabled', 'disabled');
  3555. $('#tab3,#tab9').find('.icon-p').addClass('disabled');
  3556. }
  3557. }
  3558. },
  3559. /**------------------------帳單部分---------------------------End*/
  3560. /**------------------------退運帳單部分---------------------------Start*/
  3561. /**
  3562. * 添加新帳單
  3563. */
  3564. fnRenderReturnBills = function () {
  3565. oCurData.ReturnBills = Enumerable.From(oCurData.ReturnBills).OrderBy("x=>x.CreateDate").ToArray();
  3566. var oReturnQuoteBox = $('.return-quote-box'),
  3567. oReturnActualcostBox = $('.return-actualcost-box'),
  3568. sReturnQuoteBoxHtml = $("#temp_return_quote_box").render(oCurData.ReturnBills),
  3569. sReturnActualcostBoxHtml = $("#temp_return_actualcost_box").render(oCurData.ReturnBills);
  3570. oReturnQuoteBox.html(sReturnQuoteBoxHtml);
  3571. oReturnActualcostBox.html(sReturnActualcostBoxHtml);
  3572. $.each(oCurData.ReturnBills, function (idx, Returns) {
  3573. var oFieldset_Return = $('.fieldset-' + Returns.guid);
  3574. fnBindFeeItem(oFieldset_Return.find('[data-id="quote-box"]'), Returns, Returns.Quote);//綁定報價
  3575. fnBindFeeItem(oFieldset_Return.find('[data-id="estimatedcost-box"]'), Returns, Returns.EstimatedCost);//綁定預估成本
  3576. if (Returns.EstimatedCost.AuditVal && Returns.EstimatedCost.AuditVal === '2') {//業務審核完
  3577. fnBindFeeItem(oFieldset_Return.find('[data-id="actualcost-pre-box"]'), Returns, Returns.EstimatedCost, true);
  3578. oFieldset_Return.find('.estimatedcost-memo').text(Returns.EstimatedCost.Memo || '');
  3579. }
  3580. fnBindFeeItem(oFieldset_Return.find('[data-id="actualcost-box"]'), Returns, Returns.ActualCost);//實際成本
  3581. fnInitialReturnAccountCurrency('.fieldset-' + Returns.guid, '-' + Returns.guid);//會計用匯率
  3582. oFieldset_Return.find('[data-source="quote"]').text(Returns.Quote.Memo || '');
  3583. oFieldset_Return.find('[data-source="estimatedcost"]').text(Returns.EstimatedCost.Memo || '');
  3584. oFieldset_Return.find('[data-source="actualcost"]').text(Returns.ActualCost.Memo || '');
  3585. oFieldset_Return.find('.plusfeeitem').not('disabled').off('click').on('click', function () {
  3586. fnPlusFeeItem(this, Returns);
  3587. });
  3588. oFieldset_Return.find('.importfeeitem').not('disabled').off('click').on('click', function () {
  3589. var sType = $(this).attr('data-type');
  3590. fnImportFeeitems(sType, oFieldset_Return, Returns);
  3591. });
  3592. oFieldset_Return.find('.copyfeeitem').not('disabled').off('click').on('click', function () {
  3593. var sType = $(this).attr('data-type');
  3594. fnCopyFeeitems(sType, oFieldset_Return, Returns);
  3595. });
  3596. oFieldset_Return.find('.plusfeeitemstar').not('disabled').off('click').on('click', function () {
  3597. fnPlusFeeItemStar(this, oFieldset_Return.find('[data-id="quote-box"]'), Returns);
  3598. });
  3599. oFieldset_Return.find('.estimated_submitaudit').not('disabled').off('click').on('click', function () {
  3600. if (Returns.EstimatedCost.FeeItems.length === 0 && !Returns.EstimatedCost.Memo) {
  3601. showMsg(i18next.t("message.EstimatedCostMemo_Required")); // ╠message.EstimatedCostMemo_Required⇒預估成本沒有費用明細,請至少填寫備註╣
  3602. return false;
  3603. }
  3604. if (!Returns.ReturnAccountingExchangeRate || !Returns.ReturnQuotationOrBillingCurrency) {
  3605. showMsg(i18next.t("message.QuotationOrBillingCurrencyField_Required")); // ╠message.QuotationOrBillingCurrencyField_Required⇒報價/帳單幣或匯率未選擇╣
  3606. return false;
  3607. }
  3608. Returns.Quote.AuditVal = '1';
  3609. Returns.EstimatedCost.AuditVal = '1';
  3610. g_api.ConnectLite(sProgramId, 'ReturnToAuditForQuote', {
  3611. ImportBillNO: sDataId,
  3612. ReturnBills: oCurData.ReturnBills,
  3613. SourceID: Returns.Quote.guid,
  3614. Index: idx + 1
  3615. }, function (res) {
  3616. if (res.RESULT) {
  3617. fnSetDisabled(oFieldset_Return.find('.quoteandprecost'), Returns.Quote);
  3618. showMsg(i18next.t("message.ToAudit_Success"), 'success'); // ╠message.ToAudit_Success⇒提交審核成功╣
  3619. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  3620. }
  3621. else {
  3622. Returns.Quote.AuditVal = '0';
  3623. Returns.EstimatedCost.AuditVal = '0';
  3624. showMsg(i18next.t('message.ToAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  3625. }
  3626. }, function () {
  3627. Returns.Quote.AuditVal = '0';
  3628. Returns.EstimatedCost.AuditVal = '0';
  3629. showMsg(i18next.t('message.ToAudit_Failed'), 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  3630. });
  3631. });
  3632. oFieldset_Return.find('.estimated_audit').not('disabled').off('click').on('click', function () {
  3633. layer.open({
  3634. type: 1,
  3635. title: i18next.t('common.Leader_Audit'),// ╠common.Leader_Audit⇒主管審核╣
  3636. area: ['400px', '260px'],//寬度
  3637. shade: 0.75,//遮罩
  3638. shadeClose: true,
  3639. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  3640. content: '<div class="pop-box">\
  3641. <textarea name="NotPassReason" id="NotPassReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.NotPassReason" placeholder="不通過原因..."></textarea><br>\
  3642. <button type="button" data-i18n="common.Pass" id="audit_pass" class="btn-custom green">通過</button>\
  3643. <button type="button" data-i18n="common.NotPass" id="audit_notpass" class="btn-custom red">不通過</button>\
  3644. </div>',
  3645. success: function (layero, index) {
  3646. $('.pop-box :button').click(function () {
  3647. var fnAuditForQuote = function () {
  3648. g_api.ConnectLite(sProgramId, 'ReturnAuditForQuote', {
  3649. ImportBillNO: sDataId,
  3650. ReturnBills: oCurData.ReturnBills,
  3651. AuditVal: Returns.Quote.AuditVal,
  3652. SourceID: Returns.Quote.guid,
  3653. Index: idx + 1
  3654. }, function (res) {
  3655. if (res.RESULT) {
  3656. showMsg(i18next.t("message.Audit_Completed"), 'success'); // ╠message.Audit_Completed⇒審核完成╣
  3657. if (Returns.Quote.AuditVal === '2') {
  3658. fnRenderReturnBills();
  3659. }
  3660. else {
  3661. fnSetDisabled(oFieldset_Return.find('.quoteandprecost'), Returns.Quote);
  3662. }
  3663. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  3664. }
  3665. else {
  3666. Returns.Quote.AuditVal = '1';
  3667. Returns.EstimatedCost.AuditVal = '1';
  3668. showMsg(i18next.t('message.Audit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  3669. }
  3670. }, function () {
  3671. Returns.Quote.AuditVal = '1';
  3672. Returns.EstimatedCost.AuditVal = '1';
  3673. showMsg(i18next.t('message.Audit_Failed'), 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  3674. });
  3675. },
  3676. sNotPassReason = $('#NotPassReason').val();
  3677. if (this.id === 'audit_pass') {
  3678. Returns.Quote.AuditVal = '2';
  3679. Returns.EstimatedCost.AuditVal = '2';
  3680. Returns.Quote.NotPassReason = '';
  3681. Returns.EstimatedCost.NotPassReason = '';
  3682. fnPushBill(Returns, Returns.guid, true).done(function () {
  3683. fnAuditForQuote();
  3684. });
  3685. }
  3686. else {
  3687. if (!sNotPassReason) {
  3688. showMsg(i18next.t("message.NotPassReason_Required")); // ╠message.NotPassReason_Required⇒請填寫不通過原因╣
  3689. return false;
  3690. }
  3691. else {
  3692. Returns.Quote.AuditVal = '3';
  3693. Returns.EstimatedCost.AuditVal = '3';
  3694. Returns.Quote.NotPassReason = sNotPassReason;
  3695. Returns.EstimatedCost.NotPassReason = sNotPassReason;
  3696. fnAuditForQuote();
  3697. }
  3698. }
  3699. layer.close(index);
  3700. });
  3701. transLang(layero);
  3702. }
  3703. });
  3704. });
  3705. oFieldset_Return.find('.estimated_synquote').not('disabled').off('click').on('click', function () {
  3706. Returns.EstimatedCost.FeeItems = clone(Returns.Quote.FeeItems);
  3707. $.each(Returns.EstimatedCost.FeeItems, function (idx, item) {
  3708. item.FinancialUnitPrice = 0;
  3709. item.FinancialNumber = 0;
  3710. item.FinancialAmount = 0;
  3711. item.FinancialTWAmount = 0;
  3712. item.FinancialTaxRate = '0%';
  3713. item.FinancialTax = 0;
  3714. item.CreateUser = parent.UserID;
  3715. item.CreateDate = newDate(null, true);
  3716. });
  3717. fnBindFeeItem(oFieldset_Return.find('[data-id="estimatedcost-box"]'), Returns, Returns.EstimatedCost);
  3718. });
  3719. $.each(Returns.Bills, function (i, bill) {
  3720. bill.Advance = bill.Advance || 0;
  3721. var oBillsBox = $('.return-bill-' + bill.parentid),
  3722. sHtml = $("#temp_returnbillbox").render([bill]);
  3723. oBillsBox.append(sHtml);
  3724. var oBillBox = $('.bill-box-' + bill.BillNO);
  3725. oBillBox.find('[data-id="Currency"]').html(sAccountingCurrencyOptionsHtml).on('change', function () {
  3726. var sCurrencyId = this.value,
  3727. oCurrency = Enumerable.From(saAccountingCurrency).Where(function (e) { return e.ArgumentID == sCurrencyId; }).FirstOrDefault();
  3728. if (oCurrency === undefined)
  3729. oCurrency = {};
  3730. let TitleAttr = '';
  3731. let MainCurrency = fnCheckMainOrForeignCurrency(sCurrencyId);
  3732. if (MainCurrency) {
  3733. TitleAttr = 'common.MainCurrencyNontaxedAmountV2';
  3734. oBillBox.find('.ReturnBillMainCurrencyAdd [data-id="plusfeeitem"]').show();
  3735. oBillBox.find('.ReturnBillForeignCurrency').hide();
  3736. }
  3737. else {
  3738. TitleAttr = 'common.ForeignCurrencyNontaxedAmountV2';
  3739. oBillBox.find('.ReturnBillMainCurrencyAdd [data-id="plusfeeitem"]').hide();
  3740. oBillBox.find('.ReturnBillForeignCurrency').show();
  3741. }
  3742. oBillBox.find('.ReturnBillAmountTiltle-' + bill.guid).attr('data-i18n', TitleAttr).text(i18next.t(TitleAttr));
  3743. bill.Currency = sCurrencyId;
  3744. bill.ExchangeRate = oCurrency.Correlation || '';
  3745. oBillBox.find('[data-id="ExchangeRate"]').val(oCurrency.Correlation || '');
  3746. let ExchangeRate = oBillBox.find('[data-id="ExchangeRate"]').val();
  3747. fnCalcuBillsFee(oBillBox, '.ReturnBillForeignCurrency', '.ReturnBillMainCurrency', sCurrencyId, ExchangeRate);
  3748. bRequestStorage = true;
  3749. }).val(bill.Currency);
  3750. oBillBox.find('[data-id="Currency"]').change();
  3751. //oBillBox.find('[data-id="Currency"] option:first').remove();
  3752. oBillBox.find('[data-id="Payer"]').html(sCustomersNotAuditOptionsHtml).val(bill.Payer);
  3753. setTimeout(function () {
  3754. oBillBox.find('[data-id="Payer"]').select2({ width: '250px' });
  3755. }, 1000);
  3756. if (bill.Payer) {
  3757. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == bill.Payer; }),
  3758. saContactors = [];
  3759. if (oCur.Count() > 0) {
  3760. saContactors = JSON.parse(oCur.First().Contactors || '[]');
  3761. }
  3762. oBillBox.find('[data-id="Contactor"]').html(createOptions(saContactors, 'guid', 'FullName')).val(bill.Contactor).off('change').on('change', function (e) {
  3763. var sContactor = this.value;
  3764. if (sContactor) {
  3765. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  3766. Type: '',
  3767. Params: {
  3768. customers: {
  3769. guid: bill.Payer
  3770. },
  3771. }
  3772. }, function (res) {
  3773. var oRes = $.parseJSON(res.d);
  3774. if (oRes.Contactors) {
  3775. oRes.Contactors = $.parseJSON(oRes.Contactors || '[]');
  3776. var oContactor = Enumerable.From(oRes.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
  3777. bill.ContactorName = oContactor.FullName;
  3778. bill.Contactor = sContactor;
  3779. }
  3780. });
  3781. }
  3782. else {
  3783. bill.ContactorName = '';
  3784. bill.Contactor = '';
  3785. }
  3786. bRequestStorage = true;
  3787. });;
  3788. oBillBox.find('[data-id="Contactor"]').select2();
  3789. }
  3790. else {
  3791. oBillBox.find('[data-id="Contactor"]').html(createOptions([]));
  3792. }
  3793. oBillBox.find('[data-id="Telephone"]').val(bill.Telephone);
  3794. moneyInput(oBillBox.find('[data-id="Advance"]'), 2);
  3795. moneyInput(oBillBox.find('[data-id="mAdvance"]'), 0);
  3796. oBillBox.find('[data-id="Advance"]').val(bill.Advance);
  3797. SetBillPrepayEvent(oBillBox, bill);
  3798. oBillBox.find('[data-id="Number"]').val(bill.Number).on('keyup blur', function (e) {
  3799. this.value = this.value.replace(/\D/g, '');
  3800. });
  3801. oBillBox.find('[data-id="Unit"]').val(bill.Unit);
  3802. oBillBox.find('[data-id="Weight"]').val(bill.Weight).on('keyup blur', function (e) {
  3803. keyIntp(e, this, 3);
  3804. });
  3805. oBillBox.find('[data-id="Volume"]').val(bill.Volume).on('keyup blur', function (e) {
  3806. keyIntp(e, this, 2);
  3807. });
  3808. oBillBox.find('[data-id="ExchangeRate"]').val(bill.ExchangeRate || 1.00);
  3809. fnBindFeeItem($('[data-id=bill_fees_' + bill.BillNO + ']'), Returns, bill);
  3810. if (bill.ReceiptNumber) {//如果收據號碼已經產生就移除該按鈕
  3811. oBillBox.find('[data-id="ReceiptNumber"]').val(bill.ReceiptNumber);
  3812. oBillBox.find('[data-id="ReceiptDate"]').val(bill.ReceiptDate);
  3813. oBillBox.find('[data-id="createreceiptnumber"]').remove();
  3814. }
  3815. oBillBox.find('[data-id="Memo"]').val(bill.Memo);
  3816. oBillBox.find('[data-id="InvoiceNumber"]').val(bill.InvoiceNumber).on('blur', function (e) {
  3817. var that = this,
  3818. sInvoiceNumber = that.value;
  3819. if (sInvoiceNumber) {
  3820. return g_api.ConnectLite(Service.opm, ComFn.CheckInvoiceNum, {
  3821. InvoiceNumber: sInvoiceNumber
  3822. }, function (res) {
  3823. if (res.RESULT) {
  3824. var bExsit = res.DATA.rel;
  3825. if (bExsit) {
  3826. // ╠message.InvoiceNumberRepeat⇒發票號碼重複,請重新輸入!╣ ╠message.Tips⇒提示╣
  3827. layer.alert(i18next.t("message.InvoiceNumberRepeat"), { icon: 0, title: i18next.t("common.Tips") }, function (index) {
  3828. $(that).val('');
  3829. layer.close(index);
  3830. });
  3831. }
  3832. }
  3833. });
  3834. }
  3835. });
  3836. oBillBox.find('[data-id="InvoiceDate"]').val(bill.InvoiceDate);
  3837. oBillBox.find('.date-picker').datepicker({
  3838. changeYear: true,
  3839. changeMonth: true,
  3840. altFormat: 'yyyy/MM/dd'
  3841. });
  3842. inputChange(oBillBox.find('[data-source="bill"]'), bill);
  3843. var saContactors = [];
  3844. oBillBox.find('[data-id="Payer"]').on('change', function () {
  3845. var sCustomerId = this.value;
  3846. if (sCustomerId) {
  3847. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == sCustomerId; }).First();
  3848. saContactors = JSON.parse(oCur.Contactors || '[]');
  3849. oBillBox.find('[data-id="Contactor"]').html(createOptions(saContactors, 'guid', 'FullName')).off('change').on('change', function () {
  3850. var sContactor = this.value;
  3851. if (sContactor) {
  3852. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  3853. Type: '',
  3854. Params: {
  3855. customers: {
  3856. guid: sCustomerId
  3857. },
  3858. }
  3859. }, function (res) {
  3860. var oRes = $.parseJSON(res.d);
  3861. if (oRes.Contactors) {
  3862. oRes.Contactors = $.parseJSON(oRes.Contactors || '[]');
  3863. var oContactor = Enumerable.From(oRes.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
  3864. bill.ContactorName = oContactor.FullName;
  3865. bill.Contactor = sContactor;
  3866. }
  3867. });
  3868. }
  3869. else {
  3870. bill.ContactorName = '';
  3871. bill.Contactor = '';
  3872. }
  3873. bRequestStorage = true;
  3874. });
  3875. oBillBox.find('[data-id="Telephone"]').val(oCur.Telephone);
  3876. oBillBox.find('[data-id="Contactor"]').select2();
  3877. }
  3878. else {
  3879. oBillBox.find('[data-id="Contactor"]').html(createOptions([]));
  3880. oBillBox.find('[data-id="Telephone"]').val('');
  3881. }
  3882. oBillBox.find('[data-id="Telephone"]').change();
  3883. bRequestStorage = true;
  3884. });
  3885. oBillBox.find('.bill-print').each(function () {
  3886. var that = this,
  3887. sTypeId = $(that).attr('data-action'),
  3888. oToolBar = null;
  3889. switch (sTypeId) {
  3890. case 'Print_Bill':
  3891. oToolBar = oPrintMenu.InvoicePrintMenu.tmpl
  3892. break;
  3893. case 'Print_Receipt':
  3894. oToolBar = oPrintMenu.ReceiptPrintMenu.tmpl
  3895. break;
  3896. case 'Download_Bill':
  3897. oToolBar = oPrintMenu.InvoiceDownLoadMenu.tmpl
  3898. break;
  3899. case 'Download_Receipt':
  3900. oToolBar = oPrintMenu.ReceiptDownLoadMenu.tmpl
  3901. break;
  3902. }
  3903. $(that).toolbar({
  3904. content: oToolBar,
  3905. position: 'left',
  3906. adjustment: 10,
  3907. style: 'yida',
  3908. }).on('toolbarItemClick',
  3909. function (e, ele) {
  3910. fnPrint($(ele).attr('data-id'), sTypeId, bill);
  3911. }
  3912. );
  3913. });
  3914. oBillBox.find('.btn-custom').not('disabled').off('click').on('click', function () {
  3915. var that = this,
  3916. sId = $(that).attr('data-id');
  3917. switch (sId) {
  3918. case 'plusfeeitem'://新增費用項目
  3919. fnPlusFeeItem(that, Returns, null, bill.Currency);
  3920. break;
  3921. case 'createreceiptnumber'://產生收據號碼
  3922. fnGetReceiptNumber(that, bill).done(function () {
  3923. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  3924. Params: {
  3925. importexhibition: {
  3926. values: { ReturnBills: JSON.stringify(oCurData.ReturnBills) },
  3927. keys: { ImportBillNO: sDataId }
  3928. }
  3929. }
  3930. });
  3931. });
  3932. break;
  3933. case 'bill_submitaudit'://提交審核
  3934. fnReturnBillToAudit(bill, that);
  3935. break;
  3936. case 'bill_audit'://主管審核
  3937. fnReturnBillAudit(bill);
  3938. break;
  3939. case 'bill_cancelaudit'://取消審核
  3940. fnReturnBillCancelAudit(bill);
  3941. break;
  3942. case 'bill_post'://過帳
  3943. fnReturnBillPost(bill);
  3944. break;
  3945. case 'bill_cancelpost'://取消過帳
  3946. fnReturnBillCancelPost(bill);
  3947. break;
  3948. case 'bill_writeoff'://銷帳
  3949. fnReturnBillWriteOff(bill);
  3950. break;
  3951. case 'bill_canceloff'://取消銷帳
  3952. fnReturnBillCancelWriteOff(bill);
  3953. break;
  3954. case 'bill_void'://作廢
  3955. fnReturnBillVoid(bill);
  3956. break;
  3957. case 'bill_delete'://刪除
  3958. fnReturnBillDelete(bill);
  3959. break;
  3960. case 'bill_reedit'://抽單
  3961. fnReturnBillReEdit(bill);
  3962. break;
  3963. case 'bill_cancelreedit'://取消抽單
  3964. fnReturnBillCancelReEdit(bill);
  3965. break;
  3966. }
  3967. });
  3968. });
  3969. if ((parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) && Returns.Quote.AuditVal === '2') {
  3970. oFieldset_Return.find('.returnbills_add').removeAttr('disabled').click(function () {
  3971. fnPushBill(Returns, Returns.guid, true).done(function () {
  3972. fnRenderReturnBills();
  3973. });
  3974. });
  3975. oFieldset_Return.find('.returnbills-add-box').show();
  3976. }
  3977. });
  3978. fnSetPermissions();//設置權限
  3979. $('#topshow_box_return').show();//當審通過之後才顯示總金額
  3980. transLang($('#tab9,#tab10'));
  3981. },
  3982. /**
  3983. * 添加新帳單
  3984. */
  3985. fnPushReturnBill = function () {
  3986. var oNewReturnBill = {};
  3987. oNewReturnBill.guid = guid();
  3988. oNewReturnBill.index = oCurData.ReturnBills.length + 1;
  3989. oNewReturnBill.Quote = { guid: guid(), KeyName: 'Quote', AuditVal: '0', FeeItems: [] };
  3990. oNewReturnBill.EstimatedCost = { guid: guid(), KeyName: 'EstimatedCost', AuditVal: '0', FeeItems: [] };
  3991. oNewReturnBill.ActualCost = { guid: guid(), KeyName: 'ActualCost', AuditVal: '0', FeeItems: [] };
  3992. oNewReturnBill.Bills = [];
  3993. oNewReturnBill.CreateDate = newDate();
  3994. oNewReturnBill.ReturnQuotationOrBillingCurrency = ''
  3995. oNewReturnBill.ReturnAccountingExchangeRate = '';
  3996. oCurData.ReturnBills.push(oNewReturnBill);
  3997. fnRenderReturnBills();
  3998. },
  3999. fnReturnBillToAudit = function (bill, el) {
  4000. var sMsg = '',
  4001. elBillBox = $(el).parents('.financial');
  4002. if (!bill.Currency) {
  4003. sMsg += i18next.t("ExhibitionImport_Upd.Currency_required") + '<br/>'; // ╠common.Currency_required⇒請輸入帳單幣別╣
  4004. }
  4005. if (!bill.Payer) {
  4006. sMsg += i18next.t("ExhibitionImport_Upd.Payer_required") + '<br/>'; // ╠ExhibitionImport_Upd.SupplierEamil_required⇒請輸入付款人╣
  4007. }
  4008. if (!bill.Number) {
  4009. sMsg += i18next.t("message.Number_required") + '<br/>'; // ╠message.Number_required⇒請輸入件數╣
  4010. }
  4011. if (!bill.Weight) {
  4012. sMsg += i18next.t("message.Weight_required") + '<br/>'; // ╠message.Weight_required⇒請輸入重量╣
  4013. }
  4014. if (!bill.Volume) {
  4015. sMsg += i18next.t("message.Volume_required") + '<br/>'; // ╠message.Volume_required⇒請輸入材積(CBM)╣
  4016. }
  4017. if (!bill.ReImportNum) {
  4018. sMsg += i18next.t("message.ReFlow_required"); // ╠message.ReFlow_required⇒請輸入退運流程╣
  4019. }
  4020. if (elBillBox.find('.jsgrid-update-button').length > 0) {
  4021. sMsg += i18next.t("message.DataEditing") + '<br/>'; // ╠message.DataEditing⇒該賬單處於編輯中╣
  4022. }
  4023. if (sMsg) {
  4024. showMsg(sMsg); // 必填欄位
  4025. return;
  4026. }
  4027. bill.AuditVal = '1';
  4028. g_api.ConnectLite(sProgramId, 'ReturnToAuditForBill', {
  4029. ImportBillNO: sDataId,
  4030. ReturnBills: oCurData.ReturnBills,
  4031. Bill: bill
  4032. }, function (res) {
  4033. if (res.RESULT) {
  4034. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4035. showMsg(i18next.t("message.ToAudit_Success"), 'success'); // ╠message.ToAudit_Success⇒提交審核成功╣
  4036. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  4037. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4038. }
  4039. else {
  4040. bill.AuditVal = '0';
  4041. showMsg(i18next.t('message.ToAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  4042. }
  4043. }, function () {
  4044. bill.AuditVal = '0';
  4045. showMsg(i18next.t('message.ToAudit_Failed'), 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  4046. });
  4047. },
  4048. /**
  4049. * 帳單審核
  4050. * @param bill(object)帳單資料
  4051. */
  4052. fnReturnBillAudit = function (bill) {
  4053. layer.open({
  4054. type: 1,
  4055. title: i18next.t('common.Leader_Audit'),// ╠common.Leader_Audit⇒主管審核╣
  4056. area: ['400px', '260px'],//寬度
  4057. shade: 0.75,//遮罩
  4058. shadeClose: true,
  4059. btn: [i18next.t('common.Cancel')],// ╠common.Cancel⇒取消╣
  4060. content: '<div class="pop-box">\
  4061. <textarea name="NotPassReason" id="NotPassReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.NotPassReason" placeholder="不通過原因..."></textarea><br>\
  4062. <button type="button" data-i18n="common.Pass" id="audit_pass" class="btn-custom green">通過</button>\
  4063. <button type="button" data-i18n="common.NotPass" id="audit_notpass" class="btn-custom red">不通過</button>\
  4064. </div>',
  4065. success: function (layero, idx) {
  4066. $('.pop-box :button').click(function () {
  4067. var sNotPassReason = $('#NotPassReason').val();
  4068. if (this.id === 'audit_pass') {
  4069. bill.AuditVal = '2';
  4070. bill.NotPassReason = '';
  4071. }
  4072. else {
  4073. if (!sNotPassReason) {
  4074. showMsg(i18next.t("message.NotPassReason_Required")); // ╠message.NotPassReason_Required⇒請填寫不通過原因╣
  4075. return false;
  4076. }
  4077. else {
  4078. bill.AuditVal = '3';
  4079. bill.NotPassReason = sNotPassReason;
  4080. }
  4081. }
  4082. bill.BillCheckDate = newDate();
  4083. bill.CreateDate = newDate();
  4084. if (!bill.BillFirstCheckDate) {
  4085. bill.BillFirstCheckDate = bill.BillCheckDate;
  4086. }
  4087. g_api.ConnectLite(sProgramId, 'ReturnAuditForBill', {
  4088. ImportBillNO: sDataId,
  4089. ReturnBills: oCurData.ReturnBills,
  4090. Bill: bill
  4091. }, function (res) {
  4092. if (res.RESULT) {
  4093. $('.bill-box-' + bill.BillNO).find('.bill-chewckdate').text(bill.BillCheckDate);
  4094. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4095. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  4096. showMsg(i18next.t("message.Audit_Completed"), 'success'); // ╠message.Audit_Completed⇒審核完成╣
  4097. if (bill.AuditVal === '2') {
  4098. parent.msgs.server.pushTransfer(parent.OrgID, parent.UserID, bill.BillNO, 1);
  4099. }
  4100. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4101. }
  4102. else {
  4103. bill.AuditVal = '1';
  4104. if (bill.BillCheckDate === bill.BillFirstCheckDate) {
  4105. bill.BillFirstCheckDate = '';
  4106. }
  4107. bill.BillCheckDate = '';
  4108. showMsg(i18next.t('message.Audit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  4109. }
  4110. }, function () {
  4111. bill.AuditVal = '1';
  4112. if (bill.BillCheckDate === bill.BillFirstCheckDate) {
  4113. bill.BillFirstCheckDate = '';
  4114. }
  4115. bill.BillCheckDate = '';
  4116. showMsg(i18next.t('message.Audit_Failed'), 'error'); // ╠message.Audit_Failed⇒審核失敗╣
  4117. });
  4118. layer.close(idx);
  4119. });
  4120. transLang(layero);
  4121. }
  4122. });
  4123. },
  4124. /**
  4125. * 會計取消審核
  4126. * @param bill(object)帳單資料
  4127. */
  4128. fnReturnBillCancelAudit = function (bill) {
  4129. var sBillCheckDate = bill.BillCheckDate;
  4130. bill.AuditVal = '0';
  4131. bill.BillCheckDate = '';
  4132. g_api.ConnectLite(sProgramId, 'ReturnCancelAudit', {
  4133. ImportBillNO: sDataId,
  4134. ReturnBills: oCurData.ReturnBills,
  4135. Bill: bill,
  4136. LogData: fnGetBillLogData(bill)
  4137. }, function (res) {
  4138. if (res.RESULT) {
  4139. $('.bill-box-' + bill.BillNO).find('.bill-chewckdate').text('');
  4140. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4141. showMsg(i18next.t("message.CancelAudit_Success"), 'success'); // ╠message.CancelAudit_Success⇒取消審核完成╣
  4142. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  4143. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4144. }
  4145. else {
  4146. bill.AuditVal = '2';
  4147. bill.BillCheckDate = sBillCheckDate;
  4148. showMsg(i18next.t('message.CancelAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CancelAudit_Failed⇒取消審核失敗╣
  4149. }
  4150. }, function () {
  4151. bill.AuditVal = '2';
  4152. bill.BillCheckDate = sBillCheckDate;
  4153. showMsg(i18next.t('message.CancelAudit_Failed'), 'error'); // ╠message.CancelAudit_Failed⇒取消審核失敗╣
  4154. });
  4155. },
  4156. /**
  4157. * 過帳
  4158. * @param bill(object)帳單資料
  4159. */
  4160. fnReturnBillPost = function (bill) {
  4161. bill.AuditVal = '5';
  4162. bill.CreateDate = newDate();
  4163. g_api.ConnectLite(sProgramId, 'ReturnBillPost', {
  4164. ImportBillNO: sDataId,
  4165. ReturnBills: oCurData.ReturnBills,
  4166. Bill: bill
  4167. }, function (res) {
  4168. if (res.RESULT) {
  4169. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4170. showMsg(i18next.t("message.BillPost_Success"), 'success'); // ╠message.BillPost_Success⇒過帳完成╣
  4171. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  4172. parent.msgs.server.pushTransfer(parent.OrgID, parent.UserID, bill.BillNO, 1);
  4173. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4174. }
  4175. else {
  4176. bill.AuditVal = '2';
  4177. showMsg(i18next.t('message.BillPost_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillPost_Failed⇒過帳失敗╣
  4178. }
  4179. }, function () {
  4180. bill.AuditVal = '2';
  4181. showMsg(i18next.t('message.BillPost_Failed'), 'error'); // ╠message.BillPost_Failed⇒過帳失敗╣
  4182. });
  4183. },
  4184. /**
  4185. * 取消過帳
  4186. * @param bill(object)帳單資料
  4187. */
  4188. fnReturnBillCancelPost = function (bill) {
  4189. bill.AuditVal = '2';
  4190. g_api.ConnectLite(sProgramId, 'ReturnBillCancelPost', {
  4191. ImportBillNO: sDataId,
  4192. ReturnBills: oCurData.ReturnBills,
  4193. Bill: bill,
  4194. LogData: fnGetBillLogData(bill)
  4195. }, function (res) {
  4196. if (res.RESULT) {
  4197. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4198. showMsg(i18next.t("message.BillCancePost_Success"), 'success'); // ╠message.BillCancePost_Success⇒取消過帳完成╣
  4199. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  4200. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4201. }
  4202. else {
  4203. bill.AuditVal = '5';
  4204. showMsg(i18next.t('message.BillCancePost_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillCancePost_Failed⇒取消過帳失敗╣
  4205. }
  4206. }, function () {
  4207. bill.AuditVal = '5';
  4208. showMsg(i18next.t('message.BillCancePost_Failed'), 'error'); // ╠message.BillCancePost_Failed⇒取消過帳失敗╣
  4209. });
  4210. },
  4211. /**
  4212. * 會計銷帳
  4213. * @param bill(object)帳單資料
  4214. */
  4215. fnReturnBillWriteOff = function (bill) {
  4216. bill.AuditVal = '4';
  4217. bill.BillWriteOffDate = newDate();
  4218. g_api.ConnectLite(sProgramId, 'ReturnWriteOff', {
  4219. ImportBillNO: sDataId,
  4220. ReturnBills: oCurData.ReturnBills,
  4221. Bill: bill
  4222. }, function (res) {
  4223. if (res.RESULT) {
  4224. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4225. showMsg(i18next.t("message.BillWriteOff_Success"), 'success'); // ╠message.BillWriteOff_Success⇒銷帳完成╣
  4226. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  4227. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4228. }
  4229. else {
  4230. bill.AuditVal = '5';
  4231. showMsg(i18next.t('message.BillWriteOff_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillWriteOff_Failed⇒銷帳失敗╣
  4232. }
  4233. }, function () {
  4234. bill.AuditVal = '5';
  4235. showMsg(i18next.t('message.BillWriteOff_Failed'), 'error'); // ╠message.BillWriteOff_Failed⇒銷帳失敗╣
  4236. });
  4237. },
  4238. /**
  4239. * 會計取消銷帳
  4240. * @param bill(object)帳單資料
  4241. */
  4242. fnReturnBillCancelWriteOff = function (bill) {
  4243. bill.AuditVal = '5';
  4244. bill.BillWriteOffDate = '';
  4245. g_api.ConnectLite(sProgramId, 'ReturnCancelWriteOff', {
  4246. ImportBillNO: sDataId,
  4247. ReturnBills: oCurData.ReturnBills,
  4248. Bill: bill,
  4249. LogData: fnGetBillLogData(bill)
  4250. }, function (res) {
  4251. if (res.RESULT) {
  4252. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4253. showMsg(i18next.t("message.BillCancelWriteOff_Success"), 'success'); // ╠message.BillCancelWriteOff_Success⇒取消銷帳完成╣
  4254. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4255. }
  4256. else {
  4257. bill.AuditVal = '4';
  4258. showMsg(i18next.t('message.BillCancelWriteOff_Failed') + '<br>' + res.MSG, 'error'); // ╠message.BillCancelWriteOff_Failed⇒取消銷帳失敗╣
  4259. }
  4260. }, function () {
  4261. bill.AuditVal = '4';
  4262. showMsg(i18next.t('message.BillCancelWriteOff_Failed'), 'error'); // ╠message.BillCancelWriteOff_Failed⇒取消銷帳失敗╣
  4263. });
  4264. },
  4265. /**
  4266. * 帳單作廢
  4267. * @param (object)bill 帳單資料
  4268. */
  4269. fnReturnBillVoid = function (bill) {
  4270. layer.open({
  4271. type: 1,
  4272. title: i18next.t('common.VoidBill'),// ╠common.VoidBill⇒作廢帳單╣
  4273. area: ['400px', '220px'],//寬度
  4274. shade: 0.75,//遮罩
  4275. shadeClose: true,
  4276. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  4277. content: '<div class="pop-box">\
  4278. <textarea name="VoidReason" id="VoidReason" style="min-width:300px;" class="form-control" rows="5" cols="20" placeholderid="common.VoidReason" placeholder="作廢原因..."></textarea>\
  4279. </div>',
  4280. success: function (layero, idx) {
  4281. transLang(layero);
  4282. },
  4283. yes: function (index, layero) {
  4284. var sAuditVal = bill.AuditVal,
  4285. sVoidReason = layero.find('#VoidReason').val();
  4286. if (sVoidReason) {
  4287. bill.VoidReason = sVoidReason;
  4288. bill.AuditVal = '6';
  4289. g_api.ConnectLite(sProgramId, 'ReturnBillVoid', {
  4290. ImportBillNO: sDataId,
  4291. ReturnBills: oCurData.ReturnBills,
  4292. Bill: bill,
  4293. LogData: fnGetBillLogData(bill)
  4294. }, function (res) {
  4295. if (res.RESULT) {
  4296. layer.close(index);
  4297. showMsg(i18next.t("message.Void_Success"), 'success'); // ╠message.Void_Success⇒作廢成功╣
  4298. fnRenderReturnBills();
  4299. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  4300. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4301. }
  4302. else {
  4303. bill.AuditVal = sAuditVal;
  4304. bill.VoidReason = '';
  4305. showMsg(i18next.t('message.Void_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  4306. }
  4307. }, function () {
  4308. bill.AuditVal = sAuditVal;
  4309. bill.VoidReason = '';
  4310. showMsg(i18next.t('message.Void_Failed'), 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  4311. });
  4312. }
  4313. else {
  4314. showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
  4315. }
  4316. }
  4317. });
  4318. },
  4319. /**
  4320. * 帳單刪除
  4321. * @param (object)bill 帳單資料
  4322. */
  4323. fnReturnBillDelete = function (bill) {
  4324. // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  4325. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  4326. var saNewBills = [];
  4327. $.each(oCurData.ReturnBills, function (idx, Returns) {
  4328. if (Returns.guid === bill.parentid) {
  4329. var saNewBills = [];
  4330. $.each(Returns.Bills, function (i, _bill) {
  4331. if (_bill.BillNO !== bill.BillNO) {
  4332. saNewBills.push(_bill);
  4333. }
  4334. });
  4335. Returns.Bills = saNewBills;
  4336. return false;
  4337. }
  4338. });
  4339. g_api.ConnectLite(sProgramId, 'ReturnBillDelete', {
  4340. ImportBillNO: sDataId,
  4341. ReturnBills: oCurData.ReturnBills,
  4342. Bill: bill,
  4343. LogData: fnGetBillLogData(bill)
  4344. }, function (res) {
  4345. if (res.RESULT) {
  4346. showMsg(i18next.t("message.Delete_Success"), 'success'); // ╠message.Delete_Success⇒刪除成功╣
  4347. fnRenderReturnBills();
  4348. parent.msgs.server.pushTip(parent.OrgID, res.DATA.rel);
  4349. fnDeleteBillInfo(bill.BillNO);
  4350. }
  4351. else {
  4352. showMsg(i18next.t("message.Delete_Failed") + '<br>' + res.MSG, 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  4353. }
  4354. }, function () {
  4355. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  4356. });
  4357. layer.close(index);
  4358. });
  4359. },
  4360. /**
  4361. * 抽單
  4362. * @param bill(object)帳單資料
  4363. */
  4364. fnReturnBillReEdit = function (bill) {
  4365. bill.AuditVal = '7';
  4366. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  4367. Params: {
  4368. importexhibition: {
  4369. values: { ReturnBills: JSON.stringify(oCurData.ReturnBills) },
  4370. keys: { ImportBillNO: sDataId }
  4371. }
  4372. }
  4373. }, function (res) {
  4374. if (res.d > 0) {
  4375. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4376. showMsg(i18next.t("message.ReEdit_Success"), 'success'); // ╠message.ReEdit_Success⇒抽單成功╣
  4377. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4378. }
  4379. else {
  4380. bill.AuditVal = '1';
  4381. showMsg(i18next.t('message.ReEdit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  4382. }
  4383. }, function () {
  4384. bill.AuditVal = '1';
  4385. showMsg(i18next.t('message.ReEdit_Failed'), 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  4386. });
  4387. },
  4388. /**
  4389. * 取消抽單
  4390. * @param bill(object)帳單資料
  4391. */
  4392. fnReturnBillCancelReEdit = function (bill) {
  4393. bill.AuditVal = '1';
  4394. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  4395. Params: {
  4396. importexhibition: {
  4397. values: { ReturnBills: JSON.stringify(oCurData.ReturnBills) },
  4398. keys: { ImportBillNO: sDataId }
  4399. }
  4400. }
  4401. }, function (res) {
  4402. if (res.d > 0) {
  4403. fnSetDisabled($('.bill-box-' + bill.BillNO), bill);
  4404. showMsg(i18next.t("message.CancelReEdit_Success"), 'success'); // ╠message.CancelReEdit_Success⇒取消抽單成功╣
  4405. fnUpdateBillInfo(sProgramId, sDataId, bill.BillNO);
  4406. }
  4407. else {
  4408. bill.AuditVal = '7';
  4409. showMsg(i18next.t('message.CancelReEdit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.CancelReEdit_Failed⇒取消抽單失敗╣
  4410. }
  4411. }, function () {
  4412. bill.AuditVal = '7';
  4413. showMsg(i18next.t('message.CancelReEdit_Failed'), 'error'); // ╠message.CancelReEdit_Failed⇒取消抽單失敗╣
  4414. });
  4415. },
  4416. /**------------------------退運帳單部分---------------------------End*/
  4417. /**
  4418. * ToolBar 按鈕事件 function
  4419. * @param {Object}inst 按鈕物件對象
  4420. * @param {Object} e 事件對象
  4421. */
  4422. fnButtonHandler = function (inst, e) {
  4423. var sId = inst.id;
  4424. switch (sId) {
  4425. case "Toolbar_Qry":
  4426. break;
  4427. case "Toolbar_Save":
  4428. if (!$("#form_main").valid()) {
  4429. oValidator.focusInvalid();
  4430. return;
  4431. }
  4432. if (sAction === 'Add') {
  4433. fnAdd('add');
  4434. }
  4435. else {
  4436. fnUpd();
  4437. }
  4438. break;
  4439. case "Toolbar_ReAdd":
  4440. if (!$("#form_main").valid()) {
  4441. oValidator.focusInvalid();
  4442. return;
  4443. }
  4444. fnAdd('readd');
  4445. break;
  4446. case "Toolbar_Clear":
  4447. clearPageVal();
  4448. break;
  4449. case "Toolbar_Leave":
  4450. pageLeave();
  4451. break;
  4452. case "Toolbar_Add":
  4453. break;
  4454. case "Toolbar_Upd":
  4455. break;
  4456. case "Toolbar_Imp":
  4457. fnImport();
  4458. break;
  4459. case "Toolbar_Void":
  4460. if (fnCheckBillEffective(oCurData.Bills) || fnCheckRtnBillEffective(oCurData.ReturnBills)) {
  4461. showMsg(i18next.t("message.OpmNotToVoid")); // ╠message.OpmNotToVoid⇒已建立有效的賬單,暫時不可作廢╣
  4462. return;
  4463. }
  4464. fnVoid();
  4465. break;
  4466. case "Toolbar_OpenVoid":
  4467. // ╠message.ToOpenVoid⇒確定要啟用該筆資料嗎?╣ ╠common.Tips⇒提示╣
  4468. layer.confirm(i18next.t('message.ToOpenVoid'), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  4469. fnOpenVoid();
  4470. layer.close(index);
  4471. });
  4472. break;
  4473. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  4474. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  4475. fnDel();
  4476. layer.close(index);
  4477. });
  4478. break;
  4479. case "MailTrackingNumber":
  4480. fnSendTrackingNumberEmail();
  4481. break;
  4482. default:
  4483. alert("No handle '" + sId + "'");
  4484. break;
  4485. }
  4486. },
  4487. /**
  4488. * 初始化 function
  4489. */
  4490. init = function () {
  4491. var saCusBtns = [];
  4492. if (sAction === 'Upd') {
  4493. saCusBtns = [{
  4494. id: 'MailTrackingNumber',
  4495. value: 'common.MailTrackingNumber'
  4496. }];
  4497. }
  4498. else {
  4499. saCusBtns = [{
  4500. id: 'Toolbar_Imp',
  4501. value: 'common.Toolbar_Imp'// ╠common.Toolbar_Imp⇒匯入╣
  4502. }];
  4503. }
  4504. commonInit({
  4505. PrgId: sProgramId,
  4506. ButtonHandler: fnButtonHandler,
  4507. Buttons: saCusBtns,
  4508. GoTop: true,
  4509. tabClick: function (el) {
  4510. switch (el.id) {
  4511. case 'litab3':
  4512. case 'litab4':
  4513. if (!$(el).data('action')) {
  4514. fnBindFinancial();
  4515. $('#litab3').data('action', true);
  4516. $('#litab4').data('action', true);
  4517. fnOpenAccountingArea($('div .OnlyForAccounting'), parent.UserInfo.roles);
  4518. }
  4519. break;
  4520. case 'litab9':
  4521. case 'litab10':
  4522. if (!$(el).data('action')) {
  4523. if (oCurData.ReturnBills.length > 0) {
  4524. fnRenderReturnBills();
  4525. }
  4526. $('#litab9').data('action', true);
  4527. $('#litab10').data('action', true);
  4528. fnOpenAccountingArea($('div .OnlyForAccounting'), parent.UserInfo.roles);
  4529. }
  4530. break;
  4531. case 'litab11':
  4532. if (!$(el).data('action')) {
  4533. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 120;
  4534. $("#jsGrid").jsGrid({
  4535. width: "100%",
  4536. height: "auto",
  4537. autoload: true,
  4538. //filtering: true,
  4539. pageLoading: true,
  4540. inserting: true,
  4541. editing: true,
  4542. sorting: false,
  4543. paging: false,
  4544. pageIndex: 1,
  4545. pageSize: parent.SysSet.GridRecords || 10,
  4546. invalidMessage: i18next.t('common.InvalidData'),// ╠common.InvalidData⇒输入的数据无效!╣
  4547. confirmDeleting: true,
  4548. deleteConfirm: i18next.t('message.ConfirmToDelete'),// ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣
  4549. pagePrevText: "<",
  4550. pageNextText: ">",
  4551. pageFirstText: "<<",
  4552. pageLastText: ">>",
  4553. rowClass: function (item) {
  4554. if (item.VoidContent) {
  4555. return 'data-void';
  4556. }
  4557. },
  4558. fields: [
  4559. {
  4560. name: "RowIndex", title: 'common.RowNumber', width: 40, align: "center"
  4561. },
  4562. {
  4563. name: "SupplierName", title: 'common.SupplierName', width: 250, inserting: true, editing: false, validate: { validator: 'required', message: i18next.t('common.Supplier_required') },
  4564. itemTemplate: function (val, item) {
  4565. return !val ? item.SupplierEName : item.SupplierName;
  4566. },
  4567. insertTemplate: function () {
  4568. var oSelect = $('<select/>', {
  4569. change: function () {
  4570. var sCustomerId = this.value;
  4571. if (sCustomerId) {
  4572. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == sCustomerId; }).First();
  4573. oAddItem.guid = guid();
  4574. oAddItem.SupplierID = oCur.id;
  4575. oAddItem.CustomerNO = oCur.CustomerNO;
  4576. oAddItem.UniCode = oCur.UniCode;
  4577. oAddItem.SupplierName = oCur.textcn;
  4578. oAddItem.SupplierEName = oCur.texteg;
  4579. oAddItem.CreateDate = new Date().formate("yyyy/MM/dd HH:mm:ss");
  4580. var saContactors = JSON.parse(oCur.Contactors || '[]');
  4581. oSelect.parent().next().find('[data-id="Contactor"]').html(createOptions(saContactors, 'guid', 'FullName')).on('change', function () {
  4582. var sContactor = this.value;
  4583. if (sContactor) {
  4584. var oContactor = Enumerable.From(saContactors).Where(function (e) { return e.guid == sContactor; }).First();
  4585. oSelect.parent().next().find('[data-id="Telephone"]').val(oContactor.TEL1);
  4586. oAddItem.Contactor = sContactor;
  4587. oAddItem.ContactorName = oContactor.FullName;
  4588. oAddItem.Telephone = oContactor.TEL1;
  4589. }
  4590. else {
  4591. oAddItem.Contactor = '';
  4592. oAddItem.ContactorName = '';
  4593. oAddItem.Telephone = '';
  4594. oSelect.parent().next().find('[data-id="Telephone"]').val('');
  4595. }
  4596. });
  4597. oSelect.parent().next().find('[data-id]').each(function () {
  4598. var sId = $(this).attr('data-id'),
  4599. sVal = this.value;
  4600. oAddItem[sId] = sVal;
  4601. if (sId === 'Contactor') {
  4602. if (sVal) {
  4603. var sText = $(this).find('option:selected').text();
  4604. oAddItem.ContactorName = sText;
  4605. }
  4606. else {
  4607. oAddItem.ContactorName = '';
  4608. }
  4609. }
  4610. else if (sId === 'Hall') {
  4611. if (sVal) {
  4612. var sText = $(this).find('option:selected').text();
  4613. oAddItem.HallName = sText;
  4614. }
  4615. else {
  4616. oAddItem.HallName = '';
  4617. }
  4618. }
  4619. });
  4620. }
  4621. else {
  4622. oSelect.parent().next().find('[data-id="Contactor"]').html(createOptions([]));
  4623. oAddItem = {};
  4624. }
  4625. bRequestStorage = true;
  4626. }
  4627. });
  4628. setTimeout(function () {
  4629. oSelect.html(sCustomersOptionsHtml).select2({ width: '250px' });
  4630. }, 1500);
  4631. return this.insertControl = oSelect;
  4632. },
  4633. insertValue: function () {
  4634. return this.insertControl.val();
  4635. },
  4636. editTemplate: function (val, item) {
  4637. var oSelect = $('<select/>', {
  4638. html: sCustomersOptionsHtml,
  4639. change: function () {
  4640. var sCustomerId = this.value;
  4641. if (sCustomerId) {
  4642. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == sCustomerId; }).First();
  4643. item.Contactors = JSON.parse(oCur.Contactors || '[]');
  4644. oSelect.parent().next().find('[data-id="Contactor"]').html(createOptions(item.Contactors, 'guid', 'FullName')).on('change', function () {
  4645. var sContactor = this.value;
  4646. if (sContactor) {
  4647. var oContactor = Enumerable.From(item.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
  4648. oSelect.parent().next().find('[data-id="Telephone"]').val(oContactor.TEL1);
  4649. item.Contactor = sContactor;
  4650. item.ContactorName = oContactor.FullName;
  4651. item.Telephone = oContactor.TEL1;
  4652. }
  4653. else {
  4654. item.Contactor = '';
  4655. item.ContactorName = '';
  4656. item.Telephone = '';
  4657. oSelect.parent().next().find('[data-id="Telephone"]').val('');
  4658. }
  4659. });
  4660. }
  4661. else {
  4662. oSelect.parent().next().find('[data-id="Contactor"]').html(createOptions([]));
  4663. }
  4664. bRequestStorage = true;
  4665. }
  4666. }).val(item.SupplierID)
  4667. setTimeout(function () {
  4668. oSelect.select2({ width: '250px' });
  4669. }, 100);
  4670. return this.insertControl = oSelect;
  4671. },
  4672. editValue: function () {
  4673. return this.insertControl.val();
  4674. }
  4675. },
  4676. {
  4677. name: "Info", title: 'common.Other', width: 600,
  4678. itemTemplate: function (val, item) {
  4679. return fnRenderSupplierInfo(1, item);
  4680. },
  4681. insertTemplate: function (val, item) {
  4682. return fnRenderSupplierInfo(2, oAddItem);
  4683. },
  4684. editTemplate: function (val, item) {
  4685. return fnRenderSupplierInfo(3, item);
  4686. }
  4687. },
  4688. {
  4689. title: 'common.SignDocuments', width: 300, align: "center",
  4690. itemTemplate: function (val, item) {
  4691. var oDiv = $('<div>', {
  4692. html: '<div class="form-group">\
  4693. <button type="button" class="btn-custom green downsigndoc" data-index="0" data-i18n="common.Toolbar_Preview">預覽\
  4694. </button>\
  4695. <button type="button" class="btn-custom green downsigndoc" data-index="1" data-i18n="common.DownLoad_Word">下載Word\
  4696. </button>\
  4697. </div>',
  4698. click: function (e) {
  4699. }
  4700. });
  4701. oDiv.find('.downsigndoc').off('click').click(function (e) {
  4702. fnToDownLoadSignDocuments('Import', $(this).attr('data-index'), item.SupplierID);
  4703. e.stopPropagation();
  4704. });
  4705. return oDiv;
  4706. }
  4707. },
  4708. { type: "control", deleteButton: parent.UserInfo.IsManager ? true : false }
  4709. ],
  4710. controller: {
  4711. loadData: function (args) {
  4712. if (oCurData.Suppliers.length > 0) {
  4713. oCurData.Suppliers = Enumerable.From(oCurData.Suppliers).OrderBy("x=>x.CreateDate").ToArray();
  4714. $.each(oCurData.Suppliers, function (idx, filter) {
  4715. filter.RowIndex = idx + 1;
  4716. });
  4717. }
  4718. return {
  4719. data: oCurData.Suppliers,
  4720. itemsCount: oCurData.Suppliers.length //data.length
  4721. };
  4722. },
  4723. insertItem: function (args) {
  4724. oCurData.Suppliers.push(oAddItem);
  4725. oAddItem = {};
  4726. },
  4727. updateItem: function (args) {
  4728. $.each(oCurData.Suppliers, function (e, item) {
  4729. if (item.guid == args.guid) {
  4730. item = args;
  4731. }
  4732. });
  4733. },
  4734. deleteItem: function (args) {
  4735. var saNewList = [];
  4736. $.each(oCurData.Suppliers, function (idx, item) {
  4737. if (item.guid != args.guid) {
  4738. saNewList.push(item);
  4739. }
  4740. });
  4741. oCurData.Suppliers = saNewList;
  4742. }
  4743. },
  4744. onInit: function (args) {
  4745. oGrid = args.grid;
  4746. }
  4747. });
  4748. oGrid.loadData();
  4749. $(el).data('action', true);
  4750. }
  4751. break;
  4752. }
  4753. }
  4754. });
  4755. fnSGMod();//上海駒驛須移除選項
  4756. //加載報關類別,加載報價頁簽,加載運輸方式, 加載機場, 加載貨棧場, 加載倉庫
  4757. $.whenArray([
  4758. fnGet(),
  4759. fnSetCustomersDrop(),
  4760. fnGetOfficeTempls({
  4761. TemplID: parent.SysSet.InvoiceDownLoadMenu + parent.SysSet.InvoicePrintMenu + parent.SysSet.ReceiptDownLoadMenu + parent.SysSet.ReceiptPrintMenu,
  4762. CallBack: function (data) {
  4763. oPrintMenu.InvoiceDownLoadMenu = { tmpl: $('<div data-id="InvoiceDownLoadMenu">') };
  4764. oPrintMenu.InvoicePrintMenu = { tmpl: $('<div data-id="InvoicePrintMenu">') };
  4765. oPrintMenu.ReceiptDownLoadMenu = { tmpl: $('<div data-id="ReceiptDownLoadMenu">') };
  4766. oPrintMenu.ReceiptPrintMenu = { tmpl: $('<div data-id="ReceiptPrintMenu">') };
  4767. $.each(data, function (idx, item) {
  4768. var sType = '';
  4769. if (parent.SysSet.InvoiceDownLoadMenu.indexOf(item.TemplID) > -1) {
  4770. sType = 'InvoiceDownLoadMenu';
  4771. }
  4772. else if (parent.SysSet.InvoicePrintMenu.indexOf(item.TemplID) > -1) {
  4773. sType = 'InvoicePrintMenu';
  4774. }
  4775. else if (parent.SysSet.ReceiptDownLoadMenu.indexOf(item.TemplID) > -1) {
  4776. sType = 'ReceiptDownLoadMenu';
  4777. }
  4778. else if (parent.SysSet.ReceiptPrintMenu.indexOf(item.TemplID) > -1) {
  4779. sType = 'ReceiptPrintMenu';
  4780. }
  4781. oPrintMenu[sType].tmpl.append('<a href="#" class="print-item" data-id="' + item.TemplID + '">' + item.TemplName + '</a>');
  4782. });
  4783. }
  4784. }),
  4785. fnSetEpoDrop({
  4786. Select: $('#ExhibitionNO'),
  4787. Select2: true
  4788. }),
  4789. fnSetUserDrop([
  4790. {
  4791. Select: $('#ResponsiblePerson'),
  4792. ShowId: true,
  4793. Select2: true,
  4794. Action: sAction,
  4795. ServiceCode: parent.SysSet.IMCode,
  4796. CallBack: function (data) {
  4797. var sCode = parent.UserInfo.ServiceCode;
  4798. if (sAction === 'Add' && sCode && parent.SysSet.IMCode.indexOf(sCode) > -1) {
  4799. $('#ResponsiblePerson').val(parent.UserInfo.MemberID);
  4800. sServiceCode = sCode;
  4801. sDeptCode = parent.UserInfo.DepartmentID;
  4802. }
  4803. }
  4804. }
  4805. ]),
  4806. fnSetArgDrop([
  4807. {
  4808. ArgClassID: 'Clearance',
  4809. Select: $('#CustomsClearance'),
  4810. ShowId: true
  4811. },
  4812. {
  4813. ArgClassID: 'Currency',
  4814. CallBack: function (data) {
  4815. saCurrency = data;
  4816. sCurrencyOptionsHtml = createOptions(data, 'id', 'text');
  4817. }
  4818. },
  4819. {
  4820. ArgClassID: 'DeclClass',
  4821. Select: $('#DeclarationClass'),
  4822. ShowId: true
  4823. },
  4824. {
  4825. ArgClassID: 'Transport',
  4826. Select: $('#TransportationMode'),
  4827. ShowId: true,
  4828. CallBack: function (data) {
  4829. sTransportOptionsHtml = createOptions(data, 'id', 'text', true);
  4830. }
  4831. },
  4832. {
  4833. ArgClassID: 'Hall',
  4834. Select: $('#Hall')
  4835. },
  4836. {
  4837. ArgClassID: 'Port',
  4838. CallBack: function (data) {
  4839. saPort = data;
  4840. $('.quickquery-city').on('keyup', function () {
  4841. this.value = this.value.toUpperCase();
  4842. }).on('blur', function () {
  4843. var sId = this.value,
  4844. oPort = Enumerable.From(saPort).Where(function (e) { return e.id == sId; });
  4845. if (oPort.Count() === 1) {
  4846. $(this).parent().next().next().find(':input').val(oPort.First().text);
  4847. }
  4848. }).autocompleter({
  4849. // marker for autocomplete matches
  4850. highlightMatches: true,
  4851. // object to local or url to remote search
  4852. source: saPort,
  4853. // custom template
  4854. template: '{{ id }} <span>({{ label }})</span>',
  4855. // show hint
  4856. hint: true,
  4857. // abort source if empty field
  4858. empty: false,
  4859. // max results
  4860. limit: 20,
  4861. callback: function (value, index, selected) {
  4862. if (selected) {
  4863. var that = this;
  4864. $(that).parent().find(':input').val(selected.id);
  4865. $(that).parent().next().next().find(':input').val(selected.text);
  4866. }
  4867. }
  4868. });
  4869. }
  4870. },
  4871. {
  4872. ArgClassID: 'FeeClass',
  4873. CallBack: function (data) {
  4874. saFeeClass = data;
  4875. }
  4876. }
  4877. ])])
  4878. .done(function (res) {
  4879. if (res && res[0].RESULT === 1) {
  4880. var oRes = res[0].DATA.rel,
  4881. saReImport = [];
  4882. fnGetCurrencyThisYear(oRes.CreateDate).done(function () {
  4883. if (typeof oRes.Import === 'string') {
  4884. oRes.Import = JSON.parse(oRes.Import || '{}');
  4885. }
  4886. oRes.ReImports = (oRes.ReImports) ? JSON.parse(oRes.ReImports) : [];
  4887. oRes.ReturnBills = (oRes.ReturnBills) ? JSON.parse(oRes.ReturnBills) : [];
  4888. oRes.Suppliers = (oRes.Suppliers) ? JSON.parse(oRes.Suppliers) : [];
  4889. oRes.ReturnLoan = (oRes.ReturnLoan) ? JSON.parse(oRes.ReturnLoan) : {};
  4890. oRes.TaxInformation = (oRes.TaxInformation) ? JSON.parse(oRes.TaxInformation) : {};
  4891. oRes.Quote = JSON.parse(oRes.Quote || '{}');
  4892. oRes.EstimatedCost = JSON.parse(oRes.EstimatedCost || '{}');
  4893. oRes.ActualCost = JSON.parse(oRes.ActualCost || '{}');
  4894. oRes.Bills = JSON.parse(oRes.Bills || '[]');
  4895. oRes.Quote.FeeItems = oRes.Quote.FeeItems || [];
  4896. oRes.EstimatedCost.FeeItems = oRes.EstimatedCost.FeeItems || [];
  4897. oRes.ActualCost.FeeItems = oRes.ActualCost.FeeItems || [];
  4898. oRes.Quote.guid = oRes.Quote.guid || guid();
  4899. oRes.Quote.KeyName = oRes.Quote.KeyName || 'Quote';
  4900. oRes.Quote.AuditVal = oRes.Quote.AuditVal || '0';
  4901. oRes.EstimatedCost.guid = oRes.EstimatedCost.guid || guid();
  4902. oRes.EstimatedCost.KeyName = oRes.EstimatedCost.KeyName || 'EstimatedCost';
  4903. oRes.EstimatedCost.AuditVal = oRes.EstimatedCost.AuditVal || '0';
  4904. oRes.ActualCost.guid = oRes.ActualCost.guid || guid();
  4905. oRes.ActualCost.KeyName = oRes.ActualCost.KeyName || 'ActualCost';
  4906. oRes.ActualCost.AuditVal = oRes.ActualCost.AuditVal || '0';
  4907. oCurData = oRes;
  4908. nowResponsiblePerson = oCurData.ResponsiblePerson;
  4909. if (oCurData.Supplier) {
  4910. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == oCurData.Supplier; }),
  4911. saContactors = [];
  4912. if (oCur.Count() > 0) {
  4913. saContactors = JSON.parse(oCur.First().Contactors || '[]');
  4914. }
  4915. $('#Contactor').html(createOptions(saContactors, 'guid', 'FullName')).val(oCurData.Contactor);
  4916. }
  4917. else {
  4918. $('#Contactor').html(createOptions([]));
  4919. }
  4920. if (oCurData.Agent) {
  4921. var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == oCurData.Agent; }),
  4922. saContactors = [];
  4923. if (oCur.Count() > 0) {
  4924. saContactors = JSON.parse(oCur.First().Contactors || '[]');
  4925. }
  4926. $('#AgentContactor').html(createOptions(saContactors, 'guid', 'FullName')).val(oCurData.AgentContactor);
  4927. }
  4928. else {
  4929. $('#AgentContactor').html(createOptions([]));
  4930. }
  4931. $.each(oRes.ReImports, function (idx, reImport) {
  4932. var sIndex = idx + 1;
  4933. oCurData['SignatureFileId' + sIndex] = reImport.SignatureFileId || guid();
  4934. oCurData['ReImport' + sIndex] = reImport.ReImport || {};
  4935. oCurData['ReImportData' + sIndex] = reImport.ReImportData || {};
  4936. saReImport.push({ index: sIndex });
  4937. });
  4938. if (oCurData.ReImports.length == 1) {
  4939. fnAddNextReimport('one');
  4940. fnAddReturnData('one');
  4941. fnAddNextUpload(3, 'one');
  4942. }
  4943. else if (oCurData.ReImports.length > 1) {
  4944. fnAddNextReimport(saReImport);
  4945. fnAddReturnData(saReImport);
  4946. fnAddNextUpload(3, saReImport);
  4947. }
  4948. setFormVal(oForm, oCurData);
  4949. setFlowBox(true);
  4950. fnInitfileInput('');
  4951. fnGetSignatureFile('');
  4952. $.each(saReImport, function (idx) {
  4953. var sIndex = idx + 1;
  4954. fnInitfileInput(sIndex);
  4955. fnGetSignatureFile(sIndex);
  4956. });
  4957. $('#ExhibitionDateStart').val(newDate(oCurData.ExhibitionDateStart, 'date', true));
  4958. $('#ExhibitionDateEnd').val(newDate(oCurData.ExhibitionDateEnd, 'date', true));
  4959. if (oCurData.SupplierType === 'M') {
  4960. setTimeout(function () {
  4961. $('[name=SupplierType][value=M]').click();
  4962. }, 100);
  4963. }
  4964. setNameById().done(function () {
  4965. getPageVal();//緩存頁面值,用於清除
  4966. });
  4967. fnSetUserDrop([
  4968. {
  4969. MemberID: oCurData.ResponsiblePerson,
  4970. CallBack: function (data) {
  4971. var oRes = data[0];
  4972. sServiceCode = oRes.ServiceCode;
  4973. sDeptCode = oRes.DepartmentID;
  4974. }
  4975. }
  4976. ]);
  4977. if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
  4978. $('#bills_add').click(function () {
  4979. fnPushBill(oCurData, null, false).done(function () {
  4980. fnBindBillLists();
  4981. });
  4982. });
  4983. $('#returnquote_add').removeAttr('disabled').click(function () {
  4984. fnPushReturnBill();
  4985. });
  4986. $('.returnquote-add').show();
  4987. }
  4988. moneyInput($('[data-type="int"]'), 0);
  4989. var Authorized = ExhibitionBillAuthorize(oCurData);
  4990. if (Authorized) {
  4991. $('[href="#tab3"],[href="#tab4"],[href="#tab9"],[href="#tab10"]').parent().show();
  4992. if (sGoTab) {
  4993. $('#litab' + sGoTab).find('a').click();
  4994. if (sBillNOGO && $('.bill-box-' + sBillNOGO).length > 0) {
  4995. goToJys($('.bill-box-' + sBillNOGO));
  4996. }
  4997. }
  4998. }
  4999. else {
  5000. $('[href="#tab3"],[href="#tab4"],[href="#tab9"],[href="#tab10"]').parent().hide();
  5001. }
  5002. });
  5003. }
  5004. else
  5005. fnGetCurrencyThisYear(new Date());
  5006. });
  5007. $('#ResponsiblePerson').change(function () {
  5008. var sVal = this.value;
  5009. if (sVal) {
  5010. fnSetUserDrop([
  5011. {
  5012. MemberID: sVal,
  5013. CallBack: function (data) {
  5014. var oRes = data[0];
  5015. sServiceCode = oRes.ServiceCode;
  5016. sDeptCode = oRes.DepartmentID;
  5017. }
  5018. }
  5019. ]);
  5020. }
  5021. else {
  5022. sServiceCode = '';
  5023. sDeptCode = '';
  5024. }
  5025. });
  5026. $('#ExhibitionNO').change(function () {
  5027. var sId = this.value;
  5028. if (sId) {
  5029. fnSetEpoDrop({
  5030. SN: sId,
  5031. CallBack: function (data) {
  5032. var oExhibition = data[0];
  5033. $('#ImportBillEName').val(oExhibition.Exhibitioname_EN);
  5034. if (oExhibition.ExhibitionDateStart) {
  5035. $('#ExhibitionDateStart').val(newDate(oExhibition.ExhibitionDateStart, 'date'));
  5036. }
  5037. if (oExhibition.ExhibitionDateEnd) {
  5038. $('#ExhibitionDateEnd').val(newDate(oExhibition.ExhibitionDateEnd, 'date'));
  5039. }
  5040. if (parent.OrgID === 'TG' && !$('#Hall').val()) {
  5041. $('#Hall').val(oExhibition.ExhibitionAddress);
  5042. }
  5043. }
  5044. });
  5045. }
  5046. else {
  5047. $('#ImportBillEName').val('');
  5048. $('#ExhibitionDateStart').val('');
  5049. $('#ExhibitionDateEnd').val('');
  5050. }
  5051. });
  5052. $(window).on('scroll', function () {
  5053. var h = ($(document).height(), $(this).scrollTop());
  5054. if (h < 81) {
  5055. $('.sum-box').css({ top: 125 - h });
  5056. }
  5057. else {
  5058. $('.sum-box').css({ top: 44 });
  5059. }
  5060. });
  5061. $.validator.addMethod("compardate", function (value, element, parms) {
  5062. if (new Date(value) < new Date($('#ExhibitionDateStart').val())) {
  5063. return false;
  5064. }
  5065. return true;
  5066. });
  5067. oValidator = $("#form_main").validate({
  5068. ignore: '',
  5069. rules: {
  5070. SupplierEamil: {
  5071. email: true
  5072. },
  5073. AgentEmail: {
  5074. email: true
  5075. }
  5076. },
  5077. messages: {
  5078. SupplierEamil: i18next.t("message.IncorrectEmail"),// ╠message.IncorrectEmail⇒郵箱格式不正確╣
  5079. AgentEmail: i18next.t("message.IncorrectEmail")// ╠message.IncorrectEmail⇒郵箱格式不正確╣
  5080. }
  5081. });
  5082. $('#Volume').on('blur', function () {
  5083. var sVal = this.value;
  5084. $('#VolumeWeight').val((Math.floor(sVal * 100) / 100 * 167).toFloat(2));
  5085. });
  5086. $('#litab11').hide();
  5087. $('[name=SupplierType]').on('click', function () {
  5088. if (this.value === 'S') {
  5089. $('#litab11,.agent-required').hide();
  5090. $('.supplier-box,.supplier-required').show();
  5091. $('[aria-labelledby="select2-Agent-container"]').removeClass("highlight");
  5092. $('#Agent').removeAttr('required');
  5093. $('#Supplier').attr('required', true);
  5094. }
  5095. else {
  5096. $('#litab11,.agent-required').show();
  5097. $('.supplier-box,.supplier-required').hide();
  5098. $('#Supplier,#Contactor,#Telephone,#SupplierEamil').val('');
  5099. $('#Supplier').removeAttr('required').trigger("change");
  5100. $('#Agent').attr('required', true);
  5101. $('[aria-labelledby="select2-Agent-container"]').addClass("highlight");
  5102. }
  5103. });
  5104. $.timepicker.dateRange($('#ExhibitionDateStart'), $('#ExhibitionDateEnd'),
  5105. {
  5106. minInterval: (1000 * 60 * 60 * 24 * 1), // 1 days
  5107. changeYear: true,
  5108. changeMonth: true
  5109. }
  5110. );
  5111. $.timepicker.datetimeRange($('#ApproachTime'), $('#ExitTime'),
  5112. {
  5113. minInterval: (1000 * 60 * 60 * 24 * 1), // 1 days
  5114. changeYear: true,
  5115. changeMonth: true
  5116. }
  5117. );
  5118. };
  5119. init();
  5120. };
  5121. require(['base', 'select2', 'formatnumber', 'autocompleter', 'jquerytoolbar', 'timepicker', 'jsgrid', 'ajaxfile', 'filer', 'common_opm', 'util'], fnPageInit, 'timepicker');