invoicePrefix = ObjectUtils.toString(settings.get(SettingKey.INVOICE_PREFIX));
}else{
invoicePrefix = getSettingService().getConfig(SettingKey.CFG_INVOICE_PREFIX);
}
Country country = countryAdminModel.get(orderForm.getPaymentCountryId(), Country.class);
String shippingCountry = country.getName();
String shippingAddrFmt = country.getAddressFormat();
Zone zone = zoneAdminModel.get(orderForm.getShippingZoneId());
String shippingZone = zone.getName();
country = countryAdminModel.get(orderForm.getPaymentCountryId(), Country.class);
String paymentCountry = country.getName();
String paymentAddrFmt = country.getAddressFormat();
zone = zoneAdminModel.get(orderForm.getPaymentZoneId());
String paymentZone = zone.getName();
String currencyCode = getSettingService().getConfig(SettingKey.CFG_CURRENCY);