- Seleziona l'ordine GAS e compare sulla email

- img logo
This commit is contained in:
Surya Paolo
2023-12-24 00:56:05 +01:00
parent 3f4eb0877c
commit c27c293fbf
30 changed files with 285 additions and 109 deletions

View File

@@ -42,7 +42,7 @@ export default defineComponent({
function addsubqty(addqty: boolean, subqty: boolean) {
if (products.isQtyAvailableByOrder(props.order)) {
if (addqty) {
if (props.order.quantity >= 20)
if (props.order.quantity >= 100)
return false
}
@@ -54,7 +54,7 @@ export default defineComponent({
if (products.isInPreorderByOrder(props.order)) {
if (addqty) {
if (props.order.quantitypreordered >= 20)
if (props.order.quantitypreordered >= 100)
return false
}
@@ -99,6 +99,8 @@ export default defineComponent({
removeFromCard,
isApplicatoSconto,
getRisparmio,
tools,
products,
}
},
})