Hi,

Using nopCommerce 3.1, how do I get the customer's default currency?

if (od.Customer != null && od.Customer.Currency != null)
                {
                    od.Customer.Currency.CurrencyCode;
                }
                else
                {
                    od.CustomerCurrencyCode;
                }


od is a nopCommerce Order model object.