Author: rishi
Date: Sat Sep  9 16:01:39 2017
New Revision: 1807915

URL: http://svn.apache.org/viewvc?rev=1807915&view=rev
Log:
Reverted: Test Integration failed due to fix done in 1807908. OFBIZ-8323

Modified:
    
ofbiz/ofbiz-framework/trunk/framework/service/src/main/java/org/apache/ofbiz/service/engine/EntityAutoEngine.java

Modified: 
ofbiz/ofbiz-framework/trunk/framework/service/src/main/java/org/apache/ofbiz/service/engine/EntityAutoEngine.java
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/service/src/main/java/org/apache/ofbiz/service/engine/EntityAutoEngine.java?rev=1807915&r1=1807914&r2=1807915&view=diff
==============================================================================
--- 
ofbiz/ofbiz-framework/trunk/framework/service/src/main/java/org/apache/ofbiz/service/engine/EntityAutoEngine.java
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/framework/service/src/main/java/org/apache/ofbiz/service/engine/EntityAutoEngine.java
 Sat Sep  9 16:01:39 2017
@@ -112,18 +112,22 @@ public final class EntityAutoEngine exte
             switch (modelService.invoke) {
             case "create":
                 result = invokeCreate(dctx, parameters, modelService, 
modelEntity, allPksInOnly, pkFieldNameOutOnly);
+                result.put(ModelService.SUCCESS_MESSAGE, 
UtilProperties.getMessage("ServiceUiLabels", "EntityCreatedSuccessfully", 
UtilMisc.toMap("entityName", modelEntity.getEntityName()), locale));
                 break;
             case "update":
                 result = invokeUpdate(dctx, parameters, modelService, 
modelEntity, allPksInOnly);
+                result.put(ModelService.SUCCESS_MESSAGE, 
UtilProperties.getMessage("ServiceUiLabels", "EntityUpdatedSuccessfully", 
UtilMisc.toMap("entityName", modelEntity.getEntityName()), locale));
                 break;
             case "delete":
                 result = invokeDelete(dctx, parameters, modelService, 
modelEntity, allPksInOnly);
+                result.put(ModelService.SUCCESS_MESSAGE, 
UtilProperties.getMessage("ServiceUiLabels", "EntityDeletedSuccessfully", 
UtilMisc.toMap("entityName", modelEntity.getEntityName()), locale));
                 break;
             case "expire":
                 result = invokeExpire(dctx, parameters, modelService, 
modelEntity, allPksInOnly);
                 if (ServiceUtil.isSuccess(result)) {
                     result = invokeUpdate(dctx, parameters, modelService, 
modelEntity, allPksInOnly);
                 }
+                result.put(ModelService.SUCCESS_MESSAGE, 
UtilProperties.getMessage("ServiceUiLabels", "EntityExpiredSuccessfully", 
UtilMisc.toMap("entityName", modelEntity.getEntityName()), locale));
                 break;
             default:
                 break;
@@ -144,6 +148,7 @@ public final class EntityAutoEngine exte
     private static Map<String, Object> invokeCreate(DispatchContext dctx, 
Map<String, Object> parameters, ModelService modelService, ModelEntity 
modelEntity, boolean allPksInOnly, List<String> pkFieldNameOutOnly)
             throws GeneralException {
         Locale locale = (Locale) parameters.get("locale");
+        Map<String, Object> result = ServiceUtil.returnSuccess();
 
         GenericValue newEntity = 
dctx.getDelegator().makeValue(modelEntity.getEntityName());
 
@@ -355,7 +360,6 @@ public final class EntityAutoEngine exte
             }
         }
         newEntity.create();
-        Map<String, Object> result = 
ServiceUtil.returnSuccess(UtilProperties.getMessage("ServiceUiLabels", 
"EntityCreatedSuccessfully", UtilMisc.toMap("entityName", 
modelEntity.getEntityName()), locale));
         result.put("crudValue", newEntity);
         return result;
     }
@@ -468,7 +472,6 @@ public final class EntityAutoEngine exte
 
         lookedUpValue.store();
         result.put("crudValue", lookedUpValue);
-        
result.put(ModelService.SUCCESS_MESSAGE,ServiceUtil.returnSuccess(UtilProperties.getMessage("ServiceUiLabels",
 "EntityUpdatedSuccessfully", UtilMisc.toMap("entityName", 
modelEntity.getEntityName()), locale)));
         return result;
     }
 
@@ -499,8 +502,7 @@ public final class EntityAutoEngine exte
             return ServiceUtil.returnError(UtilProperties.getMessage(resource, 
"ServiceValueNotFoundForRemove", locale));
         }
         lookedUpValue.remove();
-        Map<String, Object> result = 
ServiceUtil.returnSuccess(UtilProperties.getMessage("ServiceUiLabels", 
"EntityDeletedSuccessfully", UtilMisc.toMap("entityName", 
modelEntity.getEntityName()), locale));
-        return result;
+        return ServiceUtil.returnSuccess();
     }
 
     /**
@@ -564,7 +566,6 @@ public final class EntityAutoEngine exte
         }
         if (Debug.infoOn())
             Debug.logInfo(" parameters OUT  : " + parameters, module);
-        Map<String, Object> result = 
ServiceUtil.returnSuccess(UtilProperties.getMessage("ServiceUiLabels", 
"EntityExpiredSuccessfully", UtilMisc.toMap("entityName", 
modelEntity.getEntityName()), locale));
-        return result;
+        return ServiceUtil.returnSuccess();
     }
 }


Reply via email to