|
|
|
@ -13,12 +13,16 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item class="query-form-item" label="发票代码:">
|
|
|
|
|
<el-input v-model="invoiceQuery.invoiceCode" placeholder="请输入发票代码" style="width: 90%" clearable="true" ></el-input>
|
|
|
|
|
<el-input v-model="invoiceQuery.invoiceCode" placeholder="请输入发票代码" style="width: 90%"
|
|
|
|
|
clearable="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item class="query-form-item" label="机器编码:">
|
|
|
|
|
<el-input v-model="invoiceQuery.machineNo" placeholder="请输入机器编码" style="width: 90%" clearable="true" ></el-input>
|
|
|
|
|
<el-input v-model="invoiceQuery.machineNo" placeholder="请输入机器编码" style="width: 90%"
|
|
|
|
|
clearable="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -324,6 +328,7 @@
|
|
|
|
|
title="发票登记"
|
|
|
|
|
:visible.sync="checkInvoice"
|
|
|
|
|
width="60%"
|
|
|
|
|
:before-close="closeAcceptDialog"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="checkInvoice"
|
|
|
|
@ -543,6 +548,9 @@ export default {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.invoiceList = res.data.list || []
|
|
|
|
|
this.invoicTotal = res.data.total || 0
|
|
|
|
|
this.productDetailList = []
|
|
|
|
|
this.codeDetailList = []
|
|
|
|
|
this.orderList = []
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
this.invoiceList = []
|
|
|
|
@ -737,7 +745,7 @@ export default {
|
|
|
|
|
this.codeDetailList = []
|
|
|
|
|
this.codeTotal = 0
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
let supId = this.$store.getters.customerId
|
|
|
|
|