- fix RIS in pendenti, se troppi msg, non compariva piu

- cataloghi, ricerca pickup
This commit is contained in:
Surya Paolo
2024-05-09 23:36:58 +02:00
parent 58f53f8c52
commit faf0fabfb0
68 changed files with 1776 additions and 188 deletions

View File

@@ -58,6 +58,14 @@ export interface IVariazione {
eta?: string
}
export interface IAuthor {
_id?: any
name?: string
surname?: string
bio?: string
img?: string
}
export interface IProduct {
_id?: any
active?: boolean
@@ -133,6 +141,7 @@ export interface IOrder {
export interface IProductsState {
products: IProduct[]
authors: IAuthor[]
cart: ICart
orders: IOrderCart[]
catprods: ICatProd[]