- Generazione della Raccolta dei Cataloghi (web e Stampa), e creazione del PDF Online.
- Lista Raccolta Cataloghi, aggiungi/togli catalogo.
This commit is contained in:
@@ -94,6 +94,7 @@ export default defineComponent({
|
||||
const searchList_Hosp = ref(<ISearchList[]>[])
|
||||
const searchList_Attivita = ref(<ISearchList[]>[])
|
||||
const searchList_Cataloghi = ref(<ISearchList[]>[])
|
||||
const searchList_RaccoltaCataloghi = ref(<ISearchList[]>[])
|
||||
|
||||
const search = ref('')
|
||||
const myrecfiltertoggle = ref(tools.FILTER_ALL)
|
||||
@@ -105,7 +106,7 @@ export default defineComponent({
|
||||
|
||||
|
||||
function gettablesList() {
|
||||
if (props.table === 'catalogs')
|
||||
if (props.table === 'catalogs' || props.table === 'raccoltarataloghis')
|
||||
return func.gettablesListByTable(props.table)
|
||||
}
|
||||
|
||||
@@ -183,6 +184,8 @@ export default defineComponent({
|
||||
return { sortBy: 'numMembers', descending: true, page: 1, rowsNumber: 0, rowsPerPage: 20 }
|
||||
else if (props.table === shared_consts.TABLES_CATALOG)
|
||||
return { sortBy: 'title', descending: false, page: 1, rowsNumber: 0, rowsPerPage: 25 }
|
||||
else if (props.table === shared_consts.TABLES_RACCOLTACATALOGHIS)
|
||||
return { sortBy: 'title', descending: false, page: 1, rowsNumber: 0, rowsPerPage: 25 }
|
||||
else if (props.table === toolsext.TABUSER)
|
||||
return userStore.getMypaginationMembers()
|
||||
else if (shared_consts.TABLES_ORDER_DATE_UPDATED.includes(props.table))
|
||||
@@ -210,6 +213,8 @@ export default defineComponent({
|
||||
return searchList_Attivita.value
|
||||
else if (props.table === shared_consts.TABLES_CATALOG)
|
||||
return searchList_Cataloghi.value
|
||||
else if (props.table === shared_consts.TABLES_RACCOLTACATALOGHIS)
|
||||
return searchList_RaccoltaCataloghi.value
|
||||
|
||||
return []
|
||||
})
|
||||
@@ -656,6 +661,7 @@ export default defineComponent({
|
||||
]
|
||||
|
||||
searchList_Cataloghi.value = tools.getsearchList_Cataloghi(props.isCatalogoGenerale)
|
||||
searchList_RaccoltaCataloghi.value = tools.getsearchList_RaccoltaCataloghi()
|
||||
|
||||
searchList_Hosp.value = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user