You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ha...@apache.org on 2009/04/06 10:32:14 UTC

svn commit: r762251 - /ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/controller.xml

Author: hansbak
Date: Mon Apr  6 08:32:13 2009
New Revision: 762251

URL: http://svn.apache.org/viewvc?rev=762251&view=rev
Log:
return from contact gave error, fixed by using profile request from the party manager

Modified:
    ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/controller.xml

Modified: ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/controller.xml?rev=762251&r1=762250&r2=762251&view=diff
==============================================================================
--- ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/controller.xml (original)
+++ ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/controller.xml Mon Apr  6 08:32:13 2009
@@ -84,7 +84,7 @@
     <request-map uri="createLead">
         <security https="true" auth="true"/>
         <event type="service" invoke="createLead"/>
-        <response name="success" type="view" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
         <response name="error" type="view" value="CreateLead"/>
     </request-map>
     <request-map uri="ConvertLead">
@@ -94,7 +94,7 @@
     <request-map uri="convertLead">
         <security https="true" auth="true"/>
         <event type="service" invoke="convertLeadToContact"/>
-        <response name="success" type="view" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
         <response name="error" type="view" value="ConvertLead"/>  
     </request-map>
     <request-map uri="CloneLead">
@@ -110,7 +110,7 @@
         <!-- TO DO
         <event type="service" invoke="mergeLeads"/>
         -->
-        <response name="success" type="view" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
         <response name="error" type="view" value="MergeLeads"/>
     </request-map>
     <request-map uri="CreateLeadFromVCard">
@@ -120,13 +120,13 @@
     <request-map uri="createLeadFromVCard">
         <security https="true" auth="true"/>
         <event type="service" invoke="importVCard"/>
-        <response name="success" type="view" value="viewprofile"/><!-- What would be the view in case a vCard has more than one contact -->
+        <response name="success" type="request" value="viewprofile"/><!-- What would be the view in case a vCard has more than one contact -->
         <response name="error" type="view" value="CreateLeadFromVCard"/>
     </request-map>  
     <request-map uri="quickAddLead">
         <security https="true" auth="true"/>
         <event type="service" invoke="createLead"/>
-        <response name="success" type="view" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
     </request-map>   
     <!-- Contact Requests -->
     <request-map uri="FindContacts">
@@ -140,7 +140,7 @@
     <request-map uri="createContact">
         <security https="true" auth="true"/>
         <event type="service" invoke="createContact"/>
-        <response name="success" type="view" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
         <response name="error" type="view" value="CreateContact"/>
     </request-map>
     <request-map uri="MergeContacts">
@@ -150,7 +150,7 @@
     <request-map uri="mergeContacts">
         <security https="true" auth="true"/>
         <event type="service" invoke="mergeContacts"/>
-        <response name="success" type="view" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
         <response name="error" type="view" value="MergeContacts"/>
     </request-map>
     <request-map uri="CreateContactFromVCard">
@@ -160,7 +160,7 @@
     <request-map uri="createContactFromVCard">
         <security https="true" auth="true"/>
         <event type="service" invoke="importVCard"/>
-        <response name="success" type="view" value="viewprofile"/><!-- What would be the view in case a vCard contains more than one contact -->
+        <response name="success" type="request" value="viewprofile"/><!-- What would be the view in case a vCard contains more than one contact -->
         <response name="error" type="view" value="CreateContactFromVCard"/>
     </request-map>
     <request-map uri="createVCardFromContact">
@@ -172,7 +172,7 @@
     <request-map uri="quickAddContact">
         <security https="true" auth="true"/>
         <event type="service" invoke="createContact"/>
-        <response name="success" type="view" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
     </request-map>
      
     <!-- Forecast Requests -->