Gestione Ordini: evaso...

This commit is contained in:
Surya Paolo
2023-12-13 19:18:00 +01:00
parent 98b4c76394
commit 9ea7bae025
13 changed files with 293 additions and 197 deletions

View File

@@ -15,6 +15,7 @@ export interface IProduct {
color?: string,
size?: string,
quantityAvailable: number,
tempTotalQty: number,
stockQty: number,
canBeShipped?: boolean,
canBeBuyOnline?: boolean,
@@ -116,17 +117,25 @@ export interface ICart {
export interface IOrderCart {
_id?: any
idapp?: string
numorder?: number
userId?: string
totalQty?: number
totalPrice?: number
numorder: number
userId: string
totalQty: number
totalPrice: number
department?: string
items?: IBaseOrder[]
nameSurname?: string
status?: number
status: number
note?: string
modify_at?: Date
completed_at?: Date
evaso: boolean
date_evaso?: Date
consegnato: boolean
date_consegnato?: Date
pagato: boolean
date_pagato?: Date
spedito: boolean
date_spedito?: Date
}
export interface IShareWithUs {