- catalogo
- corretto logica del RefreshToken che non richiedeva il nuovo token, quindi scadeva tutte le volte, richiedendo sempre l'accesso !
This commit is contained in:
@@ -1603,6 +1603,8 @@ export const shared_consts = {
|
||||
CIRCUIT_PARAMS: {
|
||||
SCOPERTO_MIN_GRP: 200,
|
||||
SCOPERTO_MAX_GRP: 400,
|
||||
SCOPERTO_MIN_CONTO_COMUNITARIO: 500,
|
||||
SCOPERTO_MAX_CONTO_COMUNITARIO: 1000,
|
||||
},
|
||||
|
||||
FontsInstalled: [
|
||||
@@ -2017,11 +2019,18 @@ export const shared_consts = {
|
||||
fido_scoperto_default: 1,
|
||||
deperimento: 1,
|
||||
showAlways: 1,
|
||||
ignoreLimits: 1,
|
||||
askManagerToEnter: 1,
|
||||
sendEmailAfterAskingToEnter: 1,
|
||||
circuitoIndipendente: 1,
|
||||
creditodiPartenza: 1,
|
||||
status: 1,
|
||||
transactionsEnabled: 1,
|
||||
qta_max_default: 1,
|
||||
fido_scoperto_default_grp: 1,
|
||||
qta_max_default_grp: 1,
|
||||
fido_scoperto_default_contocom: 1,
|
||||
qta_max_default_contocom: 1,
|
||||
valuta_per_euro: 1,
|
||||
symbol: 1,
|
||||
idCity: 1,
|
||||
@@ -2185,7 +2194,7 @@ export const shared_consts = {
|
||||
},
|
||||
|
||||
getDirectoryByTable(table: string, barre?: boolean) {
|
||||
|
||||
|
||||
let add = '';
|
||||
if (barre)
|
||||
add = '/';
|
||||
@@ -2236,25 +2245,32 @@ export const shared_consts = {
|
||||
PRODUCT: 1000,
|
||||
},
|
||||
|
||||
ORDINAMENTO_CATALOGHI: [
|
||||
{
|
||||
label: '[Default]',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: 'Data di Uscita',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
label: 'Bestseller',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
label: 'Alfabetico',
|
||||
value: 0,
|
||||
},
|
||||
ORDINAMENTO_CATALOGHI_PUBBLICO: [
|
||||
{ label: '[Nessuno]', value: '' },
|
||||
{ label: 'Alfabetico', value: 'name' },
|
||||
{ label: 'Data di Pubblicazione', value: 'date_pub_ts' },
|
||||
],
|
||||
|
||||
ORDINAMENTO_CATALOGHI: [
|
||||
{ label: '[Nessuno]', value: '' },
|
||||
{ label: 'Alfabetico', value: 'name' },
|
||||
{ label: 'Data di Pubblicazione', value: 'date_pub_ts' },
|
||||
{ label: 'Totale Venduti', value: 'totVen' },
|
||||
{ label: 'Totale Fatturati', value: 'totFat' },
|
||||
{ label: 'Venduti Ultimi 3 Mesi', value: 'vLast3M' },
|
||||
{ label: 'Venduti Ultimi 6 Mesi', value: 'vLast6M' },
|
||||
{ label: 'Venduti Ultimo Anno', value: 'vLastY' },
|
||||
{ label: 'Venduti Ultimi 2 Anni', value: 'vLast2Y' },
|
||||
{ label: 'Fatturati Ultimi 3 Mesi', value: 'fatLast3M' },
|
||||
{ label: 'Data Ultimo Ordine', value: 'dataUltimoOrdine' },
|
||||
],
|
||||
|
||||
ORDINAMENTO_DIREZIONE: [
|
||||
{ label: 'Ascendente', value: 1 },
|
||||
{ label: 'Discendente', value: -1 },
|
||||
],
|
||||
|
||||
|
||||
VERSIONI_PRODOTTO: [
|
||||
{
|
||||
label: '[Nessuno]',
|
||||
|
||||
Reference in New Issue
Block a user