- Statistiche

- Menu e Sottomenu
- Lista ultimi Movimenti
This commit is contained in:
Surya Paolo
2024-09-26 02:14:50 +02:00
parent 4ac0acc2f3
commit 4c9e5ae991
101 changed files with 2215 additions and 9516 deletions

View File

@@ -34,7 +34,7 @@ export default defineComponent({
const usersList = ref(<any>{ show: false, title: '', list: [], listgroup: [] })
const tipoConto = ref(costanti.AccountType.USER)
const tipoConto = ref(shared_consts.AccountType.USER)
const loading = ref(false)
const circuitpath = computed(() => {
const circ = circuitStore.getCircuitByProvinceAndCard(userStore.my.profile.resid_province, userStore.my.profile.resid_card)
@@ -46,11 +46,11 @@ export default defineComponent({
const arrTypesAccounts = ref(<any>[
{
label: t('circuit.user'),
value: costanti.AccountType.USER,
value: shared_consts.AccountType.USER,
},
{
label: t('circuit.conticollettivi'),
value: costanti.AccountType.COLLECTIVE_ACCOUNT,
value: shared_consts.AccountType.COLLECTIVE_ACCOUNT,
}
])

View File

@@ -75,7 +75,7 @@
:options="arrTypesAccounts"
/>
<div v-if="tipoConto === costanti.AccountType.USER">
<div v-if="tipoConto === shared_consts.AccountType.USER">
<div v-for="(rec, i) in usersList.list" :key="i">
<CMyUser
:mycontact="rec"
@@ -86,7 +86,9 @@
</div>
</div>
<div
v-else-if="tipoConto === costanti.AccountType.COLLECTIVE_ACCOUNT"
v-else-if="
tipoConto === shared_consts.AccountType.COLLECTIVE_ACCOUNT
"
>
<div v-for="(grp, i) in usersList.listgroup" :key="i">
<CMyGroup :mygrp="grp" :visu="costanti.USER_GROUPS" :noaut="true">