aggiornamento scontistica, corretto errori

This commit is contained in:
Surya Paolo
2023-12-16 18:40:24 +01:00
parent 38f4c73ab3
commit fa544bc30c
10 changed files with 68 additions and 13 deletions

View File

@@ -7,6 +7,8 @@ export interface IProduct {
idProducer?: string,
idProvider?: string,
idStorehouses?: string[],
idScontisticas?: string[],
scontisticas: IScontistica[],
producer?: IProducer,
storehouses: IStorehouse[],
provider?: IProvider,
@@ -45,6 +47,7 @@ export interface IOrder {
idProducer?: string
idProvider?: string
idStorehouse?: string
idScontisticas?: string[]
price?: number
after_price?: string
color?: string
@@ -55,6 +58,7 @@ export interface IOrder {
product?: IProduct
producer?: IProducer
storehouse?: IStorehouse
scontisticas?: IScontistica[]
provider?: IProvider
date_created?: Date
date_checkout?: Date