PASSAGGIO A VITE !
AGG. 1.1.23
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { IEvents } from '@src/model/Calendar'
|
||||
import type { IEvents } from '@src/model/Calendar'
|
||||
|
||||
export interface IBookingState {
|
||||
bookinglist: IEvents[]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IInternalPage, IMyPage, IOperators } from '@src/model/GlobalStore'
|
||||
import type { IInternalPage, IMyPage, IOperators } from '@src/model/GlobalStore'
|
||||
|
||||
export interface IEvents {
|
||||
_id?: any
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { IImg } from "./GlobalStore"
|
||||
import { ICollana } from "./Products"
|
||||
import type { IImg } from "./GlobalStore"
|
||||
import type { ICollana } from "./Products"
|
||||
|
||||
|
||||
export interface ICatalog {
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
import { IAction } from '@src/model/Projects'
|
||||
import { IFriends, IGroupShort, IMyGroup, IPaymentType } from '@src/model/UserStore'
|
||||
import {
|
||||
IDepartment, IQueryAI, IProducer, IShareWithUs, IStorehouse, IProductInfo, IProvider, IScontistica, ICategory, IGasordine, ICatProd, ISubCatProd, ICatAI,
|
||||
import type { IAction } from '@src/model/Projects'
|
||||
import type { IFriends, IGroupShort, IMyGroup, IPaymentType } from '@src/model/UserStore'
|
||||
import type {
|
||||
IDepartment, IQueryAI, IProducer, IShareWithUs, IStorehouse, IProvider, IScontistica, ICategory, IGasordine, ICatProd, ISubCatProd, ICatAI,
|
||||
IProduct
|
||||
} from '@src/model/Products';
|
||||
import {
|
||||
IProductInfo
|
||||
} from '@src/model/Products'
|
||||
|
||||
import { IUserFields, IUserProfile } from '@src/model/UserStore'
|
||||
import type { IUserFields, IUserProfile } from '@src/model/UserStore'
|
||||
|
||||
export interface IPost {
|
||||
title: string
|
||||
@@ -172,8 +175,8 @@ export interface IMyElem {
|
||||
listcards?: IMyCard[]
|
||||
catalogo?: IOptCatalogo
|
||||
elemsText?: IElemText[]
|
||||
titleBanner: string
|
||||
classBanner: string
|
||||
titleBanner?: string
|
||||
classBanner?: string
|
||||
}
|
||||
|
||||
export interface IElemText {
|
||||
@@ -225,7 +228,7 @@ export interface IMyPage {
|
||||
loadFirst?: boolean
|
||||
showFooter?: boolean
|
||||
mainMenu?: boolean
|
||||
sottoMenu?: String[]
|
||||
sottoMenu?: string[]
|
||||
|
||||
//Memory
|
||||
loaded?: boolean
|
||||
@@ -366,6 +369,7 @@ export interface INewsToSent {
|
||||
_id: string
|
||||
idapp?: string
|
||||
label?: string
|
||||
activate?: boolean
|
||||
templemail_str?: string
|
||||
numemail_tot?: number
|
||||
numemail_sent?: number
|
||||
@@ -476,7 +480,7 @@ export interface IGlobalState {
|
||||
testp1: ITestp1
|
||||
connData: IConnData
|
||||
posts: IPost[]
|
||||
menulinks: {}
|
||||
menulinks: object,
|
||||
listatodo: IMenuList[]
|
||||
arrConfig: IConfig[]
|
||||
lastaction: IAction
|
||||
@@ -591,7 +595,7 @@ export interface IListRoutes {
|
||||
urlroute?: string
|
||||
img?: string
|
||||
mainMenu?: boolean
|
||||
sottoMenu?: String[]
|
||||
sottoMenu?: string[]
|
||||
// ------------------------
|
||||
faIcon?: string
|
||||
text?: string
|
||||
@@ -756,13 +760,13 @@ export interface IDimensioni {
|
||||
|
||||
export interface IAreaDiStampa {
|
||||
margini?: IBorder
|
||||
unit: string
|
||||
format: number[]
|
||||
orientation: string
|
||||
compress: boolean
|
||||
scale: number
|
||||
scale_printable: number
|
||||
scalecanvas: number
|
||||
unit?: string
|
||||
format?: number[]
|
||||
orientation?: string
|
||||
compress?: boolean
|
||||
scale?: number
|
||||
scale_printable?: number
|
||||
scalecanvas?: number
|
||||
}
|
||||
|
||||
export interface IElementiPagina {
|
||||
@@ -779,8 +783,8 @@ export interface IText {
|
||||
export interface IElementiScheda {
|
||||
pagina: IPagina
|
||||
riga: IDimensioni
|
||||
scheda_prodotto: IDimensioni
|
||||
immagine_prodotto: IDimensioni
|
||||
scheda_prodotto: IDimensioni
|
||||
immagine_prodotto: IDimensioni
|
||||
}
|
||||
|
||||
export interface IMyScheda {
|
||||
@@ -817,7 +821,7 @@ export interface ISchedaSingola {
|
||||
scheda?: IMyScheda,
|
||||
order?: number,
|
||||
numPagineMax?: number,
|
||||
|
||||
|
||||
// In Memoria
|
||||
idPageOrig?: string
|
||||
arrProdToShow?: IProduct[][][]
|
||||
@@ -1389,6 +1393,7 @@ export interface ICircuit {
|
||||
admins?: IFriends[]
|
||||
createdBy?: string
|
||||
regulation?: string
|
||||
note?: string
|
||||
numMembers?: number
|
||||
req_users?: IFriends[]
|
||||
refused_users?: IFriends[]
|
||||
@@ -1575,4 +1580,16 @@ export interface IAttivita {
|
||||
date_updated?: Date
|
||||
|
||||
createdBy?: string // Username del creatore (proponente)
|
||||
}
|
||||
}
|
||||
|
||||
export interface IOptQueryGM {
|
||||
nameTable: string
|
||||
campispeciali?: boolean
|
||||
query?: string
|
||||
numrec?: number
|
||||
where?: string
|
||||
fieldGM?: string
|
||||
outhtml: boolean
|
||||
showQtaDisponibile?: boolean
|
||||
cmd?: number
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { EState } from './Calendar'
|
||||
import type { EState } from './Calendar'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
|
||||
export interface IMessagePage {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IUserFields, IUserShort } from './UserStore'
|
||||
import type { IUserFields, IUserShort } from './UserStore'
|
||||
|
||||
|
||||
export interface IProductInfo {
|
||||
@@ -41,11 +41,11 @@ export interface IProductInfo {
|
||||
ListaArgomenti?: string
|
||||
publisher?: IPublisher
|
||||
date_pub?: Date
|
||||
date_pub_ts: number
|
||||
date_pub_ts?: number
|
||||
pagine?: number
|
||||
productTypes?: number[]
|
||||
versioneGM?: string
|
||||
short_descr: string
|
||||
short_descr?: string
|
||||
|
||||
totVen?: number,
|
||||
totFat?: number,
|
||||
@@ -69,7 +69,7 @@ export interface IVariazione {
|
||||
_id?: string
|
||||
active?: boolean
|
||||
versione?: number
|
||||
status?: string,
|
||||
status?: string,
|
||||
price?: number
|
||||
sale_price?: number
|
||||
quantita?: number
|
||||
@@ -122,7 +122,7 @@ export interface IProduct {
|
||||
QuantitaPrenotateInAttesa?: number,
|
||||
note?: string
|
||||
arrvariazioni?: IVariazione[]
|
||||
|
||||
|
||||
stockQty: number, // UPDATING
|
||||
stockBloccatiQty: number, // UPDATING
|
||||
bookedQtyOrdered: number // UPDATING
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { IToken } from '@model/other'
|
||||
import { ICart, IOrderCart, IShareWithUs } from '@src/model/Products'
|
||||
import { IAccount, ICircuit, IGallery, IImgGallery, IMovement, IMyCircuit } from '@model/GlobalStore'
|
||||
import { IBookedEvent } from './Calendar'
|
||||
import type { IToken } from '@model/other'
|
||||
import type { ICart, IOrderCart, IShareWithUs } from '@src/model/Products'
|
||||
import type { IAccount, ICatGrp, ICircuit, IImgGallery, IMovement, IMyCircuit } from '@model/GlobalStore';
|
||||
import { IGallery } from '@model/GlobalStore'
|
||||
import type { IBookedEvent } from './Calendar'
|
||||
|
||||
const enum ESexType {
|
||||
None = 0,
|
||||
@@ -37,6 +38,7 @@ export interface IMyGroup {
|
||||
req_users?: IFriends[]
|
||||
blocked?: boolean
|
||||
website?: string
|
||||
note?: string
|
||||
link_telegram?: string
|
||||
username_who_block?: string
|
||||
date_blocked?: Date
|
||||
@@ -45,11 +47,12 @@ export interface IMyGroup {
|
||||
|
||||
lastdate_reqRisGroup?: Date
|
||||
account?: IAccount
|
||||
recCatGrp?: ICatGrp
|
||||
}
|
||||
|
||||
export interface ICalcStat {
|
||||
numUsersReg: number
|
||||
numByTab: {}
|
||||
numByTab: object
|
||||
}
|
||||
|
||||
export interface IUserNotifType {
|
||||
@@ -106,6 +109,8 @@ export interface IUserProfile {
|
||||
link_payment?: string
|
||||
note_payment?: string
|
||||
username_telegram?: string
|
||||
firstname_telegram?: string
|
||||
lastname_telegram?: string
|
||||
website?: string
|
||||
teleg_id?: number
|
||||
teleg_id_old?: number
|
||||
@@ -117,7 +122,7 @@ export interface IUserProfile {
|
||||
workerslist?: any
|
||||
dateofbirth?: Date | null
|
||||
born_city_id?: number
|
||||
born_city_str?: string
|
||||
born_city?: string
|
||||
born_province?: string
|
||||
resid_prov_id?: number
|
||||
resid_province: string
|
||||
@@ -127,6 +132,7 @@ export interface IUserProfile {
|
||||
saw_and_accepted?: boolean
|
||||
saw_zoom_presentation?: boolean
|
||||
ask_zoom_partecipato?: boolean
|
||||
qualifica?: string
|
||||
qualified?: boolean
|
||||
qualified_2invitati?: boolean
|
||||
special_req?: boolean
|
||||
@@ -164,6 +170,8 @@ export interface IUserProfile {
|
||||
// seen: ISeen[]
|
||||
// attend: IAttend[]
|
||||
|
||||
version?: number
|
||||
|
||||
// Query
|
||||
myreaction: IReaction[]
|
||||
mybookings: IBookedEvent[]
|
||||
@@ -288,5 +296,5 @@ export interface IUserState {
|
||||
lastparamquery?: any
|
||||
updateTables?: boolean
|
||||
|
||||
lista_editori?: IUserShort[]|null
|
||||
lista_editori?: IUserShort[] | null
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IUserState } from '@src/model/UserStore'
|
||||
import type { IUserState } from '@src/model/UserStore'
|
||||
|
||||
export interface SessionState {
|
||||
redirectUri: string | null,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IUserProfile } from '@src/model/UserStore'
|
||||
import type { IUserProfile } from '@src/model/UserStore'
|
||||
import { ILabelValue } from '@model/Calendar'
|
||||
import { IValue } from '@model/Calendar'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user