fixes
This commit is contained in:
parent
684a805d53
commit
a53a136b56
|
|
@ -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; }
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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)" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue