网点费用调整校验调整

This commit is contained in:
wuteng 2025-10-15 16:08:19 +08:00
parent 0e6afb51fd
commit 7408d365b7

View File

@ -1555,12 +1555,18 @@ export default {
} else {
this.selectedMonthUserEnterpriseName = '';
this.selectedMonthUserEnterpriseTaxId = '';
this.selectedSenderEnterpriseName = this.billDetail.sender.enterpriseName;
this.selectedSenderEnterpriseTaxId = this.billDetail.sender.enterpriseTaxId;
if(this.billDetail.sender){
this.selectedSenderEnterpriseName = this.billDetail.sender.enterpriseName;
this.selectedSenderEnterpriseTaxId = this.billDetail.sender.enterpriseTaxId;
}
}
if(this.billDetail.sender){
this.senderCountryCode = this.billDetail.sender.country;
}
if(this.billDetail.reciever){
this.recieverCountryCode = this.billDetail.reciever.country;
this.recieverRegionName = this.billDetail.reciever.provinceName;
}
this.senderCountryCode = this.billDetail.sender.country;
this.recieverCountryCode = this.billDetail.reciever.country;
this.recieverRegionName = this.billDetail.reciever.provinceName;
// 初始化企业等级
this.categorySender =null;
this.categoryReciever =null;