bug? ExportManager.cs (row 1030) BillingCountry instead of ShippingCountry

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 years ago
Hi,

forgive me if this is not the right place to submit bug suspicions, but I couldn't find a better one (please address me to the right place).

In nopCommerce 1.40, inside the source file:

nopCommerce_1.40/Libraries/Nop.BusinessLogic/ExportImport/ExportManager.cs

around row 1030, in method ExportOrdersToXLS, there's:

...
sb.Append('"'); sb.Append(order.ShippingStateProvince.Replace('"', '\'')); sb.Append("\",");
sb.Append('"'); sb.Append(order.ShippingZipPostalCode.Replace('"', '\'')); sb.Append("\",");
sb.Append('"'); sb.Append(order.BillingCountry.Replace('"', '\'')); sb.Append("\",");
sb.Append('"'); sb.Append(order.ShippingMethod.Replace('"', '\'')); sb.Append("\",");
...

Shouldn't it be ShippingCountry?


thanks


pietro
14 years ago
You're right. We'll fix it in the next release
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.