'use strict';
var sProgramId = getProgramId(),
sQueryPrgId = getQueryPrgId(),
sAction = getUrlParam('Action') || 'Add',
sDataId = getUrlParam('ImportBillNO'),
sFlag = getUrlParam('Flag'),
sGoTab = getUrlParam('GoTab'),
sBillNOGO = getUrlParam('BillNO'),
sCheckId = sDataId,
fnPageInit = function () {
var FeeItemCurrency = "TE,TG".indexOf(parent.UserInfo.OrgID) > -1 ? 'NTD' : 'RMB';
var oValidator = null,
oForm = $('#form_main'),
oGrid = null,
sServiceCode = '',
sDeptCode = '',
sTransportOptionsHtml = '',
sCustomersOptionsHtml = '',
sCustomersNotAuditOptionsHtml = '',
sCurrencyOptionsHtml = '',
sAccountingCurrencyOptionsHtml = '',
oAddItem = {},
oCurData = { Suppliers: [] },
oPrintMenu = {},
saCustomers = [],
saFeeClass = [],
saPort = [],
saCurrency = [],
saAccountingCurrency = [],
nowResponsiblePerson = '',
/**
* 獲取資料
*/
fnGet = function () {
if (sDataId) {
return g_api.ConnectLite(sQueryPrgId, ComFn.GetOne,
{
Guid: sDataId
},
function (res) {
if (res.RESULT) {
var oRes = res.DATA.rel;
oRes.Import = (oRes.Import) ? JSON.parse(oRes.Import) : {};
$('#VoidReason').text(oRes.VoidReason);
if (oRes.IsVoid == 'Y') {
$('.voidreason').show();
$('#Toolbar_Void').attr({ 'id': 'Toolbar_OpenVoid', 'data-i18n': 'common.Toolbar_OpenVoid' });
}
else {
$('.voidreason').hide();
$('#Toolbar_OpenVoid').attr({ 'id': 'Toolbar_Void', 'data-i18n': 'common.Toolbar_Void' });
}
if (!oRes.Import.ExhibitionWarehouse) {
$('#Import_ExhibitionWarehouse_Checked').parents('.form-group').remove();
}
transLang($('#Toolbar'));
}
});
}
else {
oCurData.Quote = { guid: guid(), KeyName: 'Quote', AuditVal: '0', FeeItems: [] };
oCurData.EstimatedCost = { guid: guid(), KeyName: 'EstimatedCost', AuditVal: '0', FeeItems: [] };
oCurData.ActualCost = { guid: guid(), KeyName: 'ActualCost', AuditVal: '0', FeeItems: [] };
oCurData.Bills = [];
oCurData.ReturnBills = [];
oCurData.Suppliers = [];
$('#Contactor').html(createOptions([]));
fnInitfileInput('');
fntBindCheckBoxEvent();
fnSetPermissions();
return $.Deferred().resolve().promise();
}
},
/**
* 新增或修改完之后重新查询资料
*/
fnReSet = function () {
fnGet().done(function (res) {
var oRes = res.DATA.rel;
setFlowBox(true);
$('#VoidReason').text(oRes.VoidReason);
if (oRes.VoidReason) { $('.voidreason').show(); } else { $('.voidreason').hide(); }
getPageVal(); //緩存頁面值,用於清除
});
},
/**
* 取得帳單log資料
* @return {Object}
*/
fnGetBillLogData = function (Bill) {
var LogData = {};
LogData.OrgID = parent.OrgID;
LogData.BillNO = Bill.BillNO;
LogData.ExhibitioName = oCurData.Exhibitioname_TW; //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;
},
/**
* 獲取貨物狀態
*/
fnGetFlowStatus = function (data) {
var sFlowStatus = '';
if (data.ReImports.length > 0) {
$.each(data.ReImports, function (idx, item) {
var iLen = idx + 1;
if (item.ReImport.Sign && item.ReImport.Sign.Checked) {
sFlowStatus += 'ReImport' + iLen + '-Re6';
}
else if (item.ReImport.ReachDestination && item.ReImport.ReachDestination.Checked) {
sFlowStatus += 'ReImport' + iLen + '-Re5';
}
else if (item.ReImport.HuiYun && item.ReImport.HuiYun.Checked) {
sFlowStatus += 'ReImport' + iLen + '-Re4';
}
else if (item.ReImport.ReCargoRelease && item.ReImport.ReCargoRelease.Checked) {
sFlowStatus += 'ReImport' + iLen + '-Re3';
}
else if (item.ReImport.ReCustomsDeclaration && item.ReImport.ReCustomsDeclaration.Checked) {
sFlowStatus += 'ReImport' + iLen + '-Re2';
}
else if (item.ReImport.FileValidation && item.ReImport.FileValidation.Checked) {
sFlowStatus += 'ReImport' + iLen + '-Re1';
}
});
}
else if (data.Import.Sign && data.Import.Sign.Checked) {
sFlowStatus = 'Import-6';
}
else if (data.Import.ExhibitionWarehouse && data.Import.ExhibitionWarehouse.Checked) {
sFlowStatus = 'Import-5';
}
else if (data.Import.CargoRelease && data.Import.CargoRelease.Checked) {
sFlowStatus = 'Import-4';
}
else if (data.Import.CustomsDeclaration && data.Import.CustomsDeclaration.Checked) {
sFlowStatus = 'Import-3';
}
else if (data.Import.GoodsArrival && data.Import.GoodsArrival.Checked) {
sFlowStatus = 'Import-2';
}
else if (data.Import.ReceiveFile && data.Import.ReceiveFile.Checked) {
sFlowStatus = 'Import-1';
}
return sFlowStatus;
},
/*
* 新增資料
* @param {String}flag 新增或儲存後新增
*/
fnAdd = function (flag) {
var data = getFormSerialize(oForm);
data = packParams(data);
data.OrgID = parent.OrgID;
data.RefNumber = 'SerialNumber+3|' + parent.UserInfo.OrgID + '|C' + parent.UserInfo.OrgID + 'I|MinYear|3|' + sServiceCode + '|' + sServiceCode;
data.Release = data.Import.CargoRelease.Checked ? 'Y' : 'N';
data.ReturnLoan = data.ReturnLoan || {};
data.ReturnLoan = JSON.stringify(data.ReturnLoan);
data.TaxInformation = data.TaxInformation || {};
data.TaxInformation = JSON.stringify(data.TaxInformation);
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.ReturnBills = oCurData.ReturnBills || [];
data.Suppliers = oCurData.Suppliers || [];
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.ReturnBills = JSON.stringify(data.ReturnBills);
data.Suppliers = JSON.stringify(data.Suppliers);
if (data.Contactor) {
data.ContactorName = $('#Contactor option:selected').text();
}
else {
data.ContactorName = '';
}
if (data.AgentContactor) {
data.AgentContactorName = $('#AgentContactor option:selected').text();
}
else {
data.AgentContactorName = '';
}
if (data.ExhibitionNO) {
data.ImportBillName = $('#ExhibitionNO option:selected').text();
}
else {
data.ImportBillName = '';
}
data.ReImports = [];
for (var idx = 1; idx < 11; idx++) {
var oReImport = data['ReImport' + idx];
if (oReImport) {
var oReImports = {};
oReImports.SignatureFileId = data['SignatureFileId' + idx];
oReImports.ReImport = oReImport;
oReImports.ReImportData = data['ReImportData' + idx];
data.ReImports.push(oReImports);
data['SignatureFileId' + idx] = undefined;
data['ReImport' + idx] = undefined;
data['ReImportData' + idx] = undefined;
}
else {
break;
}
}
data.Flow_Status = fnGetFlowStatus(data);
data.Import = JSON.stringify(data.Import);
data.ReImports = JSON.stringify(data.ReImports);
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.ImportBillNO = sDataId = guid();
CallAjax(ComFn.W_Com, ComFn.GetAdd, {
Params: { importexhibition: data }
}, function (res) {
if (res.d > 0) {
bRequestStorage = false;
if (flag == 'add') {
showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Upd&ImportBillNO=' + 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 無
*/
fnUpd = function () {
var data = getFormSerialize(oForm);
data = packParams(data, 'upd');
data.Release = data.Import.CargoRelease.Checked ? 'Y' : 'N';
data.ReturnLoan = data.ReturnLoan || {};
data.ReturnLoan = JSON.stringify(data.ReturnLoan);
data.TaxInformation = data.TaxInformation || {};
data.TaxInformation = JSON.stringify(data.TaxInformation);
data.Weight = data.Weight == '' ? 0 : data.Weight;
data.IsVoid = oCurData.IsVoid;
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.ReturnBills = oCurData.ReturnBills || [];
data.Suppliers = oCurData.Suppliers || [];
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.ReturnBills = JSON.stringify(data.ReturnBills);
data.Suppliers = JSON.stringify(data.Suppliers);
if (data.Contactor) {
data.ContactorName = $('#Contactor option:selected').text();
}
else {
data.ContactorName = '';
}
if (data.AgentContactor) {
data.AgentContactorName = $('#AgentContactor option:selected').text();
}
else {
data.AgentContactorName = '';
}
if (data.ExhibitionNO) {
data.ImportBillName = $('#ExhibitionNO option:selected').text();
}
else {
data.ImportBillName = '';
}
data.ReImports = [];
for (var idx = 1; idx < 11; idx++) {
var oReImport = data['ReImport' + idx];
if (oReImport) {
var oReImports = {};
oReImports.SignatureFileId = data['SignatureFileId' + idx];
oReImports.ReImport = oReImport;
oReImports.ReImportData = data['ReImportData' + idx];
data.ReImports.push(oReImports);
data['SignatureFileId' + idx] = undefined;
data['ReImport' + idx] = undefined;
data['ReImportData' + idx] = undefined;
}
else {
break;
}
}
data.Flow_Status = fnGetFlowStatus(data);
data.Import = JSON.stringify(data.Import);
data.ReImports = JSON.stringify(data.ReImports);
delete data.ImportBillNO;
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;
CallAjax(ComFn.W_Com, ComFn.GetUpd, {
Params: {
importexhibition: {
values: data,
keys: { ImportBillNO: 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;
});
},
/**
* 資料刪除
*/
fnDel = function () {
CallAjax(ComFn.W_Com, ComFn.GetDel, {
Params: {
importexhibition: {
ImportBillNO: 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⇒刪除失敗╣
});
},
/**
* 資料作廢
*/
fnVoid = function () {
layer.open({
type: 1,
title: i18next.t('common.Toolbar_Void'),// ╠common.Toolbar_Void⇒作廢╣
shade: 0.75,
maxmin: true, //开启最大化最小化按钮
area: ['500px', '250px'],
content: '
', {
html: '
\
\
\
\
\
'
});
if (type === 1) {
oDiv.find('[data-box]').each(function () {
var sId = $(this).attr('data-box'),
sVal = item[sId];
if (sId === 'Contactor') {
$(this).text(item['ContactorName']);
}
else if (sId === 'Hall') {
$(this).text(item['HallName']);
}
else {
$(this).text(sVal);
}
if (sId === 'BoxNo') {
$(this).append(' ' + item.Unit);
}
$(this).addClass('span-text');
});
}
else {
oDiv.find('.date').datetimepicker({
changeYear: true,
changeMonth: true,
altFormat: 'yyyy/MM/dd HH:mm'
});
oDiv.find('[data-id="BoxNo"],[data-id="Weight"],[data-id="Volume"],[data-id="VolumeWeight"],[data-id="Unit"]').on('blur', function () {
var sId = $(this).attr('data-id'),
sVal = this.value,
iLastVal = 0;
if (sId === 'Unit') {
$('#Unit').val(sVal);
}
else {
$.each(oCurData.Suppliers, function (idx, supplier) {
if (item.guid != supplier.guid) {
iLastVal += parseFloat(supplier[sId] || 0);
}
});
iLastVal += parseFloat(sVal === '' ? 0 : sVal);
$('#' + sId).val(iLastVal);
if (sId === 'Volume') {
var sVolumeWeight = (Math.floor(sVal * 100) / 100 * 167).toFloat(2);
$('[data-id="VolumeWeight"]').val(sVolumeWeight);
item.VolumeWeight = sVolumeWeight;
}
}
});
oDiv.find('[data-id="Hall"]').html($('#Hall').html());
if (type === 3) {
item.Contactors = [];
if (item.SupplierID) {
var saCur = Enumerable.From(saCustomers).Where(function (e) { return e.id == item.SupplierID; }).ToArray();
if (saCur.length > 0) {
item.Contactors = JSON.parse(saCur[0].Contactors || '[]');
}
}
oDiv.find('[data-id="Contactor"]').html(createOptions(item.Contactors, 'guid', 'FullName')).on('change', function () {
var sContactor = this.value;
if (sContactor) {
var oContactor = Enumerable.From(item.Contactors).Where(function (e) { return e.guid == sContactor; }).First();
oDiv.find('[data-id="Telephone"]').val(oContactor.TEL1);
oAddItem.Contactor = sContactor;
oAddItem.ContactorName = oContactor.FullName;
oAddItem.Telephone = oContactor.TEL1;
}
else {
oAddItem.Contactor = '';
oAddItem.ContactorName = '';
oAddItem.Telephone = '';
oDiv.find('[data-id="Telephone"]').val('');
}
});
oDiv.find('[data-id]').each(function () {
var sId = $(this).attr('data-id');
this.value = item[sId];
});
}
else {
oDiv.find('[data-id="Contactor"]').html(createOptions([]));
}
oDiv.find('[data-id]').on('change', function () {
var sId = $(this).attr('data-id'),
sVal = this.value;
item[sId] = sVal;
if (sId === 'Contactor') {
if (sVal) {
var sText = $(this).find('option:selected').text();
item.ContactorName = sText;
}
else {
item.ContactorName = '';
}
}
else if (sId === 'Hall') {
if (sVal) {
var sText = $(this).find('option:selected').text();
item.HallName = sText;
}
else {
item.HallName = '';
}
}
});
}
transLang(oDiv);
return oDiv;
},
/*
* 取得當年度幣值設定
*/
fnGetCurrencyThisYear = function (BillCreateTime) {
return fnGetCurrencyByYear({
Year: BillCreateTime, CallBack: function (data) {
saAccountingCurrency = data;
sAccountingCurrencyOptionsHtml = createOptions(saAccountingCurrency, 'ArgumentID', 'ArgumentValue', false, 'Correlation');
}
});
},
/**------------------------帳單部分---------------------------Start*/
/**
* 檢核審核時間有沒有符合被鎖定的日期
* @param {Object}date 審核時間
*/
fnCheckAuditDate = function (date) {
var bRel = true,
dNow = new Date(),
dAuditDate = new Date();
if (date) {
dAuditDate = new Date(date);
if (dNow.getMonth() > dAuditDate.getMonth() && dNow.getDate() > 4) {
bRel = false;
}
}
return bRel;
},
/**
* 審核通過後禁用頁面欄位
* @param {Object}dom 當前區塊
*/
fnSetDisabled = function (dom, data) {
//AuditVal(0:初始狀態;1:提交審核(報價/帳單);2:(報價/帳單)審核(通過);)
if (data) {
dom.find('.bill-status-box').show();
dom.find('.notpass-reason-box').hide();
let DraftRecipt = false;
switch (data.AuditVal) {
case '0':// ╠common.NotAudit⇒未提交審核╣
dom.find('.bill-status').text(i18next.t("common.NotAudit")).css('color', 'red');
dom.find('.submittoaudit,.synquote,.alreadyaudit').show();
dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
dom.find('.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
if (data.FeeItems.length > 0) {
dom.find('.submittoaudit').removeAttr('disabled');
dom.parent().next().find('.synquote').removeAttr('disabled');
}
else {
dom.find('.submittoaudit').prop('disabled', true);
dom.parent().next().find('.synquote').prop('disabled', true);
}
}
else {
if (data.KeyName === 'Bill') {
dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
}
}
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
}
else {
dom.find('.billvoid').hide();
}
if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
dom.find('.billdelete').removeAttr('disabled');
}
else {
dom.find('.billdelete').hide();
}
dom.find('.bills-print').removeAttr('disabled');
DraftRecipt = true;
break;
case '1':// ╠common.InAudit⇒提交審核中╣
dom.find('.bill-status').text(i18next.t("common.InAudit")).css('color', 'blue');
dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.cancelaudi').hide();
dom.find('.submittoaudit,.synquote,.alreadyaudit,.reedit,.cancelreedit').show();
dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.submittoaudit,.synquote,.billpost,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
dom.find('.reedit').removeAttr('disabled');
}
if (parent.UserInfo.UsersDown.indexOf(oCurData.ResponsiblePerson) > -1 || parent.UserInfo.UsersBranch.indexOf(oCurData.ResponsiblePerson) > -1 || parent.SysSet.BillAuditor.indexOf(parent.UserInfo.MemberID) > -1) {
dom.find('.alreadyaudit').removeAttr('disabled');
}
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.reedit,.cancelreedit').hide();
dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
}
else {
dom.find('.billvoid').hide();
}
if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
dom.find('.billdelete').removeAttr('disabled');
}
else {
dom.find('.billdelete').hide();
}
dom.find('.bills-print').removeAttr('disabled');
break;
case '2':// ╠common.Audited⇒已審核╣
dom.find('.bill-status').text(i18next.t("common.Audited")).css('color', 'green');
dom.find('.submittoaudit,.synquote,.alreadyaudit,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
dom.find('.billpost,.cancelpost,.cancelaudi,.writeoff').show();
dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.submittoaudit,.synquote,.billpost,.alreadyaudit,.cancelpost,.writeoff,[data-id="Payer"]').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
dom.find('.bills-print').removeAttr('disabled');
if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
dom.find('.billpost,.receiptnumberbtn,.checkauditdate').removeAttr('disabled');
}
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.prepay,.mprepay,.cancelaudi,.billvoid,.writeoff').removeAttr('disabled');
}
else {
dom.find('.billvoid').hide();
}
if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
dom.find('.billdelete').removeAttr('disabled');
dom.find('.billpost,.cancelpost').hide();
}
else {
dom.find('.billdelete').hide();
}
break;
case '3':// ╠common.NotPass⇒不通過╣
dom.find('.notpass-reason-text').text(data.NotPassReason || '');
dom.find('.bill-status').text(i18next.t("common.NotPass")).css('color', 'red');
dom.find('.billpost,.cancelpost,.writeoff,.canceloff,.reedit,.cancelreedit').hide();
dom.find('.submittoaudit,.synquote,.alreadyaudit,.notpass-reason-box').show();
if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {
if (data.FeeItems.length > 0) {
dom.find('.submittoaudit').removeAttr('disabled');
dom.parent().next().find('.synquote').removeAttr('disabled');
}
else {
dom.find('.submittoaudit').prop('disabled', true);
dom.parent().next().find('.synquote').prop('disabled', true);
}
}
else {
dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
}
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
}
else {
dom.find('.billvoid').hide();
}
if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
dom.find('.billdelete').removeAttr('disabled');
}
else {
dom.find('.billdelete').hide();
}
break;
case '4':// ╠common.NotPass⇒已銷帳╣
dom.find('.bill-status').text(i18next.t("common.HasBeenRealized")).css('color', 'red');
dom.find('.submittoaudit,.synquote,.alreadyaudit,.cancelaudi,.billpost,.cancelpost,.writeoff,.reedit,.cancelreedit').hide();
dom.find('.canceloff').show();
dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.submittoaudit,.synquote,.billpost').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
dom.find('.bills-print').removeAttr('disabled');
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.canceloff,.billvoid').removeAttr('disabled');
}
else {
dom.find('.billvoid').hide();
}
if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
dom.find('.billdelete').removeAttr('disabled');
}
else {
dom.find('.billdelete').hide();
}
break;
case '5':// ╠common.HasBeenPost⇒已過帳╣
dom.find('.bill-status').text(i18next.t("common.HasBeenPost")).css('color', 'green');
dom.find('.billpost,.submittoaudit,.synquote,.alreadyaudit,.cancelaudi,.reedit,.cancelreedit').hide();
dom.find('.cancelpost,.writeoff,.canceloff').show();
dom.find(':input,textarea,.plusfeeitem,.importfeeitem,.copyfeeitem,.plusfeeitemstar,select,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.bills-print,.submittoaudit,.synquote,.billpost').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
dom.find('.bills-print').removeAttr('disabled');
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.cancelpost,.writeoff,.billvoid').removeAttr('disabled');
}
else {
dom.find('.billvoid').hide();
}
if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
dom.find('.billdelete').removeAttr('disabled');
}
else {
dom.find('.billdelete').hide();
}
break;
case '6':// ╠common.HasVoid⇒已作廢╣
dom.find('.notpass-reason-text').text(data.VoidReason || '');
dom.find('.bill-status').text(i18next.t("common.HasVoid")).css('color', '#b2b1b1');
dom.find('button').not('.plusfeeitem').hide();
dom.find('.notpass-reason-box').show();
dom.find(':input,textarea').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.billvoid').removeAttr('disabled');
}
break;
case '7':// ╠common.HasReEdit⇒抽單中╣
dom.find(':input,textarea').removeAttr('disabled');
dom.find('.icon-p').removeClass('disabled');
dom.find('.bill-status').text(i18next.t("common.HasReEdit")).css('color', 'blue');
dom.find('.submittoaudit,.synquote,.alreadyaudit').show();
dom.find('.billpost,.cancelpost,.writeoff,.canceloff').hide();
dom.find('.alreadyaudit,.cancelaudi,.cancelpost,.writeoff,.bills-print,.submittoaudit,.synquote,.reedit').attr('disabled', 'disabled');
if (parent.UserInfo.MemberID === oCurData.ResponsiblePerson || parent.UserInfo.MemberID === oCurData.CreateUser) {//如果有資料且是null或者N
dom.find('.cancelreedit').removeAttr('disabled');
}
else {
if (data.KeyName === 'Bill') {
dom.find(':input,textarea,.alreadyaudit,.cancelaudi,.cancelpost,.writeoff').attr('disabled', 'disabled');
dom.find('.icon-p').addClass('disabled');
}
}
if (parent.UserInfo.roles.indexOf('Account') > -1) {//會計
dom.find('.prepay,.mprepay,.billvoid').removeAttr('disabled');
}
else {
dom.find('.billvoid').hide();
}
if (parent.UserInfo.roles.indexOf('Admin') > -1) {//超級管理員
dom.find('.billdelete').removeAttr('disabled');
}
else {
dom.find('.billdelete').hide();
}
break;
}
if (DraftRecipt) {
dom.find("[data-action='Print_Receipt']").hide();
dom.find("[data-action='Download_Receipt']").hide();
}
else {
dom.find("[data-action='Print_Receipt']").show();
dom.find("[data-action='Download_Receipt']").show();
}
if (parent.UserInfo.roles.indexOf('Business') > -1) {
dom.find('[data-id="ExchangeRate"]').attr('disabled', 'disabled');
}
fnOpenAccountingArea(dom.find('.OnlyForAccounting'), parent.UserInfo.roles);
}
},
/**
* 綁定費用項目
* @param {HTMLELment} dom 當前標籤
* @param {HTMLELment} parentdata 父層標籤
* @param {Object} data 當前資料
* @param {String} flag 綁定狀態
*/
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(iTaxSubtotal, 2, data.Currency));
if (parentdata.ActualCost.AmountTaxSum > parentdata.EstimatedCost.AmountTaxSum) {
$('#tab4 #warnning_tips').show();
}
else {
$('#tab4 #warnning_tips').hide();
}
}
else if (oTab[0].id === 'tab10') {
oFinancial.find('.actualsum').val(fMoney(iTaxSubtotal, 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));
}
else if (oTab[0].id === 'tab9') {
//增加退運報價/預估成本-預估成本累加
let Return_Estimatedcostsum = $('#tab9 .return_estimatedcostsum').val();
let Current_Return_Estimatedcostsum = parseFloat((Return_Estimatedcostsum || '0').toString().replaceAll(',', ''));
$('#tab9 .return_estimatedcostsum').val(fMoney(Current_Return_Estimatedcostsum + 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') {
oTab.css({ 'padding-top': 40 });
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 === 'tab9') {
// 每筆退運帳單的預估成本
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());
//增加退運報價/預估成本-帳單金額累加(有先後順序,無法對調)
let LastRow_Return_Amountsum = parseFloat($('#tab9 .return_amountsum').val().replaceAll(',', ''));
$('#tab9 .return_amountsum').val(fMoney(LastRow_Return_Amountsum + TabTipUntaxtotal, 2, FeeItemCurrency));
}
}
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);
}
else if (oTab[0].id === 'tab9') {
if (data.KeyName === 'Bill')
fnCalcuBillsFee(oFinancial, '.ReturnBillForeignCurrency', '.ReturnBillMainCurrency',
data.Currency, data.ExchangeRate);
else {
fnCalcuQuotationFee(oFinancial.find('.ReturnQuotationForeignCurrency'), oFinancial.find('.ReturnQuotationMainCurrency'),
parentdata.ReturnQuotationOrBillingCurrency, parentdata.ReturnAccountingExchangeRate);
}
}
dom.parents('.financial').find('.plusfeeitem').prop('disabled', false);
fnSetDisabled(oFinancial, data);
inputChange(oFinancial.find('.input-value'), data);
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($('