Gestione Ordini: evaso...
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user