51 lines
2.3 KiB
Plaintext
51 lines
2.3 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">
|
|
<button class="btn btn-sm btn-danger" @onclick="()=>setEmpty()"><i class="fa-solid fa-arrow-left-long"></i></button>
|
|
|
|
<div class=" px-3 d-flex justify-content-between small">
|
|
<div>Order Date:</div>
|
|
<div> </div>
|
|
<div class=" fw-bold">@OrderView.DateIns</div>
|
|
</div>
|
|
<div class=" px-3 d-flex justify-content-between small">
|
|
<div>Order Number:</div>
|
|
<div> </div>
|
|
<div class="fw-bold">@OrderView.OrderExtCode</div>
|
|
</div>
|
|
<div class=" px-3 d-flex justify-content-between small">
|
|
<div>Order Description:</div>
|
|
<div> </div>
|
|
<div class="fw-bold">@OrderView.OrderDescript</div>
|
|
</div>
|
|
<div class=" px-3 d-flex justify-content-between small">
|
|
<div>Models Number:</div>
|
|
<div> </div>
|
|
<div class="fw-bold">@OrderView.NumType</div>
|
|
</div>
|
|
<div class=" px-3 d-flex justify-content-between small">
|
|
<div class="text-center">Quantity:</div>
|
|
<div> </div>
|
|
<div class="fw-bold">@OrderView.NumDoors</div>
|
|
</div>
|
|
<div class=" px-3 d-flex justify-content-between small">
|
|
<div class="text-center">TOTAL COST:</div>
|
|
<div> </div>
|
|
<div class="fw-bold">@($"{OrderView.TotCost:C2}")</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> |