Author: mbrohl
Date: Thu Dec 21 12:38:19 2017
New Revision: 1818922
URL:
http://svn.apache.org/viewvc?rev=1818922&view=revLog:
Fixed: Replace hard coded error message String with more suitable
uiLabel in CheckoutHelper.createOrder.
(OFBIZ-10107)
Thanks Kyra Pritzel-Hentley for reporting and
for providing the patches.
Modified:
ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/CheckOutHelper.java
Modified: ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/CheckOutHelper.java
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/CheckOutHelper.java?rev=1818922&r1=1818921&r2=1818922&view=diff==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/CheckOutHelper.java (original)
+++ ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/CheckOutHelper.java Thu Dec 21 12:38:19 2017
@@ -661,7 +661,7 @@ public class CheckOutHelper {
} catch (GenericEntityException e) {
String service = e.getMessage();
Map<String, String> messageMap = UtilMisc.toMap("service", service);
- String errMsg = "Problem accessing the Product entity";
+ String errMsg = UtilProperties.getMessage(resource_error, "checkhelper.problems_reading_database", cart.getLocale());
errMsg += UtilProperties.getMessage(resource_error, "checkhelper.could_not_create_order_invoking_service", messageMap, cart.getLocale());
Debug.logError(e, errMsg, module);
return ServiceUtil.returnError(errMsg);