Send Coins

This commit is contained in:
Paolo Arena
2022-09-12 18:36:54 +02:00
parent d28050e71f
commit f59691985a
28 changed files with 507 additions and 95 deletions

View File

@@ -602,6 +602,7 @@ export interface IColGridTable {
subfield_extra1?: string
allowNewValue?: boolean
showpicprofile_ifnotset?: boolean
extrafield?: string
}
export interface ITableRec {
@@ -922,6 +923,7 @@ export interface ICircuit {
totTransato?: number
nome_valuta: string
symbol: string
color: string
abbrev: string
compara_valuta?: number
compara_euro?: number
@@ -960,6 +962,8 @@ export interface IMovVisu {
transactionDate: Date
userfrom: IUserFields
userto: IUserFields
circuitfrom: ICircuit
circuitto: ICircuit
amount: number
causal: string
residual: number
@@ -971,9 +975,9 @@ export interface IAccount {
circuitId: number
circuit: ICircuit[]
name: string
deperibile?: boolean
fidoConcesso?: number
qta_maxConcessa?: number
deperibile: boolean
fidoConcesso: number
qta_maxConcessa: number
importo_iniziale?: number
saldo?: number
saldo: number
}