|
@@ -173,6 +173,16 @@
|
|
|
<el-input type="text" v-model="scope.row.price" />
|
|
<el-input type="text" v-model="scope.row.price" />
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column :prop="priceBeforeTax" :label="" align="center">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-input type="text" v-model="scope.row.priceBeforeTax" />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column :prop="taxRate" :label=" " align="center">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-input type="text" v-model="scope.row.taxRate" />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column :prop="t('product.cost')" :label="t('product.cost')" align="center">
|
|
<el-table-column :prop="t('product.cost')" :label="t('product.cost')" align="center">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<el-input type="text" v-model="scope.row.cost" />
|
|
<el-input type="text" v-model="scope.row.cost" />
|