- Invia e Ricevi RIS (grafica aggiornata)

- Visualizzazione Movimenti (ultimi e successivi), per singolo e di tutti
This commit is contained in:
Surya Paolo
2024-10-11 02:29:29 +02:00
parent f9277f3a01
commit ec356c70d9
123 changed files with 3595218 additions and 638 deletions

View File

@@ -2258,6 +2258,19 @@ export const useGlobalStore = defineStore('GlobalStore', {
})
},
async loadLastMovements(nummov: number) {
return Api.SendReq('/users/lastmovs', 'POST', {nummov})
.then((res) => {
if (res.data && res.data.last_transactions && this.datastat) {
this.datastat.last_transactions = res.data.last_transactions
}
}).catch((error) => {
return {}
})
},
}