- Cataloghi: pagine, schede, formato

This commit is contained in:
Surya Paolo
2024-11-19 19:19:14 +01:00
parent 90ed545070
commit 5cd9bd40f6
103 changed files with 3593115 additions and 1603 deletions

View File

@@ -688,6 +688,10 @@ export interface ISize {
width?: string
height?: string
}
export interface IFont {
name?: string
size?: number
}
export interface IBorder {
top?: string
@@ -695,15 +699,33 @@ export interface IBorder {
left?: string
right?: string
}
export interface IImg {
imagefile?: string
fit?: string
}
export interface IBarCode {
show?: boolean
format?: string
size?: ISize
font?: IFont
}
export interface IDimensioni {
size?: ISize
margini?: IBorder
padding?: IBorder
imgsfondo?: IImg
}
export interface IElementiPagina {
pagina: IDimensioni
riga: IDimensioni
}
export interface IText {
contenuto?: string
maxlength?: number
}
export interface IElementiScheda {
@@ -721,16 +743,12 @@ export interface IMyScheda {
line_height?: number
numschede_perRiga?: number
numschede_perCol?: number
text?: string
testo_right?: IText
testo_bottom?: IText
posiz_text?: number
barcode?: IBarCode,
dimensioni: IElementiScheda
bgimg?: string
bgimg_printable?: string
bgSize?: string
bgSize_printable?: string
productTypes?: number[]
excludeproductTypes?: number[]
editore?: string[]
@@ -747,7 +765,7 @@ export interface ISchedaSingola {
numSchede?: number,
// In Memoria
arrProdToShow?: IProduct[][]
arrProdToShow?: IProduct[][][]
}
export interface ICatalogo {
@@ -758,15 +776,9 @@ export interface ICatalogo {
Categoria: string[]
Editore: string[]
pdf: boolean
pdf_filename?: string
printable?: boolean
dimensioni: IElementiPagina,
backgroundimage?: string
backgroundimage_printable?: string
backgroundSize?: string
backgroundSize_printable?: string
first_page_img?: string
first_page_html?: string
first_page_height?: number
@@ -776,6 +788,9 @@ export interface ICatalogo {
last_page_height?: number
last_page_width?: number
imgsfondo_def?: IImg
dimensioni_def?: IElementiPagina
arrSchede?: ISchedaSingola[]
}