- aggiornamento lista catalogo, ordinamento tabelle

This commit is contained in:
Surya Paolo
2025-05-08 11:06:01 +02:00
parent 82e10ef6cf
commit ef36cd5e11
5 changed files with 165 additions and 80 deletions

View File

@@ -9972,7 +9972,18 @@ export const tools = {
}
},
getDescrQuantitàByQuantity(quantity: number) : string {
if (quantity <= 1) {
return 'Non disponibile';
} else if (quantity > 1 && quantity <= 10) {
return 'Quasi terminato';
} else if (quantity > 10 && quantity <= 50) {
return 'In esaurimento';
} else {
return 'Buona';
}
},
// FINE !