- Categorie
- ProductInfo
This commit is contained in:
@@ -54,10 +54,10 @@
|
||||
:key="index"
|
||||
>
|
||||
<div
|
||||
v-if="!!item && item.order && item.order.product"
|
||||
v-if="!!item && item.order && item.order.product && item.order.product.productInfo"
|
||||
>
|
||||
{{ item.order.product.name }} ({{
|
||||
productStore.getQuantityByOrder($t, item.order)
|
||||
{{ item.order.product.productInfo.name }} ({{
|
||||
productStore.getQuantityByOrder(t, item.order)
|
||||
}})<br />
|
||||
</div>
|
||||
</div>
|
||||
@@ -139,8 +139,8 @@
|
||||
</q-td>
|
||||
<q-td key="items" :props="props">
|
||||
<div v-for="(item, index) of props.row.items" :key="index">
|
||||
<div v-if="!!item.order && item.order.product">
|
||||
{{ item.order.product.name }} ({{
|
||||
<div v-if="!!item.order && item.order.product && item.order.product.productInfo">
|
||||
{{ item.order.product.productInfo.name }} ({{
|
||||
productStore.getQuantityByOrder($t, item.order)
|
||||
}})<br />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user