- i filtri non venivano correttamente salvati sui cookies (compariva null e -100)

- aggiunte tabelle accounts e circuits
This commit is contained in:
Paolo Arena
2022-05-08 00:09:38 +02:00
parent 11acac03e5
commit b1fa4c4e2d
19 changed files with 350 additions and 65 deletions

View File

@@ -847,6 +847,7 @@ export interface IMyHosp {
typeHosp: number
numMaxPeopleHosp: number
accomodation: IAccomodation[]
photos: IGallery[]
preferences: number[]
idContribType: string[]
idCity: number[]
@@ -858,3 +859,32 @@ export interface IMyHosp {
}
export interface ICircuit {
_id: number
name: string
subname: string
descr: string
systemUserDescr: string
systemUserId: string
founderUserId: string
totCircolante?: number
totTransato?: number
nome_valuta: string
symbol: string
abbrev: string
compara_valuta?: number
compara_euro?: number
valuta_per_euro?: number
fido_scoperto_default?: number
data_costituz?: Date
deperimento: boolean
freq_deper?: string
minuto_deper?: string
ora_deper?: string
giorno_deper?: string
mese_deper?: string
ultimo_deper?: Date
durata_deper?: number
img_logo?: string
}