@using Indotalent.Features.Purchase.DebitNote.Cqrs @using MudBlazor
Returned Inventory Items
Product Unit Price Qty Returned Total Adjustment @context.ProductName @context.UnitPrice.ToString("N2") @context.Quantity @context.Total.ToString("N2")
@code { [Parameter] public List Items { get; set; } = new(); [Parameter] public bool ReadOnly { get; set; } = true; }