case 4341

This commit is contained in:
2022-12-13 23:09:34 +00:00
parent 3abe0c0379
commit 4d1c95c375
13 changed files with 113 additions and 1 deletions

View File

@@ -856,6 +856,11 @@ namespace AyaNova.Util
ho.City = Fake.Address.City();
ho.Region = Fake.Address.State();
ho.Country = Fake.Address.Country();
ho.PostAddress = Fake.Address.StreetAddress();
ho.PostCity = ho.City;
ho.PostRegion = ho.Region;
ho.PostCountry = ho.Country;
ho.AddressPostal = ho.PostCode = Fake.Address.ZipCode();
ho.Phone1 = Fake.Phone.PhoneNumber();
ho.Phone2 = Fake.Phone.PhoneNumber();
@@ -902,6 +907,11 @@ namespace AyaNova.Util
o.City = Fake.Address.City();
o.Region = Fake.Address.State();
o.Country = Fake.Address.Country();
o.PostAddress = Fake.Address.StreetAddress();
o.PostCity = o.City;
o.PostRegion = o.Region;
o.PostCountry = o.Country;
o.AddressPostal = o.PostCode = Fake.Address.ZipCode();
o.Phone1 = Fake.Phone.PhoneNumber();
o.Phone2 = Fake.Phone.PhoneNumber();
@@ -989,6 +999,12 @@ namespace AyaNova.Util
o.Region = Fake.Address.State();
o.Country = Fake.Address.Country();
o.PostAddress = Fake.Address.StreetAddress();
o.PostCity = o.City;
o.PostRegion = o.Region;
o.PostCountry = o.Country;
o.AddressPostal = o.PostCode = Fake.Address.ZipCode();
o.Phone1 = Fake.Phone.PhoneNumber();
o.Phone2 = Fake.Phone.PhoneNumber();
o.Phone3 = Fake.Phone.PhoneNumber();
@@ -2131,6 +2147,12 @@ namespace AyaNova.Util
o.Region = Fake.Address.State();
o.Country = Fake.Address.Country();
o.PostAddress = Fake.Address.StreetAddress();
o.PostCity = o.City;
o.PostRegion = o.Region;
o.PostCountry = o.Country;
o.AddressPostal = o.PostCode = Fake.Address.ZipCode();
o.Phone1 = Fake.Phone.PhoneNumber();
o.Phone2 = Fake.Phone.PhoneNumber();
o.Phone3 = Fake.Phone.PhoneNumber();
@@ -3903,6 +3925,7 @@ namespace AyaNova.Util
o.City = cust.City;
o.Region = cust.Region;
o.Country = cust.Country;
o.AddressPostal = cust.AddressPostal;
if (cust.BillHeadOffice && cust.HeadOfficeId != null)