97d582e733
- SEMI_ok button cambio stato - ok paginatore - ok button add new
50 lines
2.1 KiB
Plaintext
50 lines
2.1 KiB
Plaintext
@page "/OrderDetails"
|
|
|
|
<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> </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> </div>
|
|
<div class="fw-bold">@orderView.OrderExtCode</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">Doors Number</div>
|
|
<div> </div>
|
|
<div class="fw-bold">@orderView.NumDoors</div>
|
|
</div>
|
|
@*
|
|
<div class="input-group">
|
|
<select @bind="@currMeaUnit" class="form-select">
|
|
<option value="mm">mm</option>
|
|
<option value="inch">inch</option>
|
|
</select>
|
|
<button class="btn btn-sm btn-success" @onclick="() => createDoor()">+ Add new door</button>
|
|
</div>*@
|
|
|
|
</div>
|
|
}
|
|
|
|
<div class="cardStatus" style="--bgStepColor: #34495E">
|
|
<OrderStatusStep E_CurrStepColor="@setStepColor" CurrOrderStatus="@orderStat"></OrderStatusStep>
|
|
</div>
|
|
</div>
|
|
<div class="p-5 cardDoors">
|
|
<DoorList currOrderId="@idOrd" 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>
|