Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
with:
dotnet-version: 9.0.x

- name: Setup Node.js for Playwright CLI
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install Playwright Dependencies
working-directory: CulinaryCommandApp
run: |
npx playwright install --with-deps
# - name: Setup Node.js for Playwright CLI
# uses: actions/setup-node@v4
# with:
# node-version: 20

# - name: Install Playwright Dependencies
# working-directory: CulinaryCommandApp
# run: |
# npx playwright install --with-deps

- name: Run Culinary Command xUnit tests
run: |
Expand Down
7 changes: 7 additions & 0 deletions CulinaryCommandApp/Components/Layout/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@
<span class="bi bi-box-seam nav-icon"></span> Inventory
</NavLink>
</div>

<div class="nav-item px-3">
<NavLink class="nav-link" href="/inventory-catalog">
<span class="bi bi-card-list nav-icon" aria-hidden="true"></span> Inventory Catalog
</NavLink>
</div>

<div class="nav-item px-3">
<NavLink class="nav-link" href="/purchase-orders">
<span class="bi bi-cart3 nav-icon" aria-hidden="true"></span> Purchase Orders
Expand Down
14 changes: 0 additions & 14 deletions CulinaryCommandApp/CulinaryCommand.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CulinaryCommand", "Culinary
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CulinaryCommandUnitTests", "..\CulinaryCommandUnitTests\CulinaryCommandUnitTests.csproj", "{647C4A5D-3895-4AB3-939A-836DF1A3ACEF}"
EndProject
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Playwright test project has been removed from the solution. The PR description doesn't mention this change, and it's unrelated to adding the inventory catalog endpoint. This removal could indicate the tests were moved elsewhere, deprecated, or accidentally removed. Consider either: 1) Re-adding the Playwright project if this was accidental, 2) Documenting why it was removed in the PR description, or 3) Creating a separate PR for this infrastructure change.

Copilot uses AI. Check for mistakes.
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlaywrightTests", "..\PlaywrightTests\PlaywrightTests.csproj", "{446329BD-31D0-464A-B2E9-7B5E44AF8F95}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -43,18 +41,6 @@ Global
{647C4A5D-3895-4AB3-939A-836DF1A3ACEF}.Release|x64.Build.0 = Release|Any CPU
{647C4A5D-3895-4AB3-939A-836DF1A3ACEF}.Release|x86.ActiveCfg = Release|Any CPU
{647C4A5D-3895-4AB3-939A-836DF1A3ACEF}.Release|x86.Build.0 = Release|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Debug|Any CPU.Build.0 = Debug|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Debug|x64.ActiveCfg = Debug|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Debug|x64.Build.0 = Debug|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Debug|x86.ActiveCfg = Debug|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Debug|x86.Build.0 = Debug|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Release|Any CPU.ActiveCfg = Release|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Release|Any CPU.Build.0 = Release|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Release|x64.ActiveCfg = Release|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Release|x64.Build.0 = Release|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Release|x86.ActiveCfg = Release|Any CPU
{446329BD-31D0-464A-B2E9-7B5E44AF8F95}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Empty file.
16 changes: 16 additions & 0 deletions CulinaryCommandApp/Inventory/DTOs/InventoryCatalogDTO.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;

namespace CulinaryCommand.Inventory.DTOs
{
public class InventoryCatalogDTO
{
public int Id { get; set; }
Comment thread
WChunter21 marked this conversation as resolved.
public string ItemName { get; set; } = string.Empty;
public string SKU { get; set; } = string.Empty;
public string Category { get; set; } = string.Empty;
public string Unit { get; set; } = "count";
public decimal PricePerUnit { get; set; }
Comment thread
WChunter21 marked this conversation as resolved.
public decimal Supplier { get; set; }
Comment thread
WChunter21 marked this conversation as resolved.
public string? Notes { get; set; }
}
}
Loading
Loading