fixes
This commit is contained in:
parent
8b9cf1ea8d
commit
66764b3dd5
|
|
@ -32,7 +32,7 @@ FocusedRowChanged="Grid_FocusedRowChanged" *@
|
||||||
<EditSettings>
|
<EditSettings>
|
||||||
<DxComboBoxSettings Data="ShippingDocuments"
|
<DxComboBoxSettings Data="ShippingDocuments"
|
||||||
ValueFieldName="Id"
|
ValueFieldName="Id"
|
||||||
TextFieldName="@("Partner.Name")"
|
TextFieldName="@nameof(ShippingDocument.PdfFileName)"
|
||||||
DropDownBodyCssClass="dd-body-class"
|
DropDownBodyCssClass="dd-body-class"
|
||||||
ListRenderMode="ListRenderMode.Entire"
|
ListRenderMode="ListRenderMode.Entire"
|
||||||
SearchMode="ListSearchMode.AutoSearch"
|
SearchMode="ListSearchMode.AutoSearch"
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,7 @@
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
string? orderNote;
|
string? orderNote;
|
||||||
if (!(orderNote = SelectedOrder?.OrderNotes.FirstOrDefault()?.Note).IsNullOrWhiteSpace())
|
if (!(orderNote = SelectedOrder?.OrderNotes.LastOrDefault(x=>x.Note.StartsWith('*'))?.Note).IsNullOrWhiteSpace())
|
||||||
{
|
{
|
||||||
<div class="container-fluid p-0" style="margin-top: 20px">
|
<div class="container-fluid p-0" style="margin-top: 20px">
|
||||||
<b> Megjegyzés: </b><span>@(orderNote) </span>
|
<b> Megjegyzés: </b><span>@(orderNote) </span>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue