ver 1.1.20:
- corretto campo foto che non compariva più. - sistemato i campi aggiuntivi e i richiesti. - migliorato la barra in alto di selezione. - aggiunto alcune icone.
This commit is contained in:
36
src/model/CatalogStore.ts
Executable file
36
src/model/CatalogStore.ts
Executable file
@@ -0,0 +1,36 @@
|
||||
|
||||
export interface FotoCatalogo {
|
||||
imagefile: string
|
||||
alt: string
|
||||
description: string
|
||||
}
|
||||
|
||||
export interface FilesCataloghi {
|
||||
per_web: string
|
||||
per_stampa: string
|
||||
}
|
||||
|
||||
export interface ICatalog {
|
||||
idapp: string
|
||||
active?: boolean
|
||||
title: string
|
||||
foto_collana?: FotoCatalogo,
|
||||
idCollana?: string
|
||||
descr_introduttiva?: string
|
||||
idTemplateScheda?: string
|
||||
referenti?: string[]
|
||||
img_bordata_web?: FotoCatalogo,
|
||||
img_bordata_stampa?: FotoCatalogo,
|
||||
img_intro_web?: FotoCatalogo,
|
||||
img_intro_stampa?: FotoCatalogo,
|
||||
|
||||
generati?: FilesCataloghi,
|
||||
online?: FilesCataloghi,
|
||||
|
||||
date_created?: Date,
|
||||
date_updated?: Date,
|
||||
}
|
||||
|
||||
export interface ICatalogState {
|
||||
catalog?: ICatalog
|
||||
}
|
||||
@@ -167,7 +167,7 @@ export interface IMyElem {
|
||||
styleadd?: string
|
||||
list?: IImgGallery[]
|
||||
listcards?: IMyCard[]
|
||||
catalogo?: ICatalogo
|
||||
catalogo?: IOptCatalogo
|
||||
elemsText?: IElemText[]
|
||||
titleBanner: string
|
||||
classBanner: string
|
||||
@@ -818,7 +818,7 @@ export interface ISchedaSingola {
|
||||
arrProdToShow?: IProduct[][][]
|
||||
}
|
||||
|
||||
export interface ICatalogo {
|
||||
export interface IOptCatalogo {
|
||||
//++AddCATALOGO_FIELDS
|
||||
productTypes?: number[]
|
||||
excludeproductTypes?: number[]
|
||||
@@ -1029,6 +1029,12 @@ export interface ISearchList {
|
||||
visible: boolean
|
||||
}
|
||||
|
||||
export interface IOptGrid {
|
||||
rowclass?: boolean
|
||||
widthcard?: string
|
||||
heightcard?: string
|
||||
}
|
||||
|
||||
export interface IFilter {
|
||||
label: string
|
||||
value: string
|
||||
|
||||
@@ -35,7 +35,7 @@ export interface IProductInfo {
|
||||
idAuthors?: string[]
|
||||
authors?: string[]
|
||||
idCollana?: string
|
||||
collana?: string
|
||||
collana?: ICollana
|
||||
collezione?: string
|
||||
idPublisher?: string
|
||||
publisher?: IPublisher
|
||||
|
||||
@@ -12,3 +12,4 @@ export * from './Projects'
|
||||
export * from './Calendar'
|
||||
export * from './Estimate'
|
||||
export * from './Products'
|
||||
export * from './CatalogStore'
|
||||
|
||||
Reference in New Issue
Block a user