svn commit: r740491 - in /ofbiz/trunk: applications/party/script/org/ofbiz/party/customer/ applications/party/script/org/ofbiz/party/party/ applications/party/script/org/ofbiz/party/user/ specialpurpose/projectmgr/script/org/ofbiz/project/

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r740491 - in /ofbiz/trunk: applications/party/script/org/ofbiz/party/customer/ applications/party/script/org/ofbiz/party/party/ applications/party/script/org/ofbiz/party/user/ specialpurpose/projectmgr/script/org/ofbiz/project/

jleroux@apache.org
Author: jleroux
Date: Tue Feb  3 22:31:51 2009
New Revision: 740491

URL: http://svn.apache.org/viewvc?rev=740491&view=rev
Log:
Horrible (it takes a machine..., mine :/)
<field-to-request field="(.*)" request-name="(.*)" request-name="(.*)"/>
fixed by hand

Modified:
    ofbiz/trunk/applications/party/script/org/ofbiz/party/customer/CustomerEvents.xml
    ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleEvents.xml
    ofbiz/trunk/applications/party/script/org/ofbiz/party/user/UserEvents.xml
    ofbiz/trunk/specialpurpose/projectmgr/script/org/ofbiz/project/ProjectSimpleEvents.xml

Modified: ofbiz/trunk/applications/party/script/org/ofbiz/party/customer/CustomerEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/customer/CustomerEvents.xml?rev=740491&r1=740490&r2=740491&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/script/org/ofbiz/party/customer/CustomerEvents.xml (original)
+++ ofbiz/trunk/applications/party/script/org/ofbiz/party/customer/CustomerEvents.xml Tue Feb  3 22:31:51 2009
@@ -346,7 +346,7 @@
         <call-service service-name="createPartyContactMechPurpose" in-map-name="emailPurposeContext"/>
 
         <!-- set the partyId in the request -->
-        <field-to-request field="partyId" request-name="tempMap" request-name="partyId"/>
+        <field-to-request field="tempMap.partyId" request-name="partyId"/>
 
     </simple-method>
 </simple-methods>

Modified: ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleEvents.xml?rev=740491&r1=740490&r2=740491&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleEvents.xml (original)
+++ ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleEvents.xml Tue Feb  3 22:31:51 2009
@@ -97,7 +97,7 @@
             <result-to-field result-name="contentId" field="contentId"/>    
         </call-service>  
         <!-- set the partyId in the request -->
-        <field-to-request field="partyId" request-name="formInput.formInput" request-name="partyId"/>
+        <field-to-request field="formInput.formInput.partyId" request-name="partyId"/>
         <field-to-request field="contentId" request-name="contentId"/>
     </simple-method>
     <!-- Update party content -->
@@ -123,7 +123,7 @@
             <result-to-field result-name="contentId" field="contentId"/>    
          </call-service>  
         <!-- set the partyId in the request -->
-        <field-to-request field="partyId" request-name="formInput.formInput" request-name="partyId"/>
+        <field-to-request field="formInput.formInput.partyId" request-name="partyId"/>
         <field-to-request field="contentId" request-name="contentId"/>
     </simple-method>
     

Modified: ofbiz/trunk/applications/party/script/org/ofbiz/party/user/UserEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/user/UserEvents.xml?rev=740491&r1=740490&r2=740491&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/script/org/ofbiz/party/user/UserEvents.xml (original)
+++ ofbiz/trunk/applications/party/script/org/ofbiz/party/user/UserEvents.xml Tue Feb  3 22:31:51 2009
@@ -391,7 +391,7 @@
             <call-service service-name="createPartyContactMechPurpose" in-map-name="emailPurposeContext"/>
         </if-not-empty>
         <!-- set the partyId in the request -->
-        <field-to-request field="partyId" request-name="tempMap" request-name="partyId"/>
+        <field-to-request field="tempMap.partyId" request-name="partyId"/>
 
         <!--send New User Email Notification-->
         <set field="emailContext.partyId" from-field="partyId"/>

Modified: ofbiz/trunk/specialpurpose/projectmgr/script/org/ofbiz/project/ProjectSimpleEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/script/org/ofbiz/project/ProjectSimpleEvents.xml?rev=740491&r1=740490&r2=740491&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/projectmgr/script/org/ofbiz/project/ProjectSimpleEvents.xml (original)
+++ ofbiz/trunk/specialpurpose/projectmgr/script/org/ofbiz/project/ProjectSimpleEvents.xml Tue Feb  3 22:31:51 2009
@@ -141,8 +141,8 @@
             <result-to-field result-name="contentId" field="contentId"/>
         </call-service>
         <!-- set the partyId in the request -->
-        <field-to-request field="workEffortId" request-name="context" request-name="workEffortId"/>
-        <field-to-request field="projectId" request-name="context" request-name="projectId"/>
+        <field-to-request field="context.workEffortId" request-name="workEffortId"/>
+        <field-to-request field="context.projectId" request-name="projectId"/>
         <field-to-request field="contentId" request-name="contentId"/>
     </simple-method>