diff --git a/CulinaryCommandApp/Components/Custom/PrepTasksPanel.razor b/CulinaryCommandApp/Components/Custom/PrepTasksPanel.razor index 6216723..97681c5 100644 --- a/CulinaryCommandApp/Components/Custom/PrepTasksPanel.razor +++ b/CulinaryCommandApp/Components/Custom/PrepTasksPanel.razor @@ -2,6 +2,7 @@ @using CulinaryCommand.Data.Entities @using CulinaryCommand.Data.Enums @using Microsoft.AspNetCore.Components +@inject NavigationManager Nav
Review submitted product feedback and follow up on issues.
+Invite teammates and manage access per location.
diff --git a/CulinaryCommandApp/Inventory/Pages/Inventory/InventoryCatalog.razor b/CulinaryCommandApp/Inventory/Pages/Inventory/InventoryCatalog.razor index 89ebcf7..df435e8 100644 --- a/CulinaryCommandApp/Inventory/Pages/Inventory/InventoryCatalog.razor +++ b/CulinaryCommandApp/Inventory/Pages/Inventory/InventoryCatalog.razor @@ -34,10 +34,31 @@ } else { -@(LocationState.CurrentLocation is not null ? $"{LocationState.CurrentLocation.Name} — ingredient catalog" : "Manage your ingredient catalog")
+Manage your ingredient catalog.
+Create and track purchase orders for your location's suppliers.
diff --git a/CulinaryCommandApp/Recipe/Pages/RecipeList.razor b/CulinaryCommandApp/Recipe/Pages/RecipeList.razor index 2df8b31..b984311 100644 --- a/CulinaryCommandApp/Recipe/Pages/RecipeList.razor +++ b/CulinaryCommandApp/Recipe/Pages/RecipeList.razor @@ -27,7 +27,7 @@ else @* ── Header ── *@Manage your location's recipes and prep items.
diff --git a/CulinaryCommandApp/Recipe/Pages/RecipeView.razor b/CulinaryCommandApp/Recipe/Pages/RecipeView.razor index cca1fbc..55d1248 100644 --- a/CulinaryCommandApp/Recipe/Pages/RecipeView.razor +++ b/CulinaryCommandApp/Recipe/Pages/RecipeView.razor @@ -1,10 +1,13 @@ @page "/recipes/view/{id:int}" @rendermode InteractiveServer +@using CulinaryCommandApp.Inventory.DTOs +@using CulinaryCommandApp.Inventory.Services.Interfaces @using CulinaryCommand.Services.UserContextSpace @using CulinaryCommandApp.Recipe.Entities @inject IRecipeService RecipeService +@inject IInventoryManagementService InventoryService @inject IUserContextService UserCtx @inject NavigationManager Nav @@ -32,7 +35,7 @@ @* ── Back button ── *@ @@ -189,6 +192,30 @@ else { @(line.Ingredient?.Name ?? "—") + @if (HasInventoryIngredient(line)) + { + + } }