Recipe Management

Add Recipe

Recipes

  • {{ recipe.name }}

    Ingredients:

    • {{ ingredient.name }} - {{ ingredient.quantity }}

    Instructions:

    {{ recipe.instructions }}

Production Scheduling

Add Production Run

Scheduled Production Runs

  • {{ getRecipeName(run.recipeId) }}

    Quantity: {{ run.quantity }}

    Date: {{ run.date }}

Inventory Management

Update Inventory

Current Inventory

Item Quantity
{{ item.name }} {{ item.quantity }}

Cost Analysis

Update Costs

Cost Dashboard

Recipe Costs

  • {{ recipe.name }}: ${{ getRecipeCost(recipe) }}

Production Run Costs

  • {{ getRecipeName(run.recipeId) }} ({{ run.quantity }}): ${{ getProductionRunCost(run) }}