- Email Ordine da template HTML
- Corretto altro
This commit is contained in:
@@ -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')
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user