add quantityAvailable (#566)
* add quantityAvailable * add formatQuantity * minimal changepull/3759/head
parent
ca3cd71fe2
commit
83426e0676
|
@ -59,6 +59,15 @@
|
|||
{{ formatQuantity(scope.row.quantityOnHand) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
:label="$t('form.productInfo.quantityAvailable')"
|
||||
align="right"
|
||||
width="100"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{ formatQuantity(scope.row.quantityAvailable) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
:label="$t('form.productInfo.price')"
|
||||
align="right"
|
||||
|
@ -87,7 +96,7 @@
|
|||
</el-table-column>
|
||||
<el-table-column
|
||||
label=""
|
||||
width="120"
|
||||
width="100"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-dropdown trigger="click">
|
||||
|
|
Loading…
Reference in New Issue