'use strict';
var sProgramId = getProgramId(),
sQueryPrgId = getQueryPrgId(),
sAction = getUrlParam('Action') || 'Add',
sDataId = getUrlParam('Guid'),
sFlag = getUrlParam('Flag'),
sGoTab = getUrlParam('GoTab'),
sBillNOGO = getUrlParam('BillNO'),
sAppointNO = getUrlParam('AppointNO'),
sCheckId = sDataId,
fnPageInit = function () {
var FeeItemCurrency = "TE,TG".indexOf(parent.UserInfo.OrgID) > -1 ? 'NTD' : 'RMB';
var oGrid = null,
oForm = $('#form_main'),
oValidator = null,
sServiceCode = '',
sDeptCode = '',
sCustomersOptionsHtml = '',
sCustomersNotAuditOptionsHtml = '',
sCurrencyOptionsHtml = '',
sAccountingCurrencyOptionsHtml = '',
oAddItem = {},
oPrintMenu = {},
oCurData = {},
saGridData = [],
saCustomers = [],
saCurrency = [],
saAccountingCurrency = [],
saFeeClass = [],
nowResponsiblePerson = '',
/**
* 獲取資料
* @param 無
* @return 無
* 起始作者:John
* 起始日期:2017/01/05
* 最新修改人:John
* 最新修日期:2017/01/05
*/
fnGet = function () {
if (sDataId) {
return CallAjax(ComFn.W_Com, ComFn.GetOne, {
Type: '',
Params: {
otherexhibitiontg: {
Guid: sDataId
}
}
}, function (res) {
var oRes = $.parseJSON(res.d);
$('#VoidReason').text(oRes.VoidReason);
if (oRes.VoidReason) { $('.voidreason').show(); } else { $('.voidreason').hide(); }
if (oRes.IsVoid === 'Y') {
$('#Toolbar_Void').attr({ 'id': 'Toolbar_OpenVoid', 'data-i18n': 'common.Toolbar_OpenVoid' });
}
else {
$('#Toolbar_OpenVoid').attr({ 'id': 'Toolbar_Void', 'data-i18n': 'common.Toolbar_Void' });
}
transLang($('#Toolbar'));
});
}
else {
oCurData.Quote = { guid: guid(), KeyName: 'Quote', AuditVal: '0', FeeItems: [] };
if (sAppointNO) {
oCurData.Quote.FeeItems = [{
guid: guid(),
FinancialCode: "TEC06",
FinancialCostStatement: "堆高機",
FinancialCurrency: "NTD",
FinancialUnitPrice: 876.19,
FinancialNumber: "1",
FinancialUnit: "SHPT",
FinancialAmount: 876.19,
FinancialExchangeRate: "1",
FinancialTWAmount: 876.19,
FinancialTaxRate: "0.05",
FinancialTax: 43.81,
Memo: "",
CreateUser: "peter.yang",
CreateDate: "2018/08/14 16:39:14"
}];
}
oCurData.EstimatedCost = { guid: guid(), KeyName: 'EstimatedCost', AuditVal: '0', FeeItems: [] };
oCurData.ActualCost = { guid: guid(), KeyName: 'ActualCost', AuditVal: '0', FeeItems: [] };
oCurData.Bills = [];
$('#AgentContactor').html(createOptions([]));
fnSetPermissions();
return $.Deferred().resolve().promise();
}
},
/**
* 取得帳單log資料
* @return {Object}
*/
fnGetBillLogData = function (Bill) {
var LogData = {};
LogData.OrgID = parent.OrgID;
LogData.BillNO = Bill.BillNO;
LogData.ExhibitioName = oCurData.ImportBillEName; //ExhibitioName
LogData.PayerName = '';
if (Bill.Payer) {
var PayerData = Enumerable.From(saCustomers).Where(function (e) { return e.id === Bill.Payer; }).First();
LogData.PayerName = PayerData.text;
}
LogData.ResponsiblePersonName = oCurData.ResponsiblePerson;
LogData.Currency = Bill.Currency;
LogData.ExchangeRate = Bill.ExchangeRate;
LogData.Advance = Bill.Advance;
LogData.AmountSum = Bill.AmountSum;
LogData.TaxSum = Bill.TaxSum;
LogData.AmountTaxSum = Bill.AmountTaxSum;
LogData.TotalReceivable = Bill.TotalReceivable;
LogData.OpmBillCreateUserName = oCurData.CreateUser;
LogData.ModifyUser = parent.UserID;
return LogData;
},
/**
* 新增或修改完之后重新查询资料
* @param 無
* @return 無
* 起始作者:John
* 起始日期:2017/01/05
* 最新修改人:John
* 最新修日期:2017/01/05
*/
fnReSet = function () {
fnGet().done(function (res) {
var oRes = $.parseJSON(res.d);
$('#VoidReason').text(oRes.VoidReason);
if (oRes.VoidReason) { $('.voidreason').show(); } else { $('.voidreason').hide(); }
getPageVal(); //緩存頁面值,用於清除
});
},
/**
* 新增資料
* @param flag{String} 新增或儲存後新增
* @return 無
* 起始作者:John
* 起始日期:2016/05/21
* 最新修改人:John
* 最新修日期:2016/11/03
*/
fnAdd = function (flag) {
var data = getFormSerialize(oForm);
data = packParams(data);
data.OrgID = parent.OrgID;
data.Weight = data.Weight === '' ? 0 : data.Weight;
data.IsVoid = 'N';
data.DepartmentID = sDeptCode;
data.Quote = oCurData.Quote || {};
data.Quote.AuditVal = oCurData.Quote.AuditVal || '0';
data.Quote.FeeItems = oCurData.Quote.FeeItems || [];
data.EstimatedCost = oCurData.EstimatedCost || {};
data.EstimatedCost.AuditVal = oCurData.EstimatedCost.AuditVal || '0';
data.EstimatedCost.FeeItems = oCurData.EstimatedCost.FeeItems || [];
data.ActualCost = oCurData.ActualCost || {};
data.ActualCost.AuditVal = oCurData.ActualCost.AuditVal || '0';
data.ActualCost.FeeItems = oCurData.ActualCost.FeeItems || [];
data.Bills = oCurData.Bills || [];
data.Quote = JSON.stringify(data.Quote);
data.EstimatedCost = JSON.stringify(data.EstimatedCost);
data.ActualCost = JSON.stringify(data.ActualCost);
data.Bills = JSON.stringify(data.Bills);
data.Exhibitors = JSON.stringify(saGridData);
if (data.AgentContactor) {
data.AgentContactorName = $('#AgentContactor option:selected').text();
}
else {
data.AgentContactorName = '';
}
if (!data.ArrivalTime) delete data.ArrivalTime;
if (!data.FreePeriod) delete data.FreePeriod;
if (!data.ApproachTime) delete data.ApproachTime;
if (!data.ExitTime) delete data.ExitTime;
if (!data.ExhibitionDateStart) delete data.ExhibitionDateStart;
if (!data.ExhibitionDateEnd) delete data.ExhibitionDateEnd;
data.Guid = sDataId = guid();
CallAjax(ComFn.W_Com, ComFn.GetAdd, {
Params: { otherexhibitiontg: data }
}, function (res) {
if (res.d > 0) {
bRequestStorage = false;
if (sAppointNO) {
fnUpdAppointTag(sDataId);
}
if (flag === 'add') {
showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Upd&Guid=' + sDataId); // ╠message.Save_Success⇒新增成功╣
}
else {
showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Add'); // ╠message.Save_Success⇒新增成功╣
}
}
else {
showMsg(i18next.t("message.Save_Failed"), 'error'); // ╠message.Save_Failed⇒新增失敗╣
}
});
},
/**
* 修改資料
* @param 無
* @return 無
* 起始作者:John
* 起始日期:2016/05/21
* 最新修改人:John
* 最新修日期:2016/11/03
*/
fnUpd = function () {
var data = getFormSerialize(oForm);
data = packParams(data, 'upd');
data.Weight = data.Weight === '' ? 0 : data.Weight;
data.IsVoid = oCurData.IsVoid;
data.Exhibitors = JSON.stringify(saGridData);
data.Quote = oCurData.Quote || {};
data.Quote.AuditVal = oCurData.Quote.AuditVal || '0';
data.Quote.FeeItems = oCurData.Quote.FeeItems || [];
data.EstimatedCost = oCurData.EstimatedCost || {};
data.EstimatedCost.AuditVal = oCurData.EstimatedCost.AuditVal || '0';
data.EstimatedCost.FeeItems = oCurData.EstimatedCost.FeeItems || [];
data.ActualCost = oCurData.ActualCost || {};
data.ActualCost.AuditVal = oCurData.ActualCost.AuditVal || '0';
data.ActualCost.FeeItems = oCurData.ActualCost.FeeItems || [];
data.Bills = oCurData.Bills || [];
data.Quote = JSON.stringify(data.Quote);
data.EstimatedCost = JSON.stringify(data.EstimatedCost);
data.ActualCost = JSON.stringify(data.ActualCost);
data.Bills = JSON.stringify(data.Bills);
if (data.AgentContactor) {
data.AgentContactorName = $('#AgentContactor option:selected').text();
}
else {
data.AgentContactorName = '';
}
if (data.ExhibitionNO) {
data.ImportBillName = $('#ExhibitionNO option:selected').text();
}
else {
data.ImportBillName = '';
}
if (!data.ArrivalTime) delete data.ArrivalTime;
if (!data.FreePeriod) delete data.FreePeriod;
if (!data.ApproachTime) delete data.ApproachTime;
if (!data.ExitTime) delete data.ExitTime;
if (!data.ExhibitionDateStart) delete data.ExhibitionDateStart;
if (!data.ExhibitionDateEnd) delete data.ExhibitionDateEnd;
delete data.Guid;
if (!data.ArrivalTime) delete data.ArrivalTime;
if (!data.FreePeriod) delete data.FreePeriod;
CallAjax(ComFn.W_Com, ComFn.GetUpd, {
Params: {
otherexhibitiontg: {
values: data,
keys: { Guid: sDataId }
}
}
}, function (res) {
if (res.d > 0) {
bRequestStorage = false;
showMsg(i18next.t("message.Modify_Success"), 'success'); //╠message.Modify_Success⇒修改成功╣
if (window.bLeavePage) {
setTimeout(function () {
pageLeave();
}, 1000);
}
fnUpdateBillInfo(sProgramId, sDataId);
oCurData.ResponsiblePerson = data.ResponsiblePerson;
}
else {
showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
nowResponsiblePerson = oCurData.ResponsiblePerson;
}
}, function () {
showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
nowResponsiblePerson = oCurData.ResponsiblePerson;
});
},
/**
* 資料刪除
* @param 無
* @return 無
* 起始作者:John
* 起始日期:2016/05/21
* 最新修改人:John
* 最新修日期:2016/11/03
*/
fnDel = function () {
CallAjax(ComFn.W_Com, ComFn.GetDel, {
Params: {
otherexhibitiontg: {
Guid: sDataId
}
}
}, function (res) {
if (res.d > 0) {
showMsgAndGo(i18next.t("message.Delete_Success"), sQueryPrgId); // ╠message.Delete_Success⇒刪除成功╣
}
else {
showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
}
}, function () {
showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
});
},
/**
* 資料作廢
* @param 無
* @return 無
* 起始作者:John
* 起始日期:2016/05/21
* 最新修改人:John
* 最新修日期:2016/11/03
*/
fnVoid = function () {
layer.open({
type: 1,
title: i18next.t('common.Toolbar_Void'),// ╠common.Toolbar_Void⇒作廢╣
shade: 0.75,
maxmin: true, //开启最大化最小化按钮
area: ['500px', '250px'],
content: '
\
\
',
btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
success: function (layero, index) {
},
yes: function (index, layero) {
var data = {
IsVoid: 'Y',
VoidReason: $('#VoidContent').val()
};
if (!$('#VoidContent').val()) {
showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
return false;
}
CallAjax(ComFn.W_Com, ComFn.GetUpd, {
Params: {
otherexhibitiontg: {
values: data,
keys: { Guid: sDataId }
}
}
}, function (res) {
if (res.d > 0) {
showMsg(i18next.t("message.Void_Success"), 'success'); // ╠message.Void_Success⇒作廢成功╣
fnReSet();
}
else {
showMsg(i18next.t('message.Void_Failed'), 'error'); // ╠message.Void_Failed⇒作廢失敗╣
}
});
layer.close(index);
}
});
},
/**
* 資料作廢
* @param 無
* @return 無
* 起始作者:John
* 起始日期:2016/05/21
* 最新修改人:John
* 最新修日期:2016/11/03
*/
fnOpenVoid = function () {
var data = {
IsVoid: 'N',
VoidReason: ''
};
CallAjax(ComFn.W_Com, ComFn.GetUpd, {
Params: {
otherexhibitiontg: {
values: data,
keys: { Guid: sDataId }
}
}
}, function (res) {
if (res.d > 0) {
showMsg(i18next.t("message.OpenVoid_Success"), 'success'); // ╠message.OpenVoid_Success⇒啟用成功╣
fnReSet();
}
else {
showMsg(i18next.t("message.OpenVoid_Failed"), 'error'); // ╠message.OpenVoid_Failed⇒啟用失敗╣
}
}, function () {
showMsg(i18next.t("message.OpenVoid_Failed"), 'error'); // ╠message.OpenVoid_Failed⇒啟用失敗╣
});
},
/**
* 設定客戶下拉選單
* @param 無
* @return 無
* 起始作者:John
* 起始日期:2016/05/21
* 最新修改人:John
* 最新修日期:2016/11/03
*/
fnSetCustomersDrop = function () {
return g_api.ConnectLite(Service.sys, 'GetCustomerlist', {}, function (res) {
if (res.RESULT) {
saCustomers = res.DATA.rel;
var saContactors = []
if (saCustomers.length > 0) {
sCustomersOptionsHtml = createOptions(saCustomers, 'id', 'text');
$('#Agent').html(sCustomersOptionsHtml).on('change', function () {
var sAgent = this.value;
if (sAgent) {
var oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === sAgent; }).First();
saContactors = JSON.parse(oCur.Contactors || '[]');
$('#AgentContactor').html(createOptions(saContactors, 'guid', 'FullName')).off('change').on('change', function () {
var sContactor = this.value;
if (sContactor) {
var oContactor = Enumerable.From(saContactors).Where(function (e) { return e.guid === sContactor; }).First();
$('#AgentEamil').val(oContactor.Email);
$('#AgentTelephone').val(oContactor.TEL1);
}
else {
$('#AgentEamil').val('');
$('#AgentTelephone').val('');
}
bRequestStorage = true;
});
}
else {
$('#AgentContactor').html(createOptions([]));
}
});
var saNotAuditCurs = Enumerable.From(saCustomers).Where(function (e) { return e.IsAudit === 'Y'; }).ToArray();
sCustomersNotAuditOptionsHtml = createOptions(saNotAuditCurs, 'id', 'text');
$('#ImportPerson').html(sCustomersNotAuditOptionsHtml);
}
select2Init();
}
});
},
/**
* 取得當年度幣值設定
*/
fnGetCurrencyThisYear = function (BillCreateTime) {
return fnGetCurrencyByYear({
Year: BillCreateTime, CallBack: function (data) {
saAccountingCurrency = data;
sAccountingCurrencyOptionsHtml = createOptions(saAccountingCurrency, 'ArgumentID', 'ArgumentValue', false, 'Correlation');
}
});
},
/**------------------------帳單部分---------------------------Start*/
/**
* 添加費用項目
* @param:that(Object)當前dom對象
* @return:data(Object)當前費用項目
* 起始作者:John
* 起始日期:2017/01/05
* 最新修改人:John
* 最新修日期:2017/01/05
*/
fnPlusFeeItem = function (that, parentdata, feeinfo, currency) {
var oFinancial = $(that).parents('.financial'),
oTable = oFinancial.find('tbody'),
sId = oTable.attr('data-id'),
sBillNO = oTable.attr('data-billno') || '',
sMainCurrency = oFinancial.find('[data-id="Currency"]').val() || FeeItemCurrency;
oTable.find('tr').not('.fee-add').find('.jsgrid-cancel-edit-button').click();
var fnSum = function () {
var iPrice = oUnitPrice.attr('data-value') || 0,
iNumber = oNumber.val().replaceAll(',', ''),
iExchangeRate = oExchangeRate.val(),
sFinancialCurrency = oCurrency.val(),
iAmount = 0,
bForn = (currency === undefined || currency === 'NTD');
bForn = true;
iPrice = iPrice === '' ? 0 : parseFloat(iPrice);
iExchangeRate = iExchangeRate === '' ? 1 : parseFloat(iExchangeRate);
iNumber = iNumber === '' ? 0 : parseFloat(iNumber);
iAmount = iPrice * iNumber;
oAmount.attr('data-value', iAmount.toFloat(2)).val(fMoney(iAmount, 2));
oTWAmount.attr('data-value', (iAmount * iExchangeRate).toFloat(2)).val(fMoney(iAmount * iExchangeRate, 2));
if (oTaxRate.val()) {
var iTaxRate = oTaxRate.val().toPoint();
oTax.attr('data-value', (iAmount * iTaxRate * (bForn ? iExchangeRate : 1)).toFloat(2)).val(fMoney(iAmount * iTaxRate * (bForn ? iExchangeRate : 1), 2));
}
},
oTR_Old = null,
oTR = $('
', { class: 'jsgrid' }),
oTD = $(' | ', { class: 'wcenter', 'style': 'padding: 2px !important;' }),
oCode = $('', {
class: 'form-control w100p', change: function () {
var sFeeVal = this.value,
sFeeText = $(this).find("option:selected").text();
oCostStatement.val(sFeeText.replace(sFeeVal + '-', '').replace('*', ''));
if ('TE001,TE199,TE299,TG001,TG199,TG299,SG001,SG199,SG299'.indexOf(sFeeVal) > -1) {
oCostStatement.removeAttr('disabled');
}
else {
oCostStatement.prop('disabled', true);
}
}
}),
oCostStatement = $('', { class: 'form-control w100p', 'style': 'width:260px !important;' }),
oMemo = $('', { class: 'form-control w100p', rows: '2', cols: '10' }),
oCurrency = $('', {
class: 'form-control w100p', html: sCurrencyOptionsHtml, change: function () {
var sCurrencyId = this.value;
if (sCurrencyId) {
var oCurrency = Enumerable.From(saCurrency).Where(function (e) { return e.id === sCurrencyId; }).First();
oExchangeRate.val(oCurrency.Correlation || '').change();
}
}
}).css('cssText', 'width:80px !important').val(sMainCurrency),
oUnitPrice = $('', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
oNumber = $('', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
oUnit = $('', { class: 'form-control w100p' }),
oAmount = $('', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' }),
oExchangeRate = $('', { class: 'form-control w100p', value: '1.000', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
oTWAmount = $('', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' }),
oTaxRate = $('', { class: 'form-control w100p', keyup: function () { fnSum(); }, change: function () { fnSum(); } }),
oTax = $('', { class: 'form-control w100p', 'data-type': 'int', 'data-name': 'int', 'readonly': 'readonly' });
let Selector = feeinfo ? 'oBillPayers-' + feeinfo.guid : 'oBillPayers';
var oBillPayers = $('', { class: 'form-control w100p ' + Selector, 'multiple': 'multiple' });
var oConfirm = $('', {
class: 'jsgrid-button jsgrid-update-button', type: 'button', title: i18next.t('common.Confirm'), click: function () {// ╠common.Confirm⇒確認╣
var sError = '';
if (!oCode.val()) {
sError += i18next.t("common.FinancialCode_required") + '
'; // ╠common.FinancialCode_required⇒請選擇費用代號╣
}
if (!oCostStatement.val() && !oMemo.val()) {
sError += i18next.t("common.FinancialCostStatement_required") + '
'; // ╠common.FinancialCostStatement_required⇒請輸入費用說明或備註╣
}
if (!oCurrency.val()) {
sError += i18next.t("common.Currency_required") + '
'; // ╠common.Currency_required⇒請選擇幣別╣
}
if (sError) {
showMsg(sError);
return false;
}
var data = {};
data.FinancialCode = oCode.val();
data.FinancialCostStatement = oCostStatement.val();
data.Memo = oMemo.val();
data.FinancialCurrency = oCurrency.val();
data.FinancialUnitPrice = oUnitPrice.val();
data.FinancialNumber = oNumber.val();
data.FinancialUnit = oUnit.val();
data.FinancialAmount = oAmount.val();
data.FinancialExchangeRate = oExchangeRate.val();
data.FinancialTWAmount = oTWAmount.val();
data.FinancialTaxRate = oTaxRate.val() === '' ? 0 : oTaxRate.val();
data.FinancialTax = oTax.val();
if (sId === 'actualcost-box') {
data.BillNO = oBillPayers.val();
data.BillPayer = oBillPayers.attr('_payer') || '';
}
if (data.FinancialNumber.indexOf('.00') > 0)
data.FinancialNumber = data.FinancialNumber.replace('.00', '');
switch (sId) {
case 'quote-box':
if (feeinfo) {
$.each(parentdata.Quote.FeeItems, function (idx, item) {
if (feeinfo.guid === item.guid) {
data = packParams(data, 'upd');
$.extend(item, item, data);
return false;
}
});
}
else {
data = packParams(data);
data.guid = guid();
parentdata.Quote.FeeItems.push(data);
}
fnBindFeeItem(oTable, parentdata, parentdata.Quote);
break;
case 'estimatedcost-box':
if (feeinfo) {
$.each(parentdata.EstimatedCost.FeeItems, function (idx, item) {
if (feeinfo.guid === item.guid) {
data = packParams(data, 'upd');
$.extend(item, item, data);
return false;
}
});
}
else {
data = packParams(data);
data.guid = guid();
parentdata.EstimatedCost.FeeItems.push(data);
}
fnBindFeeItem(oTable, parentdata, parentdata.EstimatedCost);
break;
case 'bill_fees_' + sBillNO:
$.each(parentdata.Bills, function (idx, bill) {
if (sBillNO === bill.BillNO) {
if (feeinfo) {
$.each(bill.FeeItems, function (idx, item) {
if (feeinfo.guid === item.guid) {
data = packParams(data, 'upd');
$.extend(item, item, data);
return false;
}
});
}
else {
data = packParams(data);
data.guid = guid();
bill.FeeItems.push(data);
}
fnBindFeeItem(oTable, parentdata, bill);
return false;
}
});
break;
case 'actualcost-box':
if (feeinfo) {
$.each(parentdata.ActualCost.FeeItems, function (idx, item) {
if (feeinfo.guid === item.guid) {
data = packParams(data, 'upd');
$.extend(item, item, data);
return false;
}
});
}
else {
data = packParams(data);
data.guid = guid();
parentdata.ActualCost.FeeItems.push(data);
}
fnBindFeeItem(oTable, parentdata, parentdata.ActualCost);
break;
}
window.bRequestStorage = true;
oTR.remove();
}
}),
oCancel = $('', {
class: 'jsgrid-button jsgrid-cancel-edit-button', type: 'button', title: i18next.t('common.Cancel'), click: function () {// ╠common.Cancel⇒取消╣
if (feeinfo) {
if (feeinfo.BillNO) {
oTR_Old.find('select').val(feeinfo.BillNO);
}
oTR.after(oTR_Old).remove();
oTR_Old = null;
}
else {
oTR.remove();
$(that).prop('disabled', false);
}
}
});
oTR.append(oTD.clone());
oTR.append(oTD.clone().append(oCode));
oTR.append(oTD.clone().append([oCostStatement, oMemo]));
oTR.append(oTD.clone().append(oCurrency));
oTR.append(oTD.clone().append(oUnitPrice));
oTR.append(oTD.clone().append(oNumber));
oTR.append(oTD.clone().append(oUnit));
oTR.append(oTD.clone().append(oAmount));
oTR.append(oTD.clone().append(oExchangeRate));
oTR.append(oTD.clone().append(oTWAmount));
oTR.append(oTD.clone().append(oTaxRate));
oTR.append(oTD.clone().append(oTax));
if (sId === 'actualcost-box') {
var saBillPayers = function () {
var saRetn = [];
$.each(parentdata.Bills, function (idx, bill) {
if (!bill.VoidReason) {
var sPayer = '',
oCur = {};
if (bill.Payer) {
oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === bill.Payer; }).First();
}
saRetn.push({
id: bill.BillNO,
text: oCur.text,
val: bill.BillNO + '-' + (oCur.text || '') + '-' + bill.BillCreateDate
});
}
});
return saRetn;
}();
oTR.append(oTD.clone().append(oBillPayers.html(createOptions(saBillPayers, 'id', 'id', false)).change(function () {
var sBill = this.value;
if (sBill) {
var oBillPayer = Enumerable.From(saBillPayers).Where(function (e) { return e.id === sBill; }).First();
$(this).attr('_payer', oBillPayer.val || '');
}
else {
$(this).attr('_payer', '');
}
})));
}
oTR.append(oTD.clone().css('cssText', 'padding-top:30px !important;').append([oConfirm, oCancel]));
oCode.html(createOptions(saFeeClass, 'id', 'text', true)).val(!feeinfo ? '' : feeinfo.FinancialCode).select2({ width: '160px' });
if (parent.SysSet.TaxRate) {
oTaxRate.val(parent.SysSet.TaxRate);
}
if (feeinfo) {
oCode.val(feeinfo.FinancialCode);
oCostStatement.val(feeinfo.FinancialCostStatement.replace(feeinfo.FinancialCode + '-', ''));
oMemo.val(feeinfo.Memo);
oCurrency.val(feeinfo.FinancialCurrency);
oUnitPrice.val(feeinfo.FinancialUnitPrice);
oNumber.val(feeinfo.FinancialNumber);
oUnit.val(feeinfo.FinancialUnit);
oAmount.val(feeinfo.FinancialAmount);
oExchangeRate.val(feeinfo.FinancialExchangeRate);
oTWAmount.val(feeinfo.FinancialTWAmount);
oTaxRate.val(feeinfo.FinancialTaxRate);
oTax.val(feeinfo.FinancialTax);
if (sId === 'actualcost-box') {
oBillPayers.val(feeinfo.BillNO);
}
oTR_Old = $(that).parents('tr').clone(true);
$(that).parents('tr').after(oTR).remove();
if ('TE001,TE199,TE299,TG001,TG199,TG299,SG001,SG199,SG299'.indexOf(feeinfo.FinancialCode) > -1) {
oCostStatement.prop('disabled', false);
}
else {
oCostStatement.prop('disabled', true);
}
}
else {
oTable.append(oTR.addClass('fee-add'));
$(that).prop('disabled', true);
}
oTR.find('.' + Selector + ' option:first').remove();
moneyInput($('[data-type="int"]'), 2, true);
if (sId === 'actualcost-box') {
let mySelect = new vanillaSelectBox("." + Selector, {
search: true
});
mySelect.multipleSize = 2;
if (feeinfo) {
mySelect.setValue(feeinfo.BillNO);
}
}
},
/**
* 預設預約單資料
*/
fnInitAppoint = function () {
g_api.ConnectLite(Service.opm, 'InitAppoint', {
AppointNO: sAppointNO
}, function (res) {
var oRes = res.DATA.rel;
//setFormVal(oForm, oRes.Base);
$('#ExhibitionDateStart').val(newDate(oRes.Base.ExhibitionDateStart, 'date', true));
$('#ExhibitionDateEnd').val(newDate(oRes.Base.ExhibitionDateEnd, 'date', true)); oAddItem.guid = guid();
$('#ExhibitionNO').val(oRes.Base.ExhibitionNO).trigger('change');
$('#ImportBillEName').val(oRes.Base.ImportBillEName);
$('#Hall').val(oRes.Base.Hall);
//$('#MuseumMumber').val(oRes.Base.MuseumMumber);
$.grep(oRes.Customers, function (item) {
saGridData.push({
guid: guid(),
AppointNO: item.AppointNO,
SupplierID: item.guid,
CustomerNO: item.CustomerNO,
UniCode: item.UniCode,
SupplierName: item.CustomerCName,
SupplierEName: item.CustomerEName,
Telephone: item.Telephone,
Email: item.Email,
Contactor: '',
ContactorName: '',
CreateUser: parent.UserID,
CreateDate: new Date().formate("yyyy/MM/dd HH:mm:ss")
});
});
fnGridInit();
oGrid.loadData();
});
},
/**
* 如果有預設預約單資料,新增完則回寫該ID到預約單
* @param {String} id 【其他】ID
*/
fnUpdAppointTag = function (id) {
var saUpdPm = [];
$.grep(saGridData, function (item) {
if (item.AppointNO) {
saUpdPm.push({
values: {
OtherId: id,
OtherIdFrom: 'OtherExhibitionTG_Upd'
},
keys: {
AppointNO: item.AppointNO,
OrgID: parent.OrgID
}
});
}
});
CallAjax(ComFn.W_Com, ComFn.GetUpd,
{
Params: {
packingorder: saUpdPm
}
});
},
/**
* 綁定費用項目
* @param {Array} files 上傳的文件
*/
fnBindFeeItem = function (dom, parentdata, data, flag) {
$.each(data.FeeItems, function (idx, item) {
item.OrderBy = idx + 1;
item.FinancialUnitPrice = parseFloat((item.FinancialUnitPrice || '0').toString().replaceAll(',', ''));
item.FinancialAmount = parseFloat((item.FinancialAmount || '0').toString().replaceAll(',', ''));
item.FinancialTWAmount = parseFloat((item.FinancialTWAmount || '0').toString().replaceAll(',', ''));
item.FinancialTax = parseFloat((item.FinancialTax || '0').toString().replaceAll(',', ''));
});
data.FeeItems = Enumerable.From(data.FeeItems).OrderBy("x=>x.OrderBy").ToArray();
var sFeeItemsHtml = '',
iSubtotal = 0,
iSubtotal_Tax = 0,
iSubtotal_NoTax = 0,
iTaxtotal = 0,
iTaxSubtotal = 0,
oFinancial = dom.parents('.financial'),
sDomId = dom.attr('data-id'),
bForn = (data.Currency === undefined || data.Currency === 'NTD'),
iOldBoxTotal = parseFloat((oFinancial.find('.boxtotal').val() || '0').replaceAll(',', '')),
oTab = dom.parents('.tab-pane');
$.each(data.FeeItems, function (idx, item) {
sFeeItemsHtml += ''
+ '' + (idx + 1) + ' | '
+ '' + item.FinancialCode + ' | '
+ '' + (!item.FinancialCostStatement ? item.Memo : item.FinancialCostStatement + (!item.Memo ? '' : '(' + item.Memo + ')')) + ' | '
+ '' + item.FinancialCurrency + ' | '
+ '' + fMoney(item.FinancialUnitPrice, 2) + ' | '
+ '' + item.FinancialNumber + ' | '
+ '' + item.FinancialUnit + ' | '
+ '' + fMoney(item.FinancialAmount, 2) + ' | '
+ '' + item.FinancialExchangeRate + ' | '
+ '' + fMoney(item.FinancialTWAmount, 2) + ' | '
+ '' + item.FinancialTaxRate + ' | '
+ '' + fMoney(item.FinancialTax, 2) + ' | '
+ (data.KeyName === 'ActualCost' ? ' | ' : '')
+ (!flag ? ''
+ ' '
+ ' '
+ ((data.FeeItems.length !== idx + 1) ? ' ' : ' ')
+ ((idx !== 0) ? ' ' : ' ')
+ ' | ' : '') +
+'
';
if (item.FinancialTaxRate.toString().replace('%', '') !== '0') {
iSubtotal_Tax += parseFloat(item.FinancialTWAmount);
}
else {
iSubtotal_NoTax += parseFloat(item.FinancialTWAmount);
}
});
//計算總計(total)依序:1.參數的幣值 2.抓到財務的Currency設定 3.再來設定台幣。
var CurrencyType = (data.Currency || oFinancial.find('[data-id="Currency"]').val()) || FeeItemCurrency;
dom.html(sFeeItemsHtml);
iSubtotal_Tax = fnRound(iSubtotal_Tax, data.Currency);
iSubtotal_NoTax = fnRound(iSubtotal_NoTax, data.Currency);
iSubtotal = fnRound(iSubtotal_Tax + iSubtotal_NoTax, CurrencyType);
var iTaxRate = parent.SysSet.TaxRate.toPoint();
iTaxtotal = fnRound(iSubtotal_Tax * (iTaxRate === 0 ? 0.05 : iTaxRate), CurrencyType);
iTaxSubtotal = iSubtotal + iTaxtotal;
oFinancial.find('.subtotal').val(fMoney(iSubtotal, 2, CurrencyType));
oFinancial.find('.taxtotal').val(fMoney(iTaxtotal, 2, CurrencyType));
oFinancial.find('.boxtotal').val(fMoney(iTaxSubtotal, 2, CurrencyType));
data.AmountSum = iSubtotal;
data.TaxSum = iTaxtotal;
data.AmountTaxSum = iTaxSubtotal;
switch (data.KeyName) {
case 'ActualCost':
if (oTab[0].id === 'tab4') {
$('#tab4 .topshowsum').show();
$('#tab4 .actualsum').val(fMoney(iSubtotal, 2, data.Currency));
if (parentdata.ActualCost.AmountTaxSum > parentdata.EstimatedCost.AmountTaxSum) {
$('#tab4 #warnning_tips').show();
}
else {
$('#tab4 #warnning_tips').hide();
}
}
else if (oTab[0].id === 'tab6') {
oFinancial.find('.actualsum').val(fMoney(iSubtotal, 2, data.Currency));
var iAcount = 0;
$.each(parentdata.Bills, function (idx, _bill) {
if (_bill.AuditVal !== '6') {
iAcount += _bill.AmountTaxSum;
}
});
oFinancial.find('.amountsum').val(fMoney(iAcount, 2, data.Currency));
if (parentdata.ActualCost.AmountTaxSum > parentdata.EstimatedCost.AmountTaxSum) {
oFinancial.parent().prev().find('.warnningtips').show();
}
else {
oFinancial.parent().prev().find('.warnningtips').hide();
}
}
break;
case 'EstimatedCost':
if (oTab[0].id === 'tab3') {
$('#tab3 .estimatedcostsum').val(fMoney(iSubtotal, 2, data.Currency));
}
break;
case 'Bill':
var iAdvance = parseFloat(oFinancial.find('.prepay').val().replaceAll(',', '')),
iExchangeRate = data.ExchangeRate || 1;
data.TotalReceivable = iTaxSubtotal - iAdvance;
oFinancial.find('.subtotal').val(fMoney(iSubtotal, 2, data.Currency));
oFinancial.find('.taxtotal').val(fMoney(iTaxtotal, 2, data.Currency));
oFinancial.find('.boxtotal').val(fMoney(iTaxSubtotal, 2, data.Currency));
oFinancial.find('.paytotal').val(fMoney(iTaxSubtotal - iAdvance, 2, data.Currency));
// 匯率
let TabTipExchangeRate = (bForn ? 1 : iExchangeRate);
// 純稅金(本幣別)
let TabTipTaxtotal = fnRound(iTaxtotal * TabTipExchangeRate, FeeItemCurrency);
// 未稅總額(本幣別)
let TabTipUntaxtotal = fnRound(iSubtotal * TabTipExchangeRate, FeeItemCurrency);
iOldBoxTotal = iOldBoxTotal * (bForn ? 1 : iExchangeRate);
if (oTab[0].id === 'tab3') {
if (data.AuditVal !== '6') {
let LastRowActualsum = parseFloat($('#tab3 .amountsum').val().replaceAll(',', '')) - iOldBoxTotal;
$('#tab3 .amountsum').val(fMoney(LastRowActualsum + TabTipUntaxtotal, 2, FeeItemCurrency));
$('#tab4 .amountsum').val($('#tab3 .amountsum').val());
}
}
else if (oTab[0].id === 'tab5') {
// 每筆退運帳單的預估成本
oFinancial.find('.topshowsum').show();
oFinancial.find('.estimatedcostsum').val(fMoney(parentdata.EstimatedCost.AmountSum, 2, data.Currency));
if (data.AuditVal !== '6') {
//退運帳單加總
let LastRowActualsum = parseFloat(oFinancial.find('.amountsum').val().replaceAll(',', '')) - iOldBoxTotal;
oFinancial.find('.amountsum').val(fMoney(LastRowActualsum + TabTipUntaxtotal, 2, FeeItemCurrency));
$('.bill-box-' + data.BillNO).find('.amountsum').val(oFinancial.find('.amountsum').val());
}
}
break;
}
/*計算$$*/
if (oTab[0].id === 'tab3') {
if (data.KeyName === 'Bill')
fnCalcuBillsFee(oFinancial, '.BillForeignCurrency', '.BillMainCurrency', data.Currency, data.ExchangeRate);
else
fnCalcuQuotationFee(oFinancial.find('.QuotationForeignCurrency'), oFinancial.find('.QuotationMainCurrency'), parentdata.Quote.QuotationOrBillingCurrency, parentdata.Quote.AccountingExchangeRate);
}
dom.parents('.financial').find('.plusfeeitem').prop('disabled', false);
fnSetDisabled(oFinancial, data, parentdata);
oFinancial.find('.input-value').on('change', function () {
var that = this,
sId = $(that).attr('data-id');
data[sId] = $(that).val();
window.bRequestStorage = true;
});
if (data.KeyName === 'ActualCost') {
var saBillPayers = function () {
var saRetn = [];
$.each(parentdata.Bills, function (idx, bill) {
if (!bill.VoidReason) {
var sPayer = '',
oCur = {};
if (bill.Payer) {
oCur = Enumerable.From(saCustomers).Where(function (e) { return e.id === bill.Payer; }).First();
}
saRetn.push({
id: bill.BillNO,
text: oCur.text,
val: bill.BillNO + '-' + (oCur.text || '') + '-' + bill.BillCreateDate
});
}
});
return saRetn;
}();
dom.find('.billpayer').each(function () {
var sGuid = $(this).attr('data-value'),
sBillNO = $(this).attr('data-billno'),
Selector = 'oBillPayers-' + sGuid;
$(this).append($('