zgo/src/app/order/order.model.ts
Rene Vergara 172ebb0171 Implemented basic order service
Implemented adding the component to the viewer and the search in
database.

Fixed bug in search of item list
2021-10-25 15:01:06 -05:00

13 lines
177 B
TypeScript

export interface Order {
_id?: string,
address: string,
session: string,
timestamp: string,
closed: boolean,
lines: [{
qty: number,
item: string,
cost: number
}]
}