- Email Ordine da template HTML

- Corretto altro
This commit is contained in:
Surya Paolo
2023-12-28 15:53:16 +01:00
parent d90b46c206
commit 196b19ac66
11 changed files with 21 additions and 27 deletions

View File

@@ -47,4 +47,9 @@
.product_code {
font-size: 0.75rem;
color: gray;
}
.label-qta{
font-size: 1.15rem;
font-weight: bold;
}

View File

@@ -181,8 +181,6 @@
{{ products.getQtyAvailable(myproduct) }}
</span>
<div class="prod_qtywarn">
{{ getQtyWarn() }}
<div
v-if="
tools.isManager() && !!myproduct.QuantitaOrdinateInAttesa
@@ -217,10 +215,6 @@
{{ products.getQtyBookableAvailable(myproduct) }}
</span>
<div class="prod_qtywarn">
<span v-if="getQtyWarnPreOrdered()">{{
getQtyWarnPreOrdered()
}}</span>
<div
v-if="
tools.isManager() && !!myproduct.QuantitaPrenotateInAttesa
@@ -281,11 +275,10 @@
<q-field
outlined
dense
style="width: 40px; height: 30px"
class="q-mx-xs"
>
<template v-slot:control>
<div class="self-center no-outline" tabindex="0">
<div class="no-outline label-qta text-center" tabindex="0">
{{ myorder.quantity + myorder.quantitypreordered }}
</div>
</template>

View File

@@ -42,4 +42,9 @@
.q-item__section--thumbnail img{
height: 100px;
}
.qta{
font-size: 1.15rem;
font-weight: bold;
}

View File

@@ -41,19 +41,10 @@
})
"
></q-btn>
<div v-if="showall" :class="`q-mx-sm text-blue-14`">
{{ order.quantity }}
</div>
<div v-if="order.quantity > 0 && order.quantitypreordered > 0">
+ {{ t('ecomm.preord') }}:
<div v-if="showall" :class="`q-mx-sm text-blue-14 qta` ">
{{ order.quantity + order.quantitypreordered }}
</div>
<div
v-if="order.quantitypreordered > 0"
:class="`q-mx-sm text-blue-14`"
>
{{ order.quantitypreordered }}
</div>
<q-btn
v-if="showall && !nomodif"
icon-right="fas fa-cart-plus"