调整开票状态

This commit is contained in:
wuteng 2025-10-28 13:56:40 +08:00
parent 44533872ee
commit 39b3a5ba67

View File

@ -48,10 +48,13 @@
<dict-tag :options="dict.type.emis_settlebill_pay_status" :value="scope.row.emisSettleBill.paymentStatus"/>
</template>
</el-table-column>
<el-table-column :label="$t('核销状态 ')" align="center" prop="emisSettleBill.chargeStatus" min-width="100">
<el-table-column :label="$t('开票状态 ')" align="center" prop="emisSettleBill.chargeStatus" min-width="100">
<template slot-scope="scope">
<span v-if="scope.row.emisSettleBill.chargeStatus==0 ">未核销</span>
<span v-else>已核销</span>
<el-tag v-if="scope.row.emisSettleBill.openBillStatus=='0'" type="error">未开票</el-tag>
<el-tag v-if="scope.row.emisSettleBill.openBillStatus=='1'" type="success">已开票</el-tag>
<el-tag v-if="scope.row.emisSettleBill.openBillStatus=='2'" type="warning">部分开票</el-tag>
<el-tag v-if="scope.row.emisSettleBill.openBillStatus=='3'" type="warning">不开票</el-tag>
<el-tag v-if="scope.row.emisSettleBill.openBillStatus=='4'" type="success">已完成</el-tag>
</template>
</el-table-column>