- Invia Ris a e Ricevi Ris

- Tutorial Guidato Passi da Compiere
- Provincia in cui vivi
- Policy aggiornata
This commit is contained in:
Surya Paolo
2023-03-11 01:01:23 +01:00
parent 7a9689125b
commit 80610b3627
61 changed files with 2308 additions and 925 deletions

View File

@@ -144,6 +144,10 @@ export default defineComponent({
return { sortBy: 'dateTimeStart', descending: false, page: 1, rowsNumber: 20, rowsPerPage: 20 }
else if (props.table === toolsext.TABMOVEMENTS)
return { sortBy: 'transactionDate', descending: true, page: 1, rowsNumber: 20, rowsPerPage: 20 }
else if (props.table === toolsext.TABCIRCUITS)
return { sortBy: 'numMembers', descending: true, page: 1, rowsNumber: 20, rowsPerPage: 20 }
else if (props.table === toolsext.TABUSER)
return userStore.getMypaginationMembers()
return { sortBy: 'date_created', descending: true, page: 1, rowsNumber: 20, rowsPerPage: 20 }
})
@@ -197,15 +201,15 @@ export default defineComponent({
const visuType = computed(() => {
if (props.table === toolsext.TABMYGOODS)
return $q.screen.gt.xs
return false
else if (props.table === toolsext.TABMYSKILLS)
return $q.screen.gt.xs
return false
else if (props.table === toolsext.TABMYGROUPS)
return $q.screen.gt.xs
return false
else if (props.table === toolsext.TABMYBACHECAS)
return $q.screen.gt.xs
return false
return $q.screen.gt.xs
return false // $q.screen.gt.xs
})
const noMsgRecord = computed(() => {
@@ -1100,6 +1104,7 @@ export default defineComponent({
groupnameId: 1,
path: 1,
name: 1,
strProv: 1,
subname: 1,
longdescr: 1,
regulation: 1,
@@ -1391,6 +1396,14 @@ export default defineComponent({
}
}
function mySortFieldsAvailable() {
if (props.table === toolsext.TABUSER) {
return userStore.getSortFieldsAvailable()
}
return []
}
function getdefaultnewrec(): any {
if (props.table === toolsext.TABMYSKILLS) {
return tools.getdefaultnewrec_MySkill()
@@ -1440,6 +1453,7 @@ export default defineComponent({
hint,
strextra,
myoptions,
mySortFieldsAvailable,
}
},
})