- 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

@@ -718,7 +718,7 @@ export const useProducts = defineStore('Products', {
if (qta > 1 || qta === 0)
strprod = t('ecomm.prodotti')
if (qta > 0) {
if (qta >= 0) {
msg = t('ecomm.prod_sul_carrello', { strprod, qty: qta })
}
@@ -726,7 +726,7 @@ export const useProducts = defineStore('Products', {
if (ris === null || ris.myord.quantity === 0)
tools.showNotif($q, msg)
else
tools.showPositiveNotif($q, msg)
tools.showPositiveNotif($q, msg, undefined, 'prodotto')
}