Commit 9d0dc559 authored by liudong1993's avatar liudong1993
parents 3f3f3ae4 c8ad0e2d
...@@ -191,9 +191,10 @@ ...@@ -191,9 +191,10 @@
<template v-else> <template v-else>
<span style="display:flex;align-items: center;"> <span style="display:flex;align-items: center;">
<el-input placeholder v-model="msg.CompanyName"></el-input> <el-input placeholder v-model="msg.CompanyName"></el-input>
<el-checkbox v-model="checked">{{$t('objFill.v101.FinancialModule.baocunwcy')}}</el-checkbox> <el-checkbox v-model="checked" >{{$t('objFill.v101.FinancialModule.baocunwcy')}}</el-checkbox>
</span> </span>
</template> </template>
 <el-checkbox v-model="isQMySelf" style="margin-top:10px;" @change="getCustomerInvoiceList()">{{$t('objFill.seeMySelfCompany')}}</el-checkbox>
</td> </td>
</tr> </tr>
<tr> <tr>
...@@ -313,6 +314,7 @@ ...@@ -313,6 +314,7 @@
orderList: {}, orderList: {},
isChang: 1, isChang: 1,
checked: true, checked: true,
isQMySelf:false,
CustomerList: [], CustomerList: [],
CompanyID: "", CompanyID: "",
images: [], images: [],
...@@ -559,10 +561,15 @@ ...@@ -559,10 +561,15 @@
); );
}, },
getCustomerInvoiceList: function () { getCustomerInvoiceList: function () {
let Type=0;
if(this.isQMySelf){
Type=1;
}
// 根据客户id 获取对应发票信息 // 根据客户id 获取对应发票信息
this.apipost( this.apipost(
"InvoiceApply_get_GetCustomerInvoiceList", { "InvoiceApply_get_GetCustomerInvoiceList", {
CustomerID: this.msg.CustomerId CustomerID: this.msg.CustomerId,
Type:Type
}, },
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment