@model PowderCoating.Application.DTOs.Inventory.InventoryItemDto
@{
ViewData["Title"] = $"Label - {Model.Name}";
Layout = null; // standalone print page
}
Powder Coating Logix • Scan to log usage
@Model.Name
SKU: @Model.SKU
@if (!string.IsNullOrEmpty(Model.ColorName) && !string.Equals(Model.ColorName, Model.Name, StringComparison.OrdinalIgnoreCase))
{
@Model.ColorName
@if (!string.IsNullOrEmpty(Model.Finish) && Model.Name.IndexOf(Model.Finish, StringComparison.OrdinalIgnoreCase) < 0)
{
— @Model.Finish
}
}
@Model.Manufacturer
@if (!string.IsNullOrEmpty(Model.Location))
{
Location: @Model.Location
}