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.

5920 lines
354 KiB

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