This commit is contained in:
Loretta 2025-11-07 21:13:31 +01:00
parent 684a805d53
commit a53a136b56
5 changed files with 7 additions and 2 deletions

View File

@ -13,6 +13,7 @@ public class ShippingDocument : MgEntityBase, IShippingDocument
public int? ShippingId { get; set; }
public string DocumentIdNumber { get; set; }
public string PdfFileName { get; set; }
public DateTime ShippingDate { get; set; }
public string Country { get; set; }
public int TotalPallets { get; set; }

View File

@ -7,10 +7,11 @@ public static class FruitBankConstClient
{
public static string DefaultLocale = "en-US";
public static string BaseUrl = "https://localhost:59579"; //FrutiBank nop
//public static string BaseUrl = "https://localhost:59579"; //FrutiBank nop
//public static string BaseUrl = "http://localhost:5000"; //FrutiBank nop
#if RELEASE
//public static string BaseUrl = "https://shop.fruitbank.hu"; //FrutiBank nop
public static string BaseUrl = "https://shop.fruitbank.hu"; //FrutiBank nop
#endif
//public static string BaseUrl = "http://10.0.2.2:59579"; //FrutiBank (android) nop

View File

@ -11,6 +11,7 @@ public interface IShippingDocument: IEntityInt, ITimeStampInfo//, IMeasured
public int? ShippingId { get; set; }
public string DocumentIdNumber { get; set; }
public string PdfFileName { get; set; }
public DateTime ShippingDate { get; set; }
public string Country { get; set; }

View File

@ -53,6 +53,7 @@
<DxGridDataColumn FieldName="TotalPallets" />
<DxGridDataColumn FieldName="IsAllMeasured" ReadOnly="true"/>
<DxGridDataColumn FieldName="Comment" />
<DxGridDataColumn FieldName="PdfFileName" />
<DxGridDataColumn FieldName="Created"ReadOnly="true" />
<DxGridDataColumn FieldName="Modified" ReadOnly="true"/>
<DxGridCommandColumn Visible="!IsMasterGrid" Width="120"></DxGridCommandColumn>

View File

@ -60,6 +60,7 @@
</DxGridDataColumn>
<DxGridDataColumn FieldName="NameOnDocument" MinWidth="120" Caption="Name(OnDoc)" />
<DxGridDataColumn FieldName="Name" MinWidth="120" Caption="Name" Visible="false" />
<DxGridDataColumn FieldName="PalletsOnDocument" Caption="Raklap(OnDoc)" />
<DxGridDataColumn FieldName="QuantityOnDocument" Caption="Mennyiség(OnDoc)" />
<DxGridDataColumn FieldName="NetWeightOnDocument" Caption="Net.súly(OnDoc)" />