* Added divs to containers
This commit is contained in:
@@ -8,6 +8,7 @@
|
|||||||
@using Syncfusion.Blazor.Cards
|
@using Syncfusion.Blazor.Cards
|
||||||
@inherits LayoutComponentBase
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<div class="container-fluid h-100">
|
||||||
<h5>Zamówienie klienta nr @CustomerOrderDto?.CoNum</h5>
|
<h5>Zamówienie klienta nr @CustomerOrderDto?.CoNum</h5>
|
||||||
<SfCard>
|
<SfCard>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
@@ -151,7 +152,8 @@
|
|||||||
<u>Data
|
<u>Data
|
||||||
Rejestracji:</u> <b>@(detailLineItem?.ReleaseDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
Rejestracji:</u> <b>@(detailLineItem?.ReleaseDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
<u>Magazyn:</u> <b>@detailLineItem?.Whse</b><br/>
|
<u>Magazyn:</u> <b>@detailLineItem?.Whse</b><br/>
|
||||||
<u>Typ Documentu:</u> <b>@detailLineItem?.Uf_FKR_EDI_ITEM_DocumentType</b><br/>
|
<u>Typ
|
||||||
|
Documentu:</u> <b>@detailLineItem?.Uf_FKR_EDI_ITEM_DocumentType</b><br/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<u>Kod VAT:</u> <b>@detailLineItem?.TaxCode1</b><br/>
|
<u>Kod VAT:</u> <b>@detailLineItem?.TaxCode1</b><br/>
|
||||||
@@ -195,6 +197,7 @@
|
|||||||
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
||||||
</SfGrid>
|
</SfGrid>
|
||||||
}
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
[Parameter] public Guid CustomerOrderId { get; set; }
|
[Parameter] public Guid CustomerOrderId { get; set; }
|
||||||
@@ -281,4 +284,5 @@
|
|||||||
_isVisibleCustomerOrderLine = _selectedCustomerOrderLine != null;
|
_isVisibleCustomerOrderLine = _selectedCustomerOrderLine != null;
|
||||||
_customerOrderLineItems = _selectedCustomerOrderLine?.CustomerOrderLineItems.ToList() ?? [];
|
_customerOrderLineItems = _selectedCustomerOrderLine?.CustomerOrderLineItems.ToList() ?? [];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -6,6 +6,7 @@
|
|||||||
@using Syncfusion.Blazor.Cards
|
@using Syncfusion.Blazor.Cards
|
||||||
@inherits LayoutComponentBase
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<div class="container-fluid h-100">
|
||||||
<h5>Zamówienia Klienta</h5>
|
<h5>Zamówienia Klienta</h5>
|
||||||
<SfGrid AllowFiltering="true"
|
<SfGrid AllowFiltering="true"
|
||||||
AllowPaging="true"
|
AllowPaging="true"
|
||||||
@@ -28,7 +29,8 @@
|
|||||||
<u>Numer Odbiorcy:</u> <b>@order?.CustSeq</b><br/>
|
<u>Numer Odbiorcy:</u> <b>@order?.CustSeq</b><br/>
|
||||||
<u>Kontakt:</u> <b>@order?.Contact</b><br/>
|
<u>Kontakt:</u> <b>@order?.Contact</b><br/>
|
||||||
<u>Telefon:</u> <b>@order?.Phone</b><br/>
|
<u>Telefon:</u> <b>@order?.Phone</b><br/>
|
||||||
<u>Data Zamówienia:</u> <b>@order?.OrderDate.ToString("yyyy-MM-dd HH:mm:ss")</b><br/>
|
<u>Data Zamówienia:</u>
|
||||||
|
<b>@order?.OrderDate.ToString("yyyy-MM-dd HH:mm:ss")</b><br/>
|
||||||
<u>Warunki:</u> <b>@order?.TermsCode</b><br/>
|
<u>Warunki:</u> <b>@order?.TermsCode</b><br/>
|
||||||
<u>Wartość Brutto:</u> <b>@(order?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
<u>Wartość Brutto:</u> <b>@(order?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
||||||
<u>Status:</u> <b>@order?.TranslatedStatus</b><br/>
|
<u>Status:</u> <b>@order?.TranslatedStatus</b><br/>
|
||||||
@@ -56,7 +58,8 @@
|
|||||||
<GridColumn Field=@nameof(CustomerOrderDto.CustPo) HeaderText="Zamówienie Klienta" Width="100"></GridColumn>
|
<GridColumn Field=@nameof(CustomerOrderDto.CustPo) HeaderText="Zamówienie Klienta" Width="100"></GridColumn>
|
||||||
<GridColumn Field=@nameof(CustomerOrderDto.CustNum) HeaderText="Numer Klienta" Width="90"></GridColumn>
|
<GridColumn Field=@nameof(CustomerOrderDto.CustNum) HeaderText="Numer Klienta" Width="90"></GridColumn>
|
||||||
<GridColumn Field=@nameof(CustomerOrderDto.CustSeq) HeaderText="Odbiorca" Width="80"></GridColumn>
|
<GridColumn Field=@nameof(CustomerOrderDto.CustSeq) HeaderText="Odbiorca" Width="80"></GridColumn>
|
||||||
<GridColumn Field=@nameof(CustomerOrderDto.CreateDate) HeaderText="Data zamówienia" TextAlign="TextAlign.Right"Width="110"></GridColumn>
|
<GridColumn Field=@nameof(CustomerOrderDto.CreateDate) HeaderText="Data zamówienia"
|
||||||
|
TextAlign="TextAlign.Right" Width="110"></GridColumn>
|
||||||
<GridColumn Field=@nameof(CustomerOrderDto.TranslatedStatus) HeaderText="Status" Width="100"></GridColumn>
|
<GridColumn Field=@nameof(CustomerOrderDto.TranslatedStatus) HeaderText="Status" Width="100"></GridColumn>
|
||||||
</GridColumns>
|
</GridColumns>
|
||||||
<GridFilterSettings Type="FilterType.Excel"/>
|
<GridFilterSettings Type="FilterType.Excel"/>
|
||||||
@@ -64,6 +67,7 @@
|
|||||||
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
||||||
<GridEvents TValue="CustomerOrderDto" OnRecordDoubleClick="OnRowDoubleClick"/>
|
<GridEvents TValue="CustomerOrderDto" OnRecordDoubleClick="OnRowDoubleClick"/>
|
||||||
</SfGrid>
|
</SfGrid>
|
||||||
|
</div>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
private IEnumerable<CustomerOrderDto>? _customerOrders;
|
private IEnumerable<CustomerOrderDto>? _customerOrders;
|
||||||
@@ -82,4 +86,5 @@
|
|||||||
|
|
||||||
NavigationManager.NavigateTo($"/CustomerOrder/{customerOrderId}");
|
NavigationManager.NavigateTo($"/CustomerOrder/{customerOrderId}");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -6,6 +6,7 @@
|
|||||||
@using Syncfusion.Blazor.Cards
|
@using Syncfusion.Blazor.Cards
|
||||||
@inherits LayoutComponentBase
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<div class="container-fluid h-100">
|
||||||
<h5>Zamówienie klienta nr @EdiCustomerOrderDto?.CustomerOrderNumber</h5>
|
<h5>Zamówienie klienta nr @EdiCustomerOrderDto?.CustomerOrderNumber</h5>
|
||||||
<SfCard>
|
<SfCard>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
@@ -15,11 +16,16 @@
|
|||||||
<u>Numer zamówienia Klienta:</u> <b>@EdiCustomerOrderDto?.CustomerPoNumber</b><br/>
|
<u>Numer zamówienia Klienta:</u> <b>@EdiCustomerOrderDto?.CustomerPoNumber</b><br/>
|
||||||
<u>Numer klienta:</u> <b>@EdiCustomerOrderDto?.CustomerNumber</b><br/>
|
<u>Numer klienta:</u> <b>@EdiCustomerOrderDto?.CustomerNumber</b><br/>
|
||||||
<u>Klient:</u> <b>@EdiCustomerOrderDto?.CustomerName</b><br/>
|
<u>Klient:</u> <b>@EdiCustomerOrderDto?.CustomerName</b><br/>
|
||||||
<u>Numer odbiorcy:</u> <b>@(EdiCustomerOrderDto?.CustomerSequence?.ToString() ?? "N/A")</b><br />
|
<u>Numer
|
||||||
<u>Data otrzymania:</u> <b>@(EdiCustomerOrderDto?.RecivedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br />
|
odbiorcy:</u> <b>@(EdiCustomerOrderDto?.CustomerSequence?.ToString() ?? "N/A")</b><br/>
|
||||||
<u>Wysłano do Syteline?:</u> <b>@((EdiCustomerOrderDto?.Posted?.ToString() ?? "0") == "0" ? "NIE" : "TAK")</b><br />
|
<u>Data
|
||||||
<u>Data wysyłki do Syteline:</u> <b>@(EdiCustomerOrderDto?.PostedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br />
|
otrzymania:</u> <b>@(EdiCustomerOrderDto?.RecivedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
<u>Data zamówienia:</u> <b>@(EdiCustomerOrderDto?.OrderDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br />
|
<u>Wysłano do
|
||||||
|
Syteline?:</u> <b>@((EdiCustomerOrderDto?.Posted?.ToString() ?? "0") == "0" ? "NIE" : "TAK")</b><br/>
|
||||||
|
<u>Data wysyłki do
|
||||||
|
Syteline:</u> <b>@(EdiCustomerOrderDto?.PostedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
|
<u>Data
|
||||||
|
zamówienia:</u> <b>@(EdiCustomerOrderDto?.OrderDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<u>Cena:</u> <b>@(EdiCustomerOrderDto?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
<u>Cena:</u> <b>@(EdiCustomerOrderDto?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
||||||
@@ -64,7 +70,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<u>Cena:</u> <b>@(order?.ContPrice?.ToString("F2") ?? "N/A")</b><br/>
|
<u>Cena:</u> <b>@(order?.ContPrice?.ToString("F2") ?? "N/A")</b><br/>
|
||||||
<u>Ważne Od:</u> <b>@(order?.EffectiveDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br />
|
<u>Ważne
|
||||||
|
Od:</u> <b>@(order?.EffectiveDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
<u>J/M:</u> <b>@order?.Uom</b><br/>
|
<u>J/M:</u> <b>@order?.Uom</b><br/>
|
||||||
<u>BoxType:</u> <b>@order?.BoxType</b><br/>
|
<u>BoxType:</u> <b>@order?.BoxType</b><br/>
|
||||||
<u>Address:</u> <b>@order?.Address</b><br/>
|
<u>Address:</u> <b>@order?.Address</b><br/>
|
||||||
@@ -78,7 +85,8 @@
|
|||||||
</DetailTemplate>
|
</DetailTemplate>
|
||||||
</GridTemplates>
|
</GridTemplates>
|
||||||
<GridColumns>
|
<GridColumns>
|
||||||
<GridColumn Field=@nameof(EdiCustomerOrderLineDto.CustomerOrderLine) HeaderText="Linia" Width="70"></GridColumn>
|
<GridColumn Field=@nameof(EdiCustomerOrderLineDto.CustomerOrderLine) HeaderText="Linia"
|
||||||
|
Width="70"></GridColumn>
|
||||||
<GridColumn Field=@nameof(EdiCustomerOrderLineDto.Item) HeaderText="Pozycja" Width="100"></GridColumn>
|
<GridColumn Field=@nameof(EdiCustomerOrderLineDto.Item) HeaderText="Pozycja" Width="100"></GridColumn>
|
||||||
<GridColumn Field=@nameof(EdiCustomerOrderLineDto.CustomerItemNumber) HeaderText="Pozycja Klienta"
|
<GridColumn Field=@nameof(EdiCustomerOrderLineDto.CustomerItemNumber) HeaderText="Pozycja Klienta"
|
||||||
Width="120"></GridColumn>
|
Width="120"></GridColumn>
|
||||||
@@ -122,17 +130,21 @@
|
|||||||
<u>Zwolnienie:</u> <b>@detailLineItem?.CustomerOrderRelease</b><br/>
|
<u>Zwolnienie:</u> <b>@detailLineItem?.CustomerOrderRelease</b><br/>
|
||||||
<u>Pozycja:</u> <b>@detailLineItem?.Item</b><br/>
|
<u>Pozycja:</u> <b>@detailLineItem?.Item</b><br/>
|
||||||
<u>Pozycja Klienta:</u> <b>@detailLineItem?.CustomerItem</b><br/>
|
<u>Pozycja Klienta:</u> <b>@detailLineItem?.CustomerItem</b><br/>
|
||||||
<u>Łączna Ilość Sztuk:</u> <b>@(detailLineItem?.QtyOrdered?.ToString("F2") ?? "N/A")</b><br />
|
<u>Łączna Ilość
|
||||||
|
Sztuk:</u> <b>@(detailLineItem?.QtyOrdered?.ToString("F2") ?? "N/A")</b><br/>
|
||||||
<u>Cena:</u> <b>@(detailLineItem?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
<u>Cena:</u> <b>@(detailLineItem?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
||||||
<u>Data Wykonania:</u> <b>@(detailLineItem?.DueDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br />
|
<u>Data
|
||||||
<u>Data Rejestracji:</u> <b>@(detailLineItem?.ReleaseDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br />
|
Wykonania:</u> <b>@(detailLineItem?.DueDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
|
<u>Data
|
||||||
|
Rejestracji:</u> <b>@(detailLineItem?.ReleaseDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
<u>Magazyn:</u> <b>@detailLineItem?.Warehouse</b><br/>
|
<u>Magazyn:</u> <b>@detailLineItem?.Warehouse</b><br/>
|
||||||
<u>Typ Documentu:</u> <b>@detailLineItem?.DocumentType</b><br/>
|
<u>Typ Documentu:</u> <b>@detailLineItem?.DocumentType</b><br/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<u>Kod VAT:</u> <b>@detailLineItem?.TaxCodeOne</b><br/>
|
<u>Kod VAT:</u> <b>@detailLineItem?.TaxCodeOne</b><br/>
|
||||||
<u>J/M:</u> <b>@detailLineItem?.Uom</b><br/>
|
<u>J/M:</u> <b>@detailLineItem?.Uom</b><br/>
|
||||||
<u>Numer Klienta:</u> <b>@detailLineItem?.CustomerOrderCustomerNumber</b><br />
|
<u>Numer
|
||||||
|
Klienta:</u> <b>@detailLineItem?.CustomerOrderCustomerNumber</b><br/>
|
||||||
<u>Opis:</u> <b>@detailLineItem?.Description</b><br/>
|
<u>Opis:</u> <b>@detailLineItem?.Description</b><br/>
|
||||||
<u>Status:</u> <b>@detailLineItem?.TranslatedStatus</b><br/>
|
<u>Status:</u> <b>@detailLineItem?.TranslatedStatus</b><br/>
|
||||||
<u>RoutingCode:</u> <b>@detailLineItem?.RoutingCode</b><br/>
|
<u>RoutingCode:</u> <b>@detailLineItem?.RoutingCode</b><br/>
|
||||||
@@ -172,6 +184,7 @@
|
|||||||
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
||||||
</SfGrid>
|
</SfGrid>
|
||||||
}
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
[Parameter] public Guid CustomerOrderId { get; set; }
|
[Parameter] public Guid CustomerOrderId { get; set; }
|
||||||
@@ -201,6 +214,7 @@
|
|||||||
_selectedEdiCustomerOrderLine = obj.Data as EdiCustomerOrderLineDto;
|
_selectedEdiCustomerOrderLine = obj.Data as EdiCustomerOrderLineDto;
|
||||||
_ediCustomerOrderLineItems = _selectedEdiCustomerOrderLine?.EdiCustomerOrderLineItems.ToList() ?? [];
|
_ediCustomerOrderLineItems = _selectedEdiCustomerOrderLine?.EdiCustomerOrderLineItems.ToList() ?? [];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,11 +11,13 @@
|
|||||||
@using SelectionType = Syncfusion.Blazor.Grids.SelectionType
|
@using SelectionType = Syncfusion.Blazor.Grids.SelectionType
|
||||||
@inherits LayoutComponentBase
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<div class="container-fluid h-100">
|
||||||
<h5>Zamówienia Klienta EDI</h5>
|
<h5>Zamówienia Klienta EDI</h5>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<label for="checked" style="padding: 10px 10px 10px 0">Pokaż wszystkie</label>
|
<label for="checked" style="padding: 10px 10px 10px 0">Pokaż wszystkie</label>
|
||||||
<SfSwitch @bind-Checked="_filter" ValueChange="FilterChanged" TChecked="bool?" OnLabel="Pokaż tylko Wysłanr do SL" OffLabel="Pokaż wszystkie" />
|
<SfSwitch @bind-Checked="_filter" ValueChange="FilterChanged" TChecked="bool?"
|
||||||
|
OnLabel="Pokaż tylko Wysłanr do SL" OffLabel="Pokaż wszystkie"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br/>
|
<br/>
|
||||||
@@ -48,14 +50,16 @@
|
|||||||
<u>Numer zamówienia Klienta:</u> <b>@order?.CustomerPoNumber</b><br/>
|
<u>Numer zamówienia Klienta:</u> <b>@order?.CustomerPoNumber</b><br/>
|
||||||
<u>Numer klienta:</u> <b>@order?.CustomerNumber</b><br/>
|
<u>Numer klienta:</u> <b>@order?.CustomerNumber</b><br/>
|
||||||
<u>Klient:</u> <b>@order?.CustomerName</b><br/>
|
<u>Klient:</u> <b>@order?.CustomerName</b><br/>
|
||||||
<u>Numer odbiorcy:</u> <b>@(order?.CustomerSequence?.ToString() ?? "N/A")</b><br/>
|
<u>Numer
|
||||||
|
odbiorcy:</u> <b>@(order?.CustomerSequence?.ToString() ?? "N/A")</b><br/>
|
||||||
<u>Data
|
<u>Data
|
||||||
otrzymania:</u> <b>@(order?.RecivedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
otrzymania:</u> <b>@(order?.RecivedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
<u>Wysłano do
|
<u>Wysłano do
|
||||||
Syteline?:</u> <b>@((order?.Posted?.ToString() ?? "0") == "0" ? "NIE" : "TAK")</b><br/>
|
Syteline?:</u> <b>@((order?.Posted?.ToString() ?? "0") == "0" ? "NIE" : "TAK")</b><br/>
|
||||||
<u>Data wysyłki do
|
<u>Data wysyłki do
|
||||||
Syteline:</u> <b>@(order?.PostedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
Syteline:</u> <b>@(order?.PostedDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
<u>Data zamówienia:</u> <b>@(order?.OrderDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
<u>Data
|
||||||
|
zamówienia:</u> <b>@(order?.OrderDate?.ToString("dd.MM.yyyy") ?? "N/A")</b><br/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<u>Cena:</u> <b>@(order?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
<u>Cena:</u> <b>@(order?.Price?.ToString("F2") ?? "N/A")</b><br/>
|
||||||
@@ -81,7 +85,8 @@
|
|||||||
Width="100"></GridColumn>
|
Width="100"></GridColumn>
|
||||||
<GridColumn Field=@nameof(EdiCustomerOrderDto.CustomerNumber) HeaderText="Numer Klienta"
|
<GridColumn Field=@nameof(EdiCustomerOrderDto.CustomerNumber) HeaderText="Numer Klienta"
|
||||||
Width="90"></GridColumn>
|
Width="90"></GridColumn>
|
||||||
<GridColumn Field=@nameof(EdiCustomerOrderDto.CustomerSequence) HeaderText="Odbiorca" Width="80"></GridColumn>
|
<GridColumn Field=@nameof(EdiCustomerOrderDto.CustomerSequence) HeaderText="Odbiorca"
|
||||||
|
Width="80"></GridColumn>
|
||||||
<GridColumn Field=@nameof(EdiCustomerOrderDto.CreateDate) HeaderText="Data Otrzymania"
|
<GridColumn Field=@nameof(EdiCustomerOrderDto.CreateDate) HeaderText="Data Otrzymania"
|
||||||
TextAlign="TextAlign.Center" Width="110"></GridColumn>
|
TextAlign="TextAlign.Center" Width="110"></GridColumn>
|
||||||
<GridColumn Field=@nameof(EdiCustomerOrderDto.SlOrderNumber) HeaderText="Zamówienie SL"
|
<GridColumn Field=@nameof(EdiCustomerOrderDto.SlOrderNumber) HeaderText="Zamówienie SL"
|
||||||
@@ -120,6 +125,7 @@
|
|||||||
<DialogButton Content="OK" IsPrimary="true" OnClick="@HideModal"/>
|
<DialogButton Content="OK" IsPrimary="true" OnClick="@HideModal"/>
|
||||||
</DialogButtons>
|
</DialogButtons>
|
||||||
</SfDialog>
|
</SfDialog>
|
||||||
|
</div>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
private bool Visibility { get; set; }
|
private bool Visibility { get; set; }
|
||||||
@@ -215,4 +221,5 @@
|
|||||||
|
|
||||||
StateHasChanged();
|
StateHasChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
@using Syncfusion.Blazor.Lists
|
@using Syncfusion.Blazor.Lists
|
||||||
@inject ScheduleOrderDetailsService ScheduleOrderDetailsService
|
@inject ScheduleOrderDetailsService ScheduleOrderDetailsService
|
||||||
|
|
||||||
|
<div class="container-fluid h-100">
|
||||||
<h5>Indeksy</h5>
|
<h5>Indeksy</h5>
|
||||||
<SfGrid AllowFiltering="true"
|
<SfGrid AllowFiltering="true"
|
||||||
AllowPaging="true"
|
AllowPaging="true"
|
||||||
@@ -35,14 +36,16 @@
|
|||||||
</DetailTemplate>
|
</DetailTemplate>
|
||||||
</GridTemplates>
|
</GridTemplates>
|
||||||
<GridColumns>
|
<GridColumns>
|
||||||
<GridColumn Field=@nameof(ScheduleOrderDetailDto.Sc_productCode) HeaderText="Pozycja" Width="100"></GridColumn>
|
<GridColumn Field=@nameof(ScheduleOrderDetailDto.Sc_productCode) HeaderText="Pozycja"
|
||||||
|
Width="100"></GridColumn>
|
||||||
<GridColumn Field=@nameof(ScheduleOrderDetailDto.Sh_productCode) HeaderText="Pozycja Klienta"
|
<GridColumn Field=@nameof(ScheduleOrderDetailDto.Sh_productCode) HeaderText="Pozycja Klienta"
|
||||||
Width="100"></GridColumn>
|
Width="100"></GridColumn>
|
||||||
</GridColumns>
|
</GridColumns>
|
||||||
<GridFilterSettings Type="FilterType.Excel"/>
|
<GridFilterSettings Type="FilterType.Excel"/>
|
||||||
<GridPageSettings PageSize="10"/>
|
<GridPageSettings PageSize="10"/>
|
||||||
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
||||||
<GridEvents TValue="ScheduleOrderDetailDto" RowSelected="OnSelectedLineRow" DetailsExpanding="OnDetailsExpanding"></GridEvents>
|
<GridEvents TValue="ScheduleOrderDetailDto" RowSelected="OnSelectedLineRow"
|
||||||
|
DetailsExpanding="OnDetailsExpanding"></GridEvents>
|
||||||
</SfGrid>
|
</SfGrid>
|
||||||
@if (_isVisible)
|
@if (_isVisible)
|
||||||
{
|
{
|
||||||
@@ -94,6 +97,7 @@
|
|||||||
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
<GridSelectionSettings Mode="SelectionMode.Row" Type="SelectionType.Single"/>
|
||||||
</SfGrid>
|
</SfGrid>
|
||||||
}
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
[Parameter] public int ScheduleOrderId { get; set; }
|
[Parameter] public int ScheduleOrderId { get; set; }
|
||||||
|
|||||||
@@ -5,12 +5,14 @@
|
|||||||
@inject ScheduleOrderService ScheduleOrderService
|
@inject ScheduleOrderService ScheduleOrderService
|
||||||
@inherits LayoutComponentBase
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<div class="container-fluid h-100">
|
||||||
<div>
|
<div>
|
||||||
<h5>Zamówienia DELFOR </h5>
|
<h5>Zamówienia DELFOR </h5>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="container-fluid h-100">
|
||||||
<ScheduleOrdersGrid PageSize="20" PassGridRef="SetGridRef" GridData="_scheduleOrders"></ScheduleOrdersGrid>
|
<ScheduleOrdersGrid PageSize="20" PassGridRef="SetGridRef" GridData="_scheduleOrders"></ScheduleOrdersGrid>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
private IEnumerable<ScheduleOrderDto> _scheduleOrders = [];
|
private IEnumerable<ScheduleOrderDto> _scheduleOrders = [];
|
||||||
|
|||||||
@@ -63347,11 +63347,11 @@ span.e-table-box.e-rbox-select {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.custom-menu {
|
.custom-menu {
|
||||||
width: 300px;
|
width: 265px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-menu-width {
|
.custom-menu-width {
|
||||||
width: 300px;
|
width: 265px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
@media (max-width: 767px) {
|
||||||
|
|||||||
Reference in New Issue
Block a user