- Aggiunta della funzione Cron
- Flag: Pubblicati OnLine + Solo CagalogoGenerale + Dettagli
This commit is contained in:
@@ -9828,7 +9828,7 @@ export const tools = {
|
||||
return (!userStore.isEditor && !userStore.isCommerciale && !userStore.isAdmin && !userStore.isManager & !userStore.isGrafico)
|
||||
},
|
||||
|
||||
getsearchList_Cataloghi() {
|
||||
getsearchList_Cataloghi(isCatalogoGenerale: boolean) {
|
||||
const lista = [
|
||||
{
|
||||
visible: !this.isUtente(),
|
||||
@@ -9857,6 +9857,34 @@ export const tools = {
|
||||
useinput: false,
|
||||
icon: 'fas fa-globe'
|
||||
},
|
||||
{
|
||||
visible: !this.isUtente(),
|
||||
label: 'Solo Catalogo Generale',
|
||||
key: 'isCatalogoGenerale',
|
||||
type: costanti.FieldType.boolean,
|
||||
value: this.isUtente() ? isCatalogoGenerale: this.getCookie(this.COOK_SEARCH + costanti.FILTER_SEP + shared_consts.TABLES_CATALOG + costanti.FILTER_SEP + 'isCatalogoGenerale', isCatalogoGenerale),
|
||||
keycookie: '',
|
||||
addall: true,
|
||||
arrvalue: [],
|
||||
filter: null,
|
||||
useinput: false,
|
||||
icon: 'fas fa-bookmark'
|
||||
},
|
||||
{
|
||||
visible: !this.isUtente(),
|
||||
label: 'Dettagli',
|
||||
table: shared_consts.TABLES_CATALOG,
|
||||
key: 'dettagli',
|
||||
notinsearch: true, // non usarlo nella ricerca filtro
|
||||
type: costanti.FieldType.boolean,
|
||||
value: this.isUtente() ? false: this.getCookie(this.COOK_SEARCH + costanti.FILTER_SEP + shared_consts.TABLES_CATALOG + costanti.FILTER_SEP + 'dettagli', true),
|
||||
keycookie: '',
|
||||
addall: true,
|
||||
arrvalue: [],
|
||||
filter: null,
|
||||
useinput: false,
|
||||
icon: 'fas fa-info-circle'
|
||||
},
|
||||
]
|
||||
|
||||
console.log('getsearchList_Cataloghi', lista)
|
||||
|
||||
Reference in New Issue
Block a user