48 lines
2.9 KiB
Plaintext
48 lines
2.9 KiB
Plaintext
@page "/AwaitingDisposition"
|
|
@using OI.Metrology.Shared.DataModels
|
|
|
|
<PageTitle>Awaiting Disposition</PageTitle>
|
|
|
|
<MudText Typo="Typo.h4" GutterBottom="true">Awaiting Disposition</MudText>
|
|
@if (_Records == null)
|
|
{
|
|
<MudProgressCircular Color="Color.Default" Indeterminate="true" />
|
|
}
|
|
else
|
|
{
|
|
<MudTable Items="_Records" Hover="true" SortLabel="Sort By" Elevation="0">
|
|
<HeaderContent>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, string?>(x=>x.ToolType)">ToolType</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, string?>(x=>x.Tool)">Tool</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, string?>(x=>x.Reactor)">Reactor</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, string?>(x=>x.RDS)">RDS</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, string?>(x=>x.PSN)">PSN</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, string?>(x=>x.Layer)">Layer</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, string?>(x=>x.Zone)">Zone</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, object>(x=>x.InsertDate)">InsertDate</MudTableSortLabel></MudTh>
|
|
<MudTh><MudTableSortLabel SortBy="new Func<OI.Metrology.Shared.DataModels.AwaitingDisposition, object>(x=>x.Expiration)">Expiration</MudTableSortLabel></MudTh>
|
|
</HeaderContent>
|
|
<RowTemplate>
|
|
<MudTd DataLabel="ToolType">@context.ToolType</MudTd>
|
|
<MudTd DataLabel="Tool">@context.Tool</MudTd>
|
|
<MudTd DataLabel="Reactor">@context.Reactor</MudTd>
|
|
<MudTd DataLabel="RDS">@context.RDS</MudTd>
|
|
<MudTd DataLabel="PSN">@context.PSN</MudTd>
|
|
<MudTd DataLabel="Layer">@context.Layer</MudTd>
|
|
<MudTd DataLabel="Zone">@context.Zone</MudTd>
|
|
<MudTd DataLabel="InsertDate">@context.InsertDate</MudTd>
|
|
<MudTd DataLabel="Expiration">@context.Expiration</MudTd>
|
|
</RowTemplate>
|
|
<PagerContent>
|
|
<MudTablePager PageSizeOptions="new int[]{50, 100}" />
|
|
</PagerContent>
|
|
</MudTable>
|
|
<div class="row" style="margin-top: 10px; margin-bottom: 20px;">
|
|
<div class="col-xs-1">
|
|
<input type="button" id="OpenButton" value="Open" />
|
|
</div>
|
|
<div class="col-xs-1">
|
|
<input type="button" id="RefreshButton" value="Refresh" />
|
|
</div>
|
|
</div>
|
|
} |