balls
This commit is contained in:
@@ -4,6 +4,11 @@ export interface Product {
|
||||
description: string;
|
||||
unitType: string;
|
||||
category: string;
|
||||
// Stock management fields
|
||||
stockTracking?: boolean;
|
||||
currentStock?: number;
|
||||
lowStockThreshold?: number;
|
||||
stockStatus?: 'in_stock' | 'low_stock' | 'out_of_stock';
|
||||
pricing: Array<{
|
||||
minQuantity: number;
|
||||
pricePerUnit: number;
|
||||
|
||||
Reference in New Issue
Block a user