0
0
Fork 0

fix: refs #7283 #7283 ItemSummary bugs

This commit is contained in:
Javier Segarra 2024-10-22 12:09:19 +02:00
parent f3a6209189
commit d6b8d41b6c
1 changed files with 3 additions and 2 deletions

View File

@ -135,7 +135,7 @@ const getUrl = (id, param) => `#/Item/${id}/${param}`;
<VnLv
v-for="(tax, index) in item.taxes"
:key="index"
:label="tax.country.country"
:label="tax.country.name"
:value="tax.taxClass.description"
/>
</QCard>
@ -155,7 +155,8 @@ const getUrl = (id, param) => `#/Item/${id}/${param}`;
:url="getUrl(entityId, 'barcode')"
:text="t('item.summary.barcode')"
/>
<p
<div
class="text-bold"
v-for="(barcode, index) in item.itemBarcode"
:key="index"
v-text="barcode.code"