- preordinabili corretti + altro

This commit is contained in:
Surya Paolo
2023-12-29 21:17:25 +01:00
parent c0998753c2
commit 632d05bbfb
13 changed files with 192 additions and 67 deletions

View File

@@ -41,10 +41,12 @@ export interface IProduct {
QuantitaOrdinateInAttesa?: number,
QuantitaPrenotateInAttesa?: number,
stockQty: number,
stockBloccatiQty: number,
minBuyQty: number,
minStepQty?: number,
minStepQty: number,
maxBookableQty: number,
bookableQty: number,
bookableBloccatiQty: number,
canBeShipped?: boolean,
canBeBuyOnline?: boolean,
}
@@ -135,6 +137,7 @@ export interface IStorehouse {
email_html_footer?: string,
email_html_makeorder?: string,
email_html_order_confirmed?: string,
email_html_order_consegnato?: string,
}
export interface IProvider {
@@ -211,8 +214,6 @@ export interface IOrderCart {
date_spedito?: Date
ricevuto: boolean
date_ricevuto?: Date
completato: boolean
date_completato?: Date
created_at: Date
note: string
}