@page "/ScheduleOrderDetails/{ScheduleOrderId:int}"
@inject ScheduleOrderDetailsService ScheduleOrderDetailsService
Indeksy:
@context.ID
@context.Sc_productCode
@context.Sh_productCode
@context.Price
@if (_isVisible)
{
Dodatkowe informacje:
@context.Label: @context.Value
}
@if (_isVisible)
{
Harmonogramy:
@context.ID
@context.DateFrom
@context.DateTo
@context.Qty
@if (_isVisibleDetailDetail)
{
Dodatkowe informacje:
@context.Label: @context.Value
}
}
@code {
[Parameter] public int ScheduleOrderId { get; set; }
private bool _isVisible;
private bool _isVisibleDetailDetail;
Grid