- Statistiche

- Menu e Sottomenu
- Lista ultimi Movimenti
This commit is contained in:
Surya Paolo
2024-09-26 02:14:50 +02:00
parent 4ac0acc2f3
commit 4c9e5ae991
101 changed files with 2215 additions and 9516 deletions

View File

@@ -20,6 +20,7 @@ export interface INotData {
num_reg?: number
num_reg_today?: number
online_today?: number
activeusers?: number
num_passeggeri?: number
num_imbarcati?: number
email_non_verif?: number
@@ -41,9 +42,13 @@ export interface INotData {
checkuser?: any // ICheckUser
numreg_untilday?: number
reg_daily?: string
imbarcati_daily?: string
imbarcati_weekly?: string
reg_weekly?: string
num_transaz_tot?: number
tot_RIS_transati?: number
num_circuiti?: number
num_circuiti_attivi?: number
num_annunci?: number
last_transactions?: IMovement[]
}
@@ -160,6 +165,8 @@ export interface IMyElem {
listcards?: IMyCard[]
catalogo?: ICatalogo
elemsText?: IElemText[]
titleBanner: string
classBanner: string
}
export interface IElemText {
@@ -210,6 +217,8 @@ export interface IMyPage {
extraclass?: string
loadFirst?: boolean
showFooter?: boolean
mainMenu?: boolean
sottoMenu?: String[]
//Memory
loaded?: boolean
@@ -563,6 +572,8 @@ export interface IListRoutes {
idelem?: string
urlroute?: string
img?: string
mainMenu?: boolean
sottoMenu?: String[]
// ------------------------
faIcon?: string
text?: string
@@ -657,6 +668,7 @@ export interface IMyCard {
color?: string
content?: string
colorsub?: string
link?: string
}
export interface ICatalogo {
@@ -1201,6 +1213,56 @@ export interface ICircuit {
account?: IAccount | null
}
export interface IMovUserProfile {
img: string
}
export interface IMovUserQuery {
verified_by_aportador: boolean
username: string
profile: IMovUserProfile
}
export interface IMovGroupQuery {
verified_by_aportador: boolean
groupname: string
title: string
photos: string
}
export interface IMovContoComQuery {
path: string
name: string
}
export interface IMovCircuitQuery {
name: string
symbol: string
}
export interface IMovQuery {
tipocontofrom: number
tipocontoto: number
userfrom: IMovUserQuery
userto: IMovUserQuery
groupfrom: IMovGroupQuery
groupto: IMovGroupQuery
contocomfrom: IMovContoComQuery
contocomto: IMovContoComQuery
circuitfrom: IMovCircuitQuery
transactionDate: Date
amount: number
causal: string
notifId: string
}
export interface IMovement {
_id: string
transactionDate: Date
@@ -1226,6 +1288,18 @@ export interface IMovVisu {
expiringDate: Date
}
export interface ITransaction {
_id: string
transacDate: Date
mitt_username: string
mitt_group: string
dest_username: string
dest_group: string
circuito: string
amount: number
causale: string
}
export interface IAccount {
_id: string
username: string