网点费用申请企业税号调整
This commit is contained in:
parent
12a843e49a
commit
e809bba7ad
@ -1523,6 +1523,19 @@ export default {
|
||||
oldValue: {
|
||||
handler (newValue, oldValue) {
|
||||
this.billDetail = this.oldValue;
|
||||
if (['2', '4', '5'].includes(this.billDetail.paymentType)) { //月结
|
||||
this.selectedMonthUserEnterpriseName = this.billDetail.sender.enterpriseName;
|
||||
this.selectedMonthUserEnterpriseTaxId = this.billDetail.sender.enterpriseTaxId;
|
||||
this.selectedSenderEnterpriseName = '';
|
||||
this.selectedSenderEnterpriseTaxId = '';
|
||||
} else {
|
||||
this.selectedMonthUserEnterpriseName = '';
|
||||
this.selectedMonthUserEnterpriseTaxId = '';
|
||||
this.selectedSenderEnterpriseName = this.billDetail.sender.enterpriseName;
|
||||
this.selectedSenderEnterpriseTaxId = this.billDetail.sender.enterpriseTaxId;
|
||||
}
|
||||
this.senderCountryCode = this.billDetail.sender.country;
|
||||
this.recieverCountryCode = this.billDetail.reciever.country;
|
||||
},
|
||||
deep: true
|
||||
},
|
||||
@ -1541,7 +1554,7 @@ export default {
|
||||
this.form.blSpecialQuote='0';
|
||||
}
|
||||
},
|
||||
deep: true
|
||||
deep: true
|
||||
},
|
||||
applyType: {
|
||||
handler (newVa, oldValue) {
|
||||
@ -1667,8 +1680,6 @@ export default {
|
||||
console.log("====>this.oldValue==>",this.oldValue);
|
||||
console.log("====>this.form==>",this.form);
|
||||
this.billDetail=this.oldValue;
|
||||
this.senderCountryCode = this.form.sender.country;
|
||||
this.recieverCountryCode = this.form.reciever.country;
|
||||
},
|
||||
getJsonData(){
|
||||
if(this.form.packType&&this.form.packType.length>0){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user