Skip to content

Commit

Permalink
Fixed minor issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mgesing committed May 5, 2014
1 parent 3d9fea5 commit 8401e3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ public virtual void ExportCustomersToXlsx(Stream stream, IList<Customer> custome
var stateProvinceId = customer.GetAttribute<int>(SystemCustomerAttributeNames.StateProvinceId);
var phone = customer.GetAttribute<string>(SystemCustomerAttributeNames.Phone);
var fax = customer.GetAttribute<string>(SystemCustomerAttributeNames.Fax);
var vatNumber = customer.GetAttribute<int>(SystemCustomerAttributeNames.VatNumber);
var vatNumber = customer.GetAttribute<string>(SystemCustomerAttributeNames.VatNumber);
var vatNumberStatusId = customer.GetAttribute<string>(SystemCustomerAttributeNames.VatNumberStatusId);
var timeZoneId = customer.GetAttribute<string>(SystemCustomerAttributeNames.TimeZoneId);

Expand Down

0 comments on commit 8401e3a

Please sign in to comment.