- aggiornato carrello e bottoni sul catalogo
This commit is contained in:
@@ -44,7 +44,24 @@
|
||||
</span>
|
||||
</q-item-label>
|
||||
<q-item-label>
|
||||
{{ order.product.productInfo.code }}
|
||||
<q-chip
|
||||
dense
|
||||
outline
|
||||
icon="fas fa-barcode"
|
||||
color="primary"
|
||||
text-color="white"
|
||||
>
|
||||
<span
|
||||
style="cursor: pointer"
|
||||
@mouseenter="showPointer = true"
|
||||
@mouseleave="showPointer = false"
|
||||
@click="copyToClipboard(order.product.productInfo.code)"
|
||||
>
|
||||
<span :style="showPointer ? 'background-color: rgba(0,0,255,0.1)' : ''">
|
||||
{{ order.product.productInfo.code }}
|
||||
</span>
|
||||
</span>
|
||||
</q-chip>
|
||||
</q-item-label>
|
||||
|
||||
<q-item-label caption>
|
||||
@@ -200,7 +217,7 @@
|
||||
€
|
||||
{{ order.TotalPriceProduct ? order.TotalPriceProduct.toFixed(2) : 0 }}
|
||||
</span>
|
||||
<span v-if="isApplicatoSconto">
|
||||
<span v-if="isApplicatoSconto && showall">
|
||||
<span class="ordine_scontato"
|
||||
>(<span class="barrato"
|
||||
>€
|
||||
@@ -214,7 +231,7 @@
|
||||
>
|
||||
</span>
|
||||
<div
|
||||
v-if="isApplicatoSconto && !editmode"
|
||||
v-if="isApplicatoSconto && !editmode && showall"
|
||||
class="ordine_scritta_sconto"
|
||||
v-html="
|
||||
$t('ecomm.sconto_applicato', {
|
||||
@@ -222,8 +239,7 @@
|
||||
perc: getRispPerc,
|
||||
})
|
||||
"
|
||||
>
|
||||
</div>
|
||||
></div>
|
||||
</div>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
|
||||
Reference in New Issue
Block a user