Circuits...

Circuits Fido e Max Qta
Fixed error eslint: 7.0.0 is OK
This commit is contained in:
Paolo Arena
2022-09-11 11:45:13 +02:00
parent 0332059c8f
commit d28050e71f
35 changed files with 1862 additions and 1435 deletions

View File

@@ -261,6 +261,7 @@ export interface IGlobalState {
menuCollapse: boolean
leftDrawerOpen: boolean
rightDrawerOpen: boolean
rightNotifOpen: boolean
rightCartOpen: boolean
category: string
stateConnection: string
@@ -565,6 +566,7 @@ export interface IColGridTable {
align?: string
field?: string
sortable?: boolean
visulabel?: boolean
disable?: boolean
titlepopupedit?: string
visible?: boolean
@@ -889,12 +891,12 @@ export interface IMyHosp extends IMyMain {
}
export interface ICircuitList {
Num: number,
_id: string,
inscription_date?: Date
}
export interface IMyCircuit {
_id: number
_id: string
circuitname: string
date: Date
}
@@ -908,7 +910,7 @@ export interface ISendCoin {
}
export interface ICircuit {
Num: number
_id: number
groupnameId: string
name: string
path: string
@@ -925,6 +927,7 @@ export interface ICircuit {
compara_euro?: number
valuta_per_euro?: number
fido_scoperto_default?: number
qta_max_default?: number
data_costituz?: Date
deperimento: boolean
freq_deper?: string
@@ -934,19 +937,43 @@ export interface ICircuit {
mese_deper?: string
ultimo_deper?: Date
durata_deper?: number
img_logo?: string
photos?: IImgGallery[]
date_created?: Date
date_updated?: Date
admins?: IFriends[]
createdBy?: string
// --- Mem:
movements: IMovement[]
}
export interface IMovement {
transactionDate: Date
accountFromId: string
accountToId: string
amount: number
causal: string
residual: number
expiringDate: Date
}
export interface IMovVisu {
transactionDate: Date
userfrom: IUserFields
userto: IUserFields
amount: number
causal: string
residual: number
expiringDate: Date
}
export interface IAccount {
username: string
circuitId: number
circuit: ICircuit
circuit: ICircuit[]
name: string
deperibile?: boolean
fidoConcesso?: number
qta_maxConcessa?: number
importo_iniziale?: number
saldo?: number
}