- aggiunto filtro nella lista producttable

- ora compare il bottone aggiungi alla lista solo se non è presente.
This commit is contained in:
Surya Paolo
2025-06-25 17:48:21 +02:00
parent bfc6ec04f6
commit 99fab39c4b
14 changed files with 162 additions and 66 deletions

View File

@@ -315,7 +315,7 @@ export default defineComponent({
const catalogStore = useCatalogStore();
const tabvisu = ref('categorie');
const tabcatalogo = ref('visu');
const tabcatalogo = ref('');
const tabgen = ref('condizioni');
const searchList = ref([] as ISearchList[]);
@@ -1574,7 +1574,7 @@ export default defineComponent({
// controlla se è stato passato l'id dalla pagina:
let idcatsel = '';
if ($route.query.id) idcatsel = $route.query.id;
if ($route.query.id) idcatsel = $route.query.id as string;
if ($route.query.stampa) instampa = $route.query.stampa === '1';
else idcatsel = optcatalogo.value.idCatalogSel;