Export Movements to CSV File

fix Visibility for a Circuit
This commit is contained in:
Paolo Arena
2022-09-19 14:37:44 +02:00
parent ce79360d03
commit c75b78ea98
21 changed files with 122 additions and 37 deletions

View File

@@ -122,6 +122,7 @@
:vertical="0"
nodataLabel="Nessun Movimento effettuato"
:prop_search="true"
:enableExport="true"
hint="nota da trovare"
:finder="false"
:choose_visutype="false"
@@ -152,6 +153,7 @@
col_title="Lista Movimenti"
:vertical="costanti.VISUTABLE_LISTA"
nodataLabel="Nessun Movimento effettuato"
:enableExport="true"
:prop_search="true"
hint="nota da trovare"
:finder="false"
@@ -487,7 +489,18 @@
class="bg-green text-white"
style="text-align: center;"
>
<em style="font-weight: bold">Regolamento:</em><br>
<em style="font-weight: bold">Disclaimer:</em><br>
</q-banner>
<div v-html="t('circuit.disclaimer')">
</div>
</q-card-section>
<q-card-section class="inset-shadow">
<q-banner
rounded
class="bg-green text-white"
style="text-align: center;"
>
<em style="font-weight: bold">Regolamento interno:</em><br>
</q-banner>
<div v-html="circuit.regulation">
</div>

View File

@@ -49,6 +49,7 @@ export default defineComponent({
colmyUserCircuit,
toolsext,
isfinishLoading,
tools,
}
}
})

View File

@@ -8,14 +8,12 @@
<CFinder
:table="toolsext.TABCIRCUITS"
:noButtAdd="!tools.isManager()"
:showFilterPersonal="true"
/>
</CMyCircuits>
<div v-if="filter === costanti.CREATE_CIRCUIT">
Nuovo Circuito:
</div>
</div>
</template>