- corretto saldi pendenti sulla lista circuiti e anche il calcolo

This commit is contained in:
Surya Paolo
2024-02-17 15:07:29 +01:00
parent c57132c468
commit 7068e457dc
9 changed files with 29 additions and 7 deletions

View File

@@ -66,6 +66,7 @@ export default defineComponent({
const account = computed(() => circuit.value ? userStore.getAccountByCircuitId(circuit.value._id) : null )
const qtarem = computed(() => account.value ? circuitStore.getRemainingCoinsToSend(account.value) : 0)
const saldo_pend = computed(() => account.value ? account.value.saldo_pend : 0)
const saldo = computed(() => account.value ? account.value.saldo : 0)
const table = ref(toolsext.TABCIRCUITS)
@@ -151,6 +152,7 @@ export default defineComponent({
account,
qtarem,
saldo,
saldo_pend,
globalStore,
showingtooltip,
showrules,