- catalogo avanti, parte 1

This commit is contained in:
Surya Paolo
2024-05-04 14:49:09 +02:00
parent a7604a63ad
commit 399599d450
11 changed files with 2242 additions and 72 deletions

View File

@@ -2087,4 +2087,77 @@ export const shared_consts = {
TYPEHOSP_SCAMBIOCASA: 1,
TYPEHOSP_OSPITALITA: 2,
PRODUCTTYPE: {
BENE: 1,
SERVIZIO: 2,
OSPITALITA: 4,
PRODOTTO: 10,
LIBRO: 20,
EBOOK: 21,
AUDIOLIBRO: 22,
VIDEO: 23,
CARTE: 25,
},
VERSIONE: {
NUOVO: 1,
USATO: 2,
DOWNLOAD: 3,
DVD: 4,
EPUB: 5,
MOBI: 6,
PDF: 7,
STREAMING: 8,
},
VERSIONI_PRODOTTO: [
{
label: '[Nessuno]',
value: 0,
color: '',
},
{
label: 'Nuovo',
value: 1,
color: 'primary',
},
{
label: 'Usato',
value: 2,
color: 'warning',
},
{
label: 'Download',
value: 3,
color: 'success',
},
{
label: 'DVD',
value: 4,
color: 'secondary',
},
{
label: 'EPUB',
value: 5,
color: 'orange',
},
{
label: 'MOBI',
value: 6,
color: 'indigo',
},
{
label: 'PDF',
value: 7,
color: 'purple',
},
{
label: 'Streaming',
value: 8,
color: 'red',
},
],
}