* Removed not needed code
* Removed not needed ModalDto
This commit is contained in:
@@ -40,23 +40,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br/>
|
<br/>
|
||||||
@* <SortableList TItem="EdiCustomerOrderTranslateDto" Data="_ediCustomerOrderTranslate"> *@
|
|
||||||
@* <ItemTemplate> *@
|
|
||||||
@* <u>Id:</u> <b>@context.Id</b><br /> *@
|
|
||||||
@* <u>CoEdiOrder:</u> <b>@context.CoEdiOrder</b><br /> *@
|
|
||||||
@* <u>CoRowPointer:</u> <b>@context.CoRowPointer</b><br /> *@
|
|
||||||
@* <u>CoCoNum:</u> <b>@context.CoCoNum</b><br /> *@
|
|
||||||
@* <u>CoType:</u> <b>@context.CoType</b><br /> *@
|
|
||||||
@* <u>CoTakenBy:</u> <b>@context.CoTakenBy</b><br /> *@
|
|
||||||
@* <u>EdiCoCoNum:</u> <b>@context.EdiCoCoNum</b><br /> *@
|
|
||||||
@* <u>OrdersCount:</u> <b>@context.OrdersCount</b><br /> *@
|
|
||||||
@* <u>OrderFound:</u> <b>@context.OrderFound</b><br /> *@
|
|
||||||
@* <u>CreatedDate:</u> <b>@context.CreatedDate.ToString("yyyy-MM-dd HH:mm:ss")</b><br /> *@
|
|
||||||
@* <u>FoundNumbers:</u> <b>@context.FoundNumbers</b><br /> *@
|
|
||||||
@* <u>ScheduleOrderId:</u> <b>@context.ScheduleOrderId</b><br /> *@
|
|
||||||
@* </ItemTemplate> *@
|
|
||||||
@* </SortableList> *@
|
|
||||||
@* <br /> *@
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h3>Indeksy</h3>
|
<h3>Indeksy</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
@inject NavigationManager NavigationManager
|
@inject NavigationManager NavigationManager
|
||||||
@using SytelineSaAppEfDataModel.Dtos
|
@using SytelineSaAppEfDataModel.Dtos
|
||||||
@using FaKrosnoApi.Dtos
|
@using FaKrosnoApi.Dtos
|
||||||
@using OrdersManagement.Dtos
|
|
||||||
@inherits LayoutComponentBase
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -96,8 +95,7 @@
|
|||||||
|
|
||||||
private List<ResponseDto> _responses = new();
|
private List<ResponseDto> _responses = new();
|
||||||
|
|
||||||
private Modal _modal = default!;
|
private Modal _modal = null!;
|
||||||
private ModalDto _modalDto = new(null, null);
|
|
||||||
|
|
||||||
private bool _isVisible;
|
private bool _isVisible;
|
||||||
private bool _filter;
|
private bool _filter;
|
||||||
@@ -171,5 +169,4 @@
|
|||||||
_filter = obj;
|
_filter = obj;
|
||||||
_grid?.RefreshDataAsync();
|
_grid?.RefreshDataAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
namespace OrdersManagement.Dtos
|
|
||||||
{
|
|
||||||
public class ModalDto(string? title, string? body)
|
|
||||||
{
|
|
||||||
public string? Title { get; set; } = title;
|
|
||||||
public string? Body { get; set; } = body;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user