Skip to content

Commit 8401e3a

Browse files
committed
Fixed minor issue
1 parent 3d9fea5 commit 8401e3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Libraries/SmartStore.Services/ExportImport/ExportManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1487,7 +1487,7 @@ public virtual void ExportCustomersToXlsx(Stream stream, IList<Customer> custome
14871487
var stateProvinceId = customer.GetAttribute<int>(SystemCustomerAttributeNames.StateProvinceId);
14881488
var phone = customer.GetAttribute<string>(SystemCustomerAttributeNames.Phone);
14891489
var fax = customer.GetAttribute<string>(SystemCustomerAttributeNames.Fax);
1490-
var vatNumber = customer.GetAttribute<int>(SystemCustomerAttributeNames.VatNumber);
1490+
var vatNumber = customer.GetAttribute<string>(SystemCustomerAttributeNames.VatNumber);
14911491
var vatNumberStatusId = customer.GetAttribute<string>(SystemCustomerAttributeNames.VatNumberStatusId);
14921492
var timeZoneId = customer.GetAttribute<string>(SystemCustomerAttributeNames.TimeZoneId);
14931493

0 commit comments

Comments
 (0)