20 lines
274 B
TypeScript
20 lines
274 B
TypeScript
export enum OrderStatusEnum {
|
|
DRAFT = 'draft',
|
|
|
|
INVOICED = 'invoiced',
|
|
|
|
IN_DESIGN = 'in_design',
|
|
IN_PRINTING = 'in_printing',
|
|
|
|
FINISHED = 'finished',
|
|
|
|
CANCELED = 'canceled',
|
|
|
|
}
|
|
|
|
|
|
export enum OrderItemStatus {
|
|
PENDING = 'pending',
|
|
CONFIRMED = 'confirmed',
|
|
}
|