Add options

This commit is contained in:
NotII
2025-06-14 00:32:02 +01:00
parent 05ec33aa9d
commit 2df47e1052
2 changed files with 8 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ export interface Product {
currentStock?: number
lowStockThreshold?: number
stockStatus?: 'in_stock' | 'low_stock' | 'out_of_stock'
unitType: 'pcs' | 'gr' | 'kg' | 'ml'
unitType: 'pcs' | 'gr' | 'kg' | 'ml' | 'oz' | 'lb'
category: string
enabled?: boolean
pricing: PricingTier[]