@using Indotalent.Features.Purchase.PaymentDisburse.Cqrs
@using MudBlazor
Referenced Bill 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();
}