case 4341
This commit is contained in:
@@ -40,6 +40,7 @@ Any field in the import file that is not listed on this page will be removed bef
|
||||
- City
|
||||
- Region
|
||||
- Country
|
||||
- AddressPostal
|
||||
- Latitude
|
||||
- Longitude
|
||||
|
||||
|
||||
@@ -38,6 +38,7 @@ Any field in the import file that is not listed on this page will be removed bef
|
||||
- City
|
||||
- Region
|
||||
- Country
|
||||
- AddressPostal
|
||||
- Latitude
|
||||
- Longitude
|
||||
|
||||
|
||||
@@ -39,6 +39,7 @@ Any field in the import file that is not listed on this page will be removed bef
|
||||
- City
|
||||
- Region
|
||||
- Country
|
||||
- AddressPostal
|
||||
- Latitude
|
||||
- Longitude
|
||||
|
||||
|
||||
@@ -146,6 +146,7 @@ namespace AyaNova.Biz
|
||||
l.Add(new FormField { TKey = "AddressCity", FieldKey = "City" });
|
||||
l.Add(new FormField { TKey = "AddressStateProv", FieldKey = "Region" });
|
||||
l.Add(new FormField { TKey = "AddressCountry", FieldKey = "Country" });
|
||||
l.Add(new FormField { TKey = "AddressPostal", FieldKey = "AddressPostal" });
|
||||
l.Add(new FormField { TKey = "AddressLatitude", FieldKey = "Latitude" });
|
||||
l.Add(new FormField { TKey = "AddressLongitude", FieldKey = "Longitude" });
|
||||
l.Add(new FormField { TKey = "AddressPostalDeliveryAddress", FieldKey = "PostAddress" });
|
||||
@@ -196,6 +197,7 @@ namespace AyaNova.Biz
|
||||
l.Add(new FormField { TKey = "AddressCity", FieldKey = "City" });
|
||||
l.Add(new FormField { TKey = "AddressStateProv", FieldKey = "Region" });
|
||||
l.Add(new FormField { TKey = "AddressCountry", FieldKey = "Country" });
|
||||
l.Add(new FormField { TKey = "AddressPostal", FieldKey = "AddressPostal" });
|
||||
l.Add(new FormField { TKey = "AddressLatitude", FieldKey = "Latitude" });
|
||||
l.Add(new FormField { TKey = "AddressLongitude", FieldKey = "Longitude" });
|
||||
l.Add(new FormField { TKey = "AddressPostalDeliveryAddress", FieldKey = "PostAddress" });
|
||||
@@ -701,6 +703,7 @@ namespace AyaNova.Biz
|
||||
l.Add(new FormField { TKey = "AddressCity", FieldKey = "City" });
|
||||
l.Add(new FormField { TKey = "AddressStateProv", FieldKey = "Region" });
|
||||
l.Add(new FormField { TKey = "AddressCountry", FieldKey = "Country" });
|
||||
l.Add(new FormField { TKey = "AddressPostal", FieldKey = "AddressPostal" });
|
||||
l.Add(new FormField { TKey = "AddressLatitude", FieldKey = "Latitude" });
|
||||
l.Add(new FormField { TKey = "AddressLongitude", FieldKey = "Longitude" });
|
||||
|
||||
@@ -788,6 +791,7 @@ namespace AyaNova.Biz
|
||||
l.Add(new FormField { TKey = "AddressCity", FieldKey = "City" });
|
||||
l.Add(new FormField { TKey = "AddressStateProv", FieldKey = "Region" });
|
||||
l.Add(new FormField { TKey = "AddressCountry", FieldKey = "Country" });
|
||||
l.Add(new FormField { TKey = "AddressPostal", FieldKey = "AddressPostal" });
|
||||
l.Add(new FormField { TKey = "AddressLatitude", FieldKey = "Latitude" });
|
||||
l.Add(new FormField { TKey = "AddressLongitude", FieldKey = "Longitude" });
|
||||
l.Add(new FormField { TKey = "AddressPostalDeliveryAddress", FieldKey = "PostAddress" });
|
||||
|
||||
@@ -121,6 +121,7 @@ namespace AyaNova.Biz
|
||||
vc.Add(ds.City, "custcity", pid);
|
||||
vc.Add(ds.Region, "custregion", pid);
|
||||
vc.Add(ds.Country, "custcountry", pid);
|
||||
vc.Add(ds.AddressPostal, "custaddresspostal", pid);
|
||||
vc.Add(ds.Latitude.ToString(), "custlat", pid);
|
||||
vc.Add(ds.Longitude.ToString(), "custlong", pid);
|
||||
vc.Add(ds.PostAddress, "custpostaddr", pid);
|
||||
@@ -143,6 +144,7 @@ namespace AyaNova.Biz
|
||||
po.DropShipToCustomerCityViz = vc.Get("custcity", pid);
|
||||
po.DropShipToCustomerRegionViz = vc.Get("custregion", pid);
|
||||
po.DropShipToCustomerCountryViz = vc.Get("custcountry", pid);
|
||||
po.DropShipToCustomerAddressPostalViz = vc.Get("custaddresspostal", pid);
|
||||
po.DropShipToCustomerLatitudeViz = vc.GetAsDecimal("custlat", pid);
|
||||
po.DropShipToCustomerLongitudeViz = vc.GetAsDecimal("custlong", pid);
|
||||
po.DropShipToCustomerPostAddressViz = vc.Get("custpostaddr", pid);
|
||||
|
||||
@@ -66,6 +66,9 @@ namespace AyaNova.Models
|
||||
public string DropShipToCustomerRegionViz { get; set; }
|
||||
[NotMapped]
|
||||
public string DropShipToCustomerCountryViz { get; set; }
|
||||
[NotMapped]
|
||||
public string DropShipToCustomerAddressPostalViz { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
public decimal? DropShipToCustomerLatitudeViz { get; set; }
|
||||
[NotMapped]
|
||||
|
||||
Reference in New Issue
Block a user