add new field to product

This commit is contained in:
2026-06-28 09:44:09 +03:30
parent 4584a0adf6
commit 9b24061b92
10 changed files with 98 additions and 12 deletions
@@ -0,0 +1,5 @@
export enum OrderItemStatus {
normal = 'normal',
needConfirmation = 'needConfirmation',
confirmed = 'confirmed'
}