Add Waste at Product Recipe

This commit is contained in:
efrilm
2025-09-13 04:08:49 +07:00
parent aa2946e627
commit fab31f1540
3 changed files with 70 additions and 27 deletions
+2
View File
@@ -42,6 +42,7 @@ export interface ProductRecipe {
variant_id: string | null
ingredient_id: string
quantity: number
waste: number
created_at: string
updated_at: string
product: Product
@@ -54,6 +55,7 @@ export interface ProductRecipeRequest {
ingredient_id: string
quantity: number
outlet_id: string | null
waste: number
}
export interface IngredientUnit {