|
@@ -42,6 +42,11 @@
|
|
|
prop="taxrate"
|
|
|
:label="$t(`税率`)">
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="taxincludedamount" :label="$t(`开票金额`)">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ tool.formatAmount(scope.row.taxincludedamount, 2) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column :label="$t('操作')" width="150" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<edit class="inline-16" :sa_invoicebillid="param.content.sa_invoicebillid" :data="scope.row" @onSuccess="listData(param.content.sa_invoicebillid)"></edit>
|