Add ML, fix product stock data

This commit is contained in:
NotII
2025-06-09 22:06:33 +01:00
parent bc8eda5eb8
commit b77f0d007d
2 changed files with 11 additions and 2 deletions

View File

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