@using Indotalent.Features.Sales.PaymentReceive.Cqrs
@using MudBlazor
Referenced Invoice Items
Product
UnitPrice
Quantity
Total
@context.ProductName
@if (!string.IsNullOrEmpty(context.Summary))
{
@context.Summary
}
@context.UnitPrice.ToString("N2")
@context.Quantity
@context.Total.ToString("N2")
@code {
[Parameter] public List Items { get; set; } = new();
}