|
@@ -978,7 +978,7 @@
|
|
|
<el-table-column prop="expenseType" :label="$t('costtype')"></el-table-column>
|
|
|
<el-table-column prop="invoiceType" :label="$t('ppertype')">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.invoiceType == 0 ? '增值税专用发票' : '增值税普通发票'}}
|
|
|
+ {{scope.row.invoiceType == null?'':(scope.row.invoiceType == 0 ? '增值税专用发票' : '增值税普通发票')}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="amount" :label="$t('amountof')+'('+ $t('tax') +')'" align="right">
|