@model PowderCoating.Application.DTOs.Inventory.InventoryItemDto @{ ViewData["Title"] = "Delete Inventory Item"; ViewData["PageIcon"] = "bi-box-seam"; }
This action will mark the item as deleted. All related records will be preserved but the item will no longer appear in active listings.
@Model.SKU
@Model.Category
@Model.Name
@Model.Description
@Model.ColorName @(!string.IsNullOrEmpty(Model.ColorCode) ? $"({Model.ColorCode})" : "")
@Model.Finish
@Model.Manufacturer
@Model.QuantityOnHand.ToString("N2") @Model.UnitOfMeasure @if (Model.IsOutOfStock) { } else if (Model.IsLowStock) { }
@Model.ReorderPoint.ToString("N2") @Model.UnitOfMeasure
@(Model.Location ?? "Not specified")
@Model.UnitCost.ToString("C")
@((Model.QuantityOnHand * Model.UnitCost).ToString("C"))
@Model.AverageCost.ToString("C")