工单批次,开票信息修改
This commit is contained in:
@ -97,21 +97,16 @@
|
||||
form: {
|
||||
courierNumber: '',
|
||||
invoiceType: '', //电子发票还是纸质发票
|
||||
}
|
||||
},
|
||||
show: true,
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
this.list = JSON.parse(localStorage.getItem('list'));
|
||||
this.batchIds = [];
|
||||
this.list.map(a => {
|
||||
this.batchIds.push(a.id)
|
||||
})
|
||||
console.log('this.batchIds', this.batchIds)
|
||||
this.shouldRate = this.list[0]?.shouldRate
|
||||
this.realRate = this.list[0]?.realRate
|
||||
this.invoiceType = this.list[0]?.invoiceType
|
||||
this.supplierId = this.list[0]?.supplierId
|
||||
await this.getInfo();
|
||||
await this.initData();
|
||||
},
|
||||
async activated() {
|
||||
await this.initData();
|
||||
this.show = true;
|
||||
},
|
||||
watch: {
|
||||
tableData: {
|
||||
@ -130,7 +125,25 @@
|
||||
return total
|
||||
}
|
||||
},
|
||||
deactivated() {
|
||||
if (this.show) {
|
||||
this.tableData = [];
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async initData() {
|
||||
this.list = JSON.parse(localStorage.getItem('list'));
|
||||
this.batchIds = [];
|
||||
this.list.map(a => {
|
||||
this.batchIds.push(a.id)
|
||||
})
|
||||
console.log('this.batchIds', this.batchIds)
|
||||
this.shouldRate = this.list[0]?.shouldRate
|
||||
this.realRate = this.list[0]?.realRate
|
||||
this.invoiceType = this.list[0]?.invoiceType
|
||||
this.supplierId = this.list[0]?.supplierId
|
||||
await this.getInfo();
|
||||
},
|
||||
async getInfo() {
|
||||
if(this.supplierId) {
|
||||
let res = await getBillingInfo('/supplier/info/billing/getBySupplierId/' + this.supplierId )
|
||||
@ -325,6 +338,7 @@
|
||||
},
|
||||
goInvoiceDetail (item) {
|
||||
localStorage.setItem('invoiceDetail', JSON.stringify(item))
|
||||
this.show = false;
|
||||
this.goPage('showInvoice')
|
||||
},
|
||||
getInvoiceMoney() {
|
||||
|
Reference in New Issue
Block a user