Files
webdoorcreator/WebDoorCreator.UI/Components/Order/OrderDets.razor
T
2023-05-18 11:55:03 +02:00

39 lines
1.7 KiB
Plaintext

<div style="padding-left: 1.5rem !important; padding-right: 1.5rem !important;">
@if (OrderView != null)
{
<div class="testataOrder px-5 d-flex justify-content-between text-light" style="--bgStepColor: @stepColor">
<div class=" px-3 d-flex justify-content-between small">
<div>Insert Date:</div>
<div>&nbsp;</div>
<div class=" fw-bold">@OrderView.DateIns</div>
</div>
<div class=" px-3 d-flex justify-content-between small">
<div>Order External Code:</div>
<div>&nbsp;</div>
<div class="fw-bold">@OrderView.OrderExtCode</div>
</div>
<div class=" px-3 d-flex justify-content-between small">
<div>Models Number</div>
<div>&nbsp;</div>
<div class="fw-bold">@OrderView.NumType</div>
</div>
<div class=" px-3 d-flex justify-content-between small">
<div class="text-center">Doors Number</div>
<div>&nbsp;</div>
<div class="fw-bold">@OrderView.NumDoors</div>
</div>
</div>
}
<div class="cardStatus" style="--bgStepColor: #34495E">
<OrderStatusStep E_CurrStepColor="@setStepColor" CurrOrderStatus="@OrderView!.OrderStatus"></OrderStatusStep>
</div>
</div>
<div class="p-5 cardDoors">
<DoorList currOrderId="@OrderView!.OrderId" updateRecordCount="UpdateTotCount" actFilter="@currFilter"></DoorList>
<div class="mt-4">
<EgwCoreLib.Razor.DataPager @ref="pagerDoors" PageSize="@numRecord" currPage="@currPage" numRecordChanged="ForceReload" numPageChanged="ForceReloadPage" totalCount="@totalCount" showLoading="@isLoading" />
</div>
</div>