88236e1f by zhangmeng

票务

1 parent 83967c20
...@@ -25,9 +25,9 @@ ...@@ -25,9 +25,9 @@
25 @change="getList" 25 @change="getList"
26 > 26 >
27 <el-option label="全部" value="0" /> 27 <el-option label="全部" value="0" />
28 <el-option label="未申请发票" value="1" /> 28 <el-option label="未申请" value="1" />
29 <el-option label="已申请发票" value="2" /> 29 <el-option label="申请中" value="2" />
30 <el-option label="已开票" value="3" /> 30 <el-option label="已开票" value="3" />
31 </el-select> 31 </el-select>
32 </el-form-item> 32 </el-form-item>
33 </el-form> 33 </el-form>
...@@ -90,18 +90,18 @@ ...@@ -90,18 +90,18 @@
90 </el-col> 90 </el-col>
91 <el-col :lg="3" :md="6" :sm="6" :xs="6" class="text-center"> 91 <el-col :lg="3" :md="6" :sm="6" :xs="6" class="text-center">
92 <span class="text-warning"> {{ b.payType!='2'?'¥':'€' }} 92 <span class="text-warning"> {{ b.payType!='2'?'¥':'€' }}
93 <span class="bigMoney">{{b.totalPayAmount}}</span> 93 <span class="bigMoney">{{b.totalPayAmount||b.totalAmount}}</span>
94 </span> 94 </span>
95 </el-col> 95 </el-col>
96 <el-col :lg="6" :md="16" :sm="16" :xs="16"> 96 <el-col :lg="6" :md="16" :sm="16" :xs="16">
97 <div class="text-right"> 97 <div class="text-right">
98 <el-button type="primary" plain round v-if="b.isInvoice == '0'&&!b.invoiceId&&b.languageSource=='100'" @click.stop="gokp(b)"> 98 <el-button type="primary" plain round v-if="b.isInvoice == '0'&&!b.invoiceId" @click.stop="gokp(b)">
99 {{ language == 0 ? '申请开票' : 'Invoice' }} 99 {{ language == 0 ? '申请开票' : 'Invoice' }}
100 </el-button> 100 </el-button>
101 <el-button type="primary" plain round v-if="b.isInvoice == '0'&&b.invoiceId&&b.languageSource=='100'" @click.stop="editkp(b)"> 101 <el-button type="primary" plain round v-if="b.isInvoice == '0'&&b.invoiceId" @click.stop="editkp(b)">
102 {{ language == 0 ? '重新申请' : 'Rebilling' }} 102 {{ language == 0 ? '重新申请' : 'Rebilling' }}
103 </el-button> 103 </el-button>
104 <el-button type="primary" plain round v-if="b.invoiceId&&b.languageSource=='100'" 104 <el-button type="primary" plain round v-if="b.invoiceId"
105 @click.stop="showDetail(b)">{{ language == 0 ? '发票信息' : 'Detail' }} 105 @click.stop="showDetail(b)">{{ language == 0 ? '发票信息' : 'Detail' }}
106 </el-button> 106 </el-button>
107 <!-- <el-button type="primary" v-if="b.isInvoice == '0'&&!b.invoiceId&&b.languageSource!='100'" plain round @click.stop="goSj(b)">--> 107 <!-- <el-button type="primary" v-if="b.isInvoice == '0'&&!b.invoiceId&&b.languageSource!='100'" plain round @click.stop="goSj(b)">-->
...@@ -294,7 +294,7 @@ const gokp = (item) => { ...@@ -294,7 +294,7 @@ const gokp = (item) => {
294 path: '/booking/addInvoice', 294 path: '/booking/addInvoice',
295 query: { 295 query: {
296 orders: encodeURIComponent(JSON.stringify(item)), 296 orders: encodeURIComponent(JSON.stringify(item)),
297 totalMoney:item.totalStr||item.totalPayAmount||item.payAmount, 297 totalMoney:item.totalStr||item.totalPayAmount||item.payAmount||item.totalAmount,
298 paymentType:query.value.orderType==6||query.value.orderType==5?item.payType:item.paymentType, 298 paymentType:query.value.orderType==6||query.value.orderType==5?item.payType:item.paymentType,
299 orderType:query.value.orderType 299 orderType:query.value.orderType
300 } 300 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!