- aggiornato scheda e rigenera lista

- corretto filtro sulla Collana
This commit is contained in:
Surya Paolo
2025-04-29 02:30:00 +02:00
parent ec19bc3b87
commit 493ebf51f3
24 changed files with 1219 additions and 888 deletions

View File

@@ -8,7 +8,7 @@ export interface ICatalog {
active?: boolean
title: string
foto_collana?: IImg,
idCollane?: number[]
idCollane?: string[]
argomenti?: string[]
editore?: string[]
collana_info?: ICollana

View File

@@ -811,7 +811,7 @@ export interface IMyScheda {
idTipologie?: number[]
editore?: string[]
argomenti?: string[]
idCollane?: number[]
idCollane?: string[]
author?: string
sort_field?: string
sort_dir?: number
@@ -860,7 +860,7 @@ export interface IOptCatalogo {
Categoria?: string[]
editore?: string[]
argomenti?: string[]
idCollane?: number[]
idCollane?: string[]
sort_field?: string
sort_dir?: number
pdf?: boolean

View File

@@ -38,9 +38,8 @@ export interface IProductInfo {
note?: string
idAuthors?: string[]
authors?: string[]
idCollana?: number
idCollana?: string
collana?: ICollana
collezione?: string
idPublisher?: string
ListaArgomenti?: string
publisher?: IPublisher
@@ -83,7 +82,6 @@ export interface IVariazione {
availability?: number
formato?: string
misure?: string
edizione?: string
ristampa?: string
pagine?: number
tipologia?: string
@@ -200,6 +198,7 @@ export interface IProductsState {
isPubblicatoById?: (idStatoProdotto: number) => boolean;
isProssimaUscitaById?: (idStatoProdotto: number) => boolean;
isPrevenditaById?: (idStatoProdotto: number) => boolean;
isNovitaById?: (date_pub: Date) => boolean;
}
export interface IProducer {