You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/12/31 21:31:28 UTC

svn commit: r730468 - in /ofbiz/trunk: applications/accounting/script/org/ofbiz/accounting/payment/ applications/content/script/org/ofbiz/content/content/ applications/content/script/org/ofbiz/content/layout/ applications/ecommerce/script/org/ofbiz/eco...

Author: jleroux
Date: Wed Dec 31 12:31:28 2008
New Revision: 730468

URL: http://svn.apache.org/viewvc?rev=730468&view=rev
Log:
<result-to-field(.*)map-name => <result-to-field$1map
on *SimpleMethods*.xml, *events*.xml, *formula*.xml, *services*.xml, *tests*.xml

Modified:
    ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMethodServices.xml
    ofbiz/trunk/applications/content/script/org/ofbiz/content/content/ContentServices.xml
    ofbiz/trunk/applications/content/script/org/ofbiz/content/layout/LayoutEvents.xml
    ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml
    ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/misc/AffiliateSimpleEvents.xml
    ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/techdata/RoutingSimpleEvents.xml
    ofbiz/trunk/applications/order/script/org/ofbiz/order/customer/CustomerEvents.xml
    ofbiz/trunk/applications/order/script/org/ofbiz/order/request/CustRequestServices.xml
    ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/ContactMechServices.xml
    ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml
    ofbiz/trunk/applications/party/script/org/ofbiz/party/customer/CustomerEvents.xml
    ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleMethods.xml
    ofbiz/trunk/applications/party/script/org/ofbiz/party/user/UserEvents.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryContentServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/config/ProductConfigItemContentServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/StockMoveServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/product/ProductContentServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/FacilityContactMechServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml
    ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/workeffort/WorkEffortSimpleServices.xml
    ofbiz/trunk/specialpurpose/assetmaint/script/org/ofbiz/assetmaint/FixedAssetMaintEvents.xml

Modified: ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMethodServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMethodServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMethodServices.xml (original)
+++ ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMethodServices.xml Wed Dec 31 12:31:28 2008
@@ -30,7 +30,7 @@
         <iterate entry="orderHeaderAndPaymentPref" list="orderHeaderAndPaymentPrefs" >
             <field-to-field map-name="orderHeaderAndPaymentPref" field-name="orderId" to-map-name="captureParams" />
             <call-service service-name="capturePayment" in-map-name="captureParams" error-code="ignore-error">
-                <result-to-field map-name="captureResult" result-name="responseMessage" />
+                <result-to-field map="captureResult" result-name="responseMessage" />
             </call-service>
             <if-compare operator="equals" field="captureResult.responseMessage" value="error">
                 <field-to-list map-name="orderHeaderAndPaymentPref" field="orderId" list="badOrders" />

Modified: ofbiz/trunk/applications/content/script/org/ofbiz/content/content/ContentServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/script/org/ofbiz/content/content/ContentServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/script/org/ofbiz/content/content/ContentServices.xml (original)
+++ ofbiz/trunk/applications/content/script/org/ofbiz/content/content/ContentServices.xml Wed Dec 31 12:31:28 2008
@@ -592,19 +592,19 @@
         <set-service-fields service-name="createContent" map="parameters" to-map="createSubjectContent"/>
         <set from-field="parameters.subject" field="createSubjectEtext.textData"/>
         <call-service service-name="createElectronicText" in-map-name="createSubjectEtext">
-            <result-to-field result-name="dataResourceId" map-name="createSubjectContent"/>
+            <result-to-field result-name="dataResourceId" map="createSubjectContent"/>
         </call-service>
         <call-service service-name="createContent" in-map-name="createSubjectContent">
-            <result-to-field result-name="contentId" map-name="createBodyAssoc"/>
+            <result-to-field result-name="contentId" map="createBodyAssoc"/>
         </call-service>
 
         <!-- Create plain body -->
         <set from-field="parameters.plainBody" field="createPlainBodyEtext.textData"/>
         <call-service service-name="createElectronicText" in-map-name="createPlainBodyEtext">
-            <result-to-field result-name="dataResourceId" map-name="createPlainBodyContent"/>
+            <result-to-field result-name="dataResourceId" map="createPlainBodyContent"/>
         </call-service>
         <call-service service-name="createContent" in-map-name="createPlainBodyContent">
-            <result-to-field result-name="contentId" map-name="createBodyAssoc" field="contentIdTo"/>
+            <result-to-field result-name="contentId" map="createBodyAssoc" field="contentIdTo"/>
         </call-service>
         <!-- Create content assoc between subject and plain body -->
         <set value="TREE_CHILD" field="createBodyAssoc.contentAssocTypeId"/>
@@ -614,10 +614,10 @@
         <!-- Create HTML body -->
         <set from-field="parameters.htmlBody" field="createHtmlBodyEtext.textData"/>
         <call-service service-name="createElectronicText" in-map-name="createHtmlBodyEtext">
-            <result-to-field result-name="dataResourceId" map-name="createHtmlBodyContent"/>
+            <result-to-field result-name="dataResourceId" map="createHtmlBodyContent"/>
         </call-service>
         <call-service service-name="createContent" in-map-name="createHtmlBodyContent">
-            <result-to-field result-name="contentId" map-name="createBodyAssoc" field="contentIdTo"/>
+            <result-to-field result-name="contentId" map="createBodyAssoc" field="contentIdTo"/>
         </call-service>
         <!-- Create content assoc between subject and html body -->
         <set value="htmlBody" field="createBodyAssoc.mapKey"/>
@@ -657,7 +657,7 @@
         <set-service-fields service-name="createContent" map="parameters" to-map="createDownloadContent"/>
         <set from-field="parameters.file" field="createDownload.dataResourceContent"/>
         <call-service service-name="createOtherDataResource" in-map-name="createDownload">
-            <result-to-field result-name="dataResourceId" map-name="createDownloadContent"/>
+            <result-to-field result-name="dataResourceId" map="createDownloadContent"/>
         </call-service>
         <call-service service-name="createContent" in-map-name="createDownloadContent">
             <result-to-result result-name="contentId"/>
@@ -692,8 +692,8 @@
         <set value="FTL" field="createSimpleTextDataResource.dataTemplateTypeId"/>
         
         <call-service service-name="createDataResource" in-map-name="createSimpleTextDataResource">
-            <result-to-field result-name="dataResourceId" map-name="createSimpleText"/>
-            <result-to-field result-name="dataResourceId" map-name="createSimpleTextContent"/>
+            <result-to-field result-name="dataResourceId" map="createSimpleText"/>
+            <result-to-field result-name="dataResourceId" map="createSimpleTextContent"/>
         </call-service>
         
         <call-service service-name="createElectronicText" in-map-name="createSimpleText"/>

Modified: ofbiz/trunk/applications/content/script/org/ofbiz/content/layout/LayoutEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/script/org/ofbiz/content/layout/LayoutEvents.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/script/org/ofbiz/content/layout/LayoutEvents.xml (original)
+++ ofbiz/trunk/applications/content/script/org/ofbiz/content/layout/LayoutEvents.xml Wed Dec 31 12:31:28 2008
@@ -113,10 +113,10 @@
         <set field="context.contentTypeId" value="DOCUMENT"/>
 
         <call-service in-map-name="context" service-name="persistContentAndAssoc">
-            <result-to-field map-name="context2" field="activeContentId" result-name="contentId"/>
+            <result-to-field map="context2" field="activeContentId" result-name="contentId"/>
             <result-to-field field="dataResourceId" result-name="dataResourceId"/>
-            <result-to-field map-name="context2" field="contentAssocTypeId" result-name="contentAssocTypeId"/>
-            <result-to-field map-name="context2" field="fromDate" result-name="fromDate"/>
+            <result-to-field map="context2" field="contentAssocTypeId" result-name="contentAssocTypeId"/>
+            <result-to-field map="context2" field="fromDate" result-name="fromDate"/>
         </call-service>
         <check-errors/>
 
@@ -209,10 +209,10 @@
         <set field="context.contentTypeId" value="DOCUMENT"/>
 
         <call-service in-map-name="context" service-name="persistContentAndAssoc">
-            <result-to-field map-name="context2" field="activeContentId" result-name="contentId"/>
+            <result-to-field map="context2" field="activeContentId" result-name="contentId"/>
             <result-to-field field="dataResourceId" result-name="dataResourceId"/>
-            <result-to-field map-name="context2" field="contentAssocTypeId" result-name="contentAssocTypeId"/>
-            <result-to-field map-name="context2" field="fromDate" result-name="fromDate"/>
+            <result-to-field map="context2" field="contentAssocTypeId" result-name="contentAssocTypeId"/>
+            <result-to-field map="context2" field="fromDate" result-name="fromDate"/>
         </call-service>
         <check-errors/>
 
@@ -267,10 +267,10 @@
         <set field="context.contentTypeId" value="DOCUMENT"/>
 
         <call-service in-map-name="context" service-name="persistContentAndAssoc">
-            <result-to-field map-name="context2" field="activeContentId" result-name="contentId"/>
+            <result-to-field map="context2" field="activeContentId" result-name="contentId"/>
             <result-to-field field="dataResourceId" result-name="dataResourceId"/>
-            <result-to-field map-name="context2" field="contentAssocTypeId" result-name="contentAssocTypeId"/>
-            <result-to-field map-name="context2" field="fromDate" result-name="fromDate"/>
+            <result-to-field map="context2" field="contentAssocTypeId" result-name="contentAssocTypeId"/>
+            <result-to-field map="context2" field="fromDate" result-name="fromDate"/>
         </call-service>
         <check-errors/>
 

Modified: ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml (original)
+++ ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml Wed Dec 31 12:31:28 2008
@@ -289,7 +289,7 @@
         <set from-field="newUserLogin.currentPassword" field="personUserLoginContext.currentPasswordVerify"/>
         <!-- the above copy is okay since we checked already that they are the same -->
         <call-service service-name="createPersonAndUserLogin" in-map-name="personUserLoginContext">
-            <result-to-field result-name="partyId" map-name="tempMap"/>
+            <result-to-field result-name="partyId" map="tempMap"/>
             <result-to-field field="createdUserLogin" result-name="newUserLogin"/>
         </call-service>
         <set-current-user-login value-name="createdUserLogin"/>
@@ -314,7 +314,7 @@
             <!-- address not used, do nothing -->
             <else>
                 <call-service service-name="createPartyPostalAddress" in-map-name="addressContext">
-                    <result-to-field result-name="contactMechId" map-name="addressPurposeContext"/>
+                    <result-to-field result-name="contactMechId" map="addressPurposeContext"/>
                 </call-service>
                 <set from-field="tempMap.partyId" field="addressPurposeContext.partyId"/>
                 <!-- create the shipping location -->
@@ -329,7 +329,7 @@
         <!-- home phone -->
         <if-not-empty field="parameters.CUSTOMER_HOME_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="homePhoneContext">
-                <result-to-field result-name="contactMechId" map-name="homePhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="homePhonePurposeContext"/>
             </call-service>
             <set from-field="tempMap.partyId" field="homePhonePurposeContext.partyId"/>
             <set value="PHONE_HOME" field="homePhonePurposeContext.contactMechPurposeTypeId"/>
@@ -341,7 +341,7 @@
         <!-- work phone -->
         <if-not-empty field="parameters.CUSTOMER_WORK_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="workPhoneContext">
-                <result-to-field result-name="contactMechId" map-name="workPhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="workPhonePurposeContext"/>
             </call-service>
             <set from-field="tempMap.partyId" field="workPhonePurposeContext.partyId"/>
             <set value="PHONE_WORK" field="workPhonePurposeContext.contactMechPurposeTypeId"/>
@@ -351,7 +351,7 @@
         <!-- fax phone -->
         <if-not-empty field="parameters.CUSTOMER_FAX_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="faxPhoneContext">
-                <result-to-field result-name="contactMechId" map-name="faxPhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="faxPhonePurposeContext"/>
             </call-service>
             <set from-field="tempMap.partyId" field="faxPhonePurposeContext.partyId"/>
             <set value="FAX_NUMBER" field="faxPhonePurposeContext.contactMechPurposeTypeId"/>
@@ -361,7 +361,7 @@
         <!-- mobile phone -->
         <if-not-empty field="parameters.CUSTOMER_MOBILE_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="mobilePhoneContext">
-                <result-to-field result-name="contactMechId" map-name="mobilePhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="mobilePhonePurposeContext"/>
             </call-service>
             <set from-field="tempMap.partyId" field="mobilePhonePurposeContext.partyId"/>
             <set value="PHONE_MOBILE" field="mobilePhonePurposeContext.contactMechPurposeTypeId"/>
@@ -371,7 +371,7 @@
         <!-- email address -->
         <if-not-empty field="emailContext.emailAddress">
             <call-service service-name="createPartyEmailAddress" in-map-name="emailContext">
-                <result-to-field result-name="contactMechId" map-name="emailPurposeContext"/>
+                <result-to-field result-name="contactMechId" map="emailPurposeContext"/>
             </call-service>
             <set from-field="tempMap.partyId" field="emailPurposeContext.partyId"/>
             <set value="PRIMARY_EMAIL" field="emailPurposeContext.contactMechPurposeTypeId"/>
@@ -671,7 +671,7 @@
         
         <!-- call the create person service -->
         <call-service service-name="createPerson" in-map-name="personMap">
-            <result-to-field result-name="partyId" map-name="tempMap"/>
+            <result-to-field result-name="partyId" map="tempMap"/>
             <result-to-request result-name="partyId"/>
         </call-service>
         
@@ -761,13 +761,13 @@
             <call-service service-name="updatePartyPostalAddress" in-map-name="addressContext">
                 <!-- this is needed for the "anonymous" checkout process, will be used as the shipping address -->
                 <result-to-request result-name="contactMechId"/>
-                <result-to-field result-name="contactMechId" map-name="addressContext"/>
+                <result-to-field result-name="contactMechId" map="addressContext"/>
             </call-service>
             <else>
                 <set field="addressContext.partyId" from-field="partyId"/>
                 <call-service service-name="createPartyPostalAddress" in-map-name="addressContext">
-                    <result-to-field result-name="contactMechId" map-name="addressContext"/>
-                    <result-to-field result-name="contactMechId" map-name="addressPurposeContext"/>
+                    <result-to-field result-name="contactMechId" map="addressContext"/>
+                    <result-to-field result-name="contactMechId" map="addressPurposeContext"/>
                     <result-to-request result-name="contactMechId"/>
                 </call-service>
                 

Modified: ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/misc/AffiliateSimpleEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/misc/AffiliateSimpleEvents.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/misc/AffiliateSimpleEvents.xml (original)
+++ ofbiz/trunk/applications/ecommerce/script/org/ofbiz/ecommerce/misc/AffiliateSimpleEvents.xml Wed Dec 31 12:31:28 2008
@@ -55,7 +55,7 @@
                 processor-name="newAffilPostal" in-map-name="parameters" out-map-name="pa_context"/>
         <check-errors/>
         <call-service service-name="createPostalAddress" in-map-name="pa_context">
-            <result-to-field result-name="contactMechId" map-name="parameters"/>
+            <result-to-field result-name="contactMechId" map="parameters"/>
         </call-service>
 
         <!-- Create the Postal Address Purpose -->
@@ -69,7 +69,7 @@
                 processor-name="newAffilPhone" in-map-name="parameters" out-map-name="ph_context"/>
         <check-errors/>
         <call-service service-name="createTelecomNumber" in-map-name="ph_context">
-            <result-to-field result-name="contactMechId" map-name="parameters"/>
+            <result-to-field result-name="contactMechId" map="parameters"/>
         </call-service>
 
         <!-- Create the Phone ContactMech Purpose -->
@@ -85,7 +85,7 @@
 
         <if-not-empty field="fax_context.contactNumber">
           <call-service service-name="createTelecomNumber" in-map-name="fax_context">
-              <result-to-field result-name="contactMechId" map-name="parameters"/>
+              <result-to-field result-name="contactMechId" map="parameters"/>
           </call-service>
         </if-not-empty>
 
@@ -102,7 +102,7 @@
                 processor-name="newAffilEmail" in-map-name="parameters" out-map-name="em_context"/>
         <check-errors/>
         <call-service service-name="createEmailAddress" in-map-name="em_context">
-            <result-to-field result-name="contactMechId" map-name="parameters"/>
+            <result-to-field result-name="contactMechId" map="parameters"/>
         </call-service>
 
         <!-- Create the Email ContactMech Purpose -->

Modified: ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/techdata/RoutingSimpleEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/techdata/RoutingSimpleEvents.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/techdata/RoutingSimpleEvents.xml (original)
+++ ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/techdata/RoutingSimpleEvents.xml Wed Dec 31 12:31:28 2008
@@ -30,7 +30,7 @@
                 processor-name="copyRoutingTask" in-map-name="lookedUpValue" out-map-name="context"/>
             <call-service service-name="createWorkEffort" in-map-name="context">
                 <default-message resource="ManufacturingUiLabels" property="ManufacturingRoutingTaskCopiedSuccessfully"/>
-                <result-to-field result-name="workEffortId" map-name="parameters" field="workEffortIdTo"/>
+                <result-to-field result-name="workEffortId" map="parameters" field="workEffortIdTo"/>
             </call-service>
         </if-compare>
         <if-empty field="parameters.fromDate">

Modified: ofbiz/trunk/applications/order/script/org/ofbiz/order/customer/CustomerEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/script/org/ofbiz/order/customer/CustomerEvents.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/script/org/ofbiz/order/customer/CustomerEvents.xml (original)
+++ ofbiz/trunk/applications/order/script/org/ofbiz/order/customer/CustomerEvents.xml Wed Dec 31 12:31:28 2008
@@ -206,7 +206,7 @@
             <if-compare field="parameters.useAddress" operator="equals" value="true">
                 <set from-field="partyId" field="addressContext.partyId"/>
                 <call-service service-name="createPartyPostalAddress" in-map-name="addressContext">
-                    <result-to-field result-name="contactMechId" map-name="addressPurposeContext"/>
+                    <result-to-field result-name="contactMechId" map="addressPurposeContext"/>
                     <result-to-request result-name="contactMechId"/>
                 </call-service>
                 <set from-field="tempMap.partyId" field="addressPurposeContext.partyId"/>
@@ -229,7 +229,7 @@
         
         <!-- call the create person service -->
         <call-service service-name="createPerson" in-map-name="personMap">
-            <result-to-field result-name="partyId" map-name="tempMap"/>
+            <result-to-field result-name="partyId" map="tempMap"/>
             <result-to-request result-name="partyId"/>
         </call-service>
         

Modified: ofbiz/trunk/applications/order/script/org/ofbiz/order/request/CustRequestServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/script/org/ofbiz/order/request/CustRequestServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/script/org/ofbiz/order/request/CustRequestServices.xml (original)
+++ ofbiz/trunk/applications/order/script/org/ofbiz/order/request/CustRequestServices.xml Wed Dec 31 12:31:28 2008
@@ -252,7 +252,7 @@
         <set from-field="parameters.custRequestId" field="newEntity.custRequestId"/>
         <set from-field="parameters.noteInfo" field="newNoteMap.note"/>
         <call-service service-name="createNote" in-map-name="newNoteMap">
-            <result-to-field result-name="noteId" map-name="newEntity"/>
+            <result-to-field result-name="noteId" map="newEntity"/>
         </call-service>
         <create-value value-field="newEntity"/>
         <field-to-result field="newEntity.noteId" result-name="noteId"/>
@@ -271,7 +271,7 @@
         <set from-field="parameters.custRequestItemSeqId" field="newEntity.custRequestItemSeqId"/>
         <set from-field="parameters.note" field="newNoteMap.note"/>
         <call-service service-name="createNote" in-map-name="newNoteMap">
-            <result-to-field result-name="noteId" map-name="newEntity"/>
+            <result-to-field result-name="noteId" map="newEntity"/>
         </call-service>
         <create-value value-field="newEntity"/>
         <field-to-result field="newEntity.noteId" result-name="noteId"/>

Modified: ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/ContactMechServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/ContactMechServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/ContactMechServices.xml (original)
+++ ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/ContactMechServices.xml Wed Dec 31 12:31:28 2008
@@ -72,7 +72,7 @@
             <set field="context.infoString" from-field="parameters.infoString"/>
             <call-service service-name="createContactMech" in-map-name="context">
                 <default-message resource="PartyUiLabels" property="${successMessageProperty}"/>
-                <result-to-field result-name="contactMechId" map-name="newValue"/>
+                <result-to-field result-name="contactMechId" map="newValue"/>
             </call-service>                                        
             <field-to-result map-name="newValue" field="contactMechId"/>
             <field-to-request map-name="newValue" field-name="contactMechId"/> 
@@ -104,7 +104,7 @@
         <set field="context.contactMechTypeId" value="POSTAL_ADDRESS"/>
         <call-service service-name="createContactMech" in-map-name="context">
             <default-message resource="PartyUiLabels" property="PartyPostalAddressSuccessfullyCreated"/>
-            <result-to-field result-name="contactMechId" map-name="newValue"/>
+            <result-to-field result-name="contactMechId" map="newValue"/>
         </call-service>
         <set-nonpk-fields map="parameters" value-field="newValue"/>
         <create-value value-field="newValue"/>   
@@ -139,14 +139,14 @@
             <log level="info" message="Postal address need updating"/>
             <call-service service-name="createContactMech" in-map-name="context">
                 <default-message resource="PartyUiLabels" property="PartyPostalAddressSuccessfullyUpdated"/>
-                <result-to-field result-name="contactMechId" map-name="newValue"/>
+                <result-to-field result-name="contactMechId" map="newValue"/>
             </call-service>
             <create-value value-field="newValue"/>
             <else>
                 <set field="context.contactMechId" from-field="parameters.contactMechId"/>
                 <call-service service-name="updateContactMech" in-map-name="context">
                     <default-message resource="PartyUiLabels" property="PartyPostalAddressSuccessfullyUpdated"/>
-                    <result-to-field result-name="contactMechId" map-name="newValue"/>
+                    <result-to-field result-name="contactMechId" map="newValue"/>
                 </call-service>
                 <if-compare-field to-field="newValue.contactMechId" field="oldValue.contactMechId" operator="not-equals">
                     <log level="info" message="Postal address need updating, contact mech changed"/>
@@ -167,7 +167,7 @@
         <set field="context.contactMechTypeId" value="TELECOM_NUMBER"/>
         <call-service service-name="createContactMech" in-map-name="context">
             <default-message resource="PartyUiLabels" property="PartyTelecomNumberSuccessfullyCreated"/>
-            <result-to-field result-name="contactMechId" map-name="newValue"/>
+            <result-to-field result-name="contactMechId" map="newValue"/>
         </call-service>
         <set-nonpk-fields map="parameters" value-field="newValue"/>
         <create-value value-field="newValue"/>   
@@ -186,14 +186,14 @@
             <log level="info" message="Telecom number needs updating"/>
             <call-service service-name="createContactMech" in-map-name="context">
                 <default-message resource="PartyUiLabels" property="PartyTelecomNumberSuccessfullyUpdated"/>
-                <result-to-field result-name="contactMechId" map-name="newValue"/>
+                <result-to-field result-name="contactMechId" map="newValue"/>
             </call-service>
             <create-value value-field="newValue"/>
             <else>
                 <set field="context.contactMechId" from-field="parameters.contactMechId"/>
                 <call-service service-name="updateContactMech" in-map-name="context">
                     <default-message resource="PartyUiLabels" property="PartyTelecomNumberSuccessfullyUpdated"/>
-                    <result-to-field result-name="contactMechId" map-name="newValue"/>
+                    <result-to-field result-name="contactMechId" map="newValue"/>
                 </call-service>
                 <if-compare-field to-field="newValue.contactMechId" field="oldValue.contactMechId" operator="not-equals">
                     <log level="info" message="Telecom Number need updating, contact mech changed"/>

Modified: ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml (original)
+++ ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml Wed Dec 31 12:31:28 2008
@@ -52,7 +52,7 @@
         <if-empty field="parameters.contactMechId">
             <set-service-fields service-name="createContactMech" map="parameters" to-map="createContactMechMap"/>
             <call-service service-name="createContactMech" in-map-name="createContactMechMap">
-                <result-to-field result-name="contactMechId" map-name="newValue"/>
+                <result-to-field result-name="contactMechId" map="newValue"/>
             </call-service>    
             <log level="info" message="ContactMech created"/>    
             <else>
@@ -93,7 +93,7 @@
             <set-service-fields service-name="updateContactMech" map="parameters" to-map="updateContactMechMap"/>
             <call-service service-name="updateContactMech" in-map-name="updateContactMechMap">
                 <default-message resource="PartyUiLabels" property="PartyContactMechanismSuccessfullyUpdated"/>
-                <result-to-field result-name="contactMechId" map-name="newPartyContactMech"/>
+                <result-to-field result-name="contactMechId" map="newPartyContactMech"/>
             </call-service>
             <else>
                 <set field="newPartyContactMech.contactMechId" from-field="parameters.newContactMechId"/>
@@ -161,7 +161,7 @@
         <set-service-fields service-name="createPostalAddress" map="parameters" to-map="createPostalAddressMap"/>
         <call-service in-map-name="createPostalAddressMap" service-name="createPostalAddress">
             <default-message resource="PartyUiLabels" property="PartyPostalAddressSuccessfullyCreated"/>
-            <result-to-field result-name="contactMechId" map-name="newPartyContactMech"/>
+            <result-to-field result-name="contactMechId" map="newPartyContactMech"/>
         </call-service>
 
         <check-errors/>
@@ -185,7 +185,7 @@
         <set-service-fields service-name="updatePostalAddress" map="parameters" to-map="updatePostalAddressMap"/>
         <call-service in-map-name="updatePostalAddressMap" service-name="updatePostalAddress">
             <default-message resource="PartyUiLabels" property="PartyPostalAddressSuccessfullyUpdated"/>
-            <result-to-field result-name="contactMechId" map-name="newPartyContactMech" field="contactMechId" />             
+            <result-to-field result-name="contactMechId" map="newPartyContactMech" field="contactMechId" />             
         </call-service>
 
         <set-service-fields service-name="updatePartyContactMech" map="parameters" to-map="updatePartyContactMechMap"/>
@@ -208,7 +208,7 @@
         <set-service-fields service-name="createTelecomNumber" map="parameters" to-map="createTelecomNumberMap"/>           
         <call-service in-map-name="createTelecomNumberMap" service-name="createTelecomNumber">
             <default-message resource="PartyUiLabels" property="PartyTelecomNumberSuccessfullyCreated"/>
-            <result-to-field result-name="contactMechId" map-name="newPartyContactMech"/>             
+            <result-to-field result-name="contactMechId" map="newPartyContactMech"/>             
         </call-service>
 
         <set-service-fields service-name="createPartyContactMech" map="parameters" to-map="createPartyContactMechMap"/>
@@ -232,7 +232,7 @@
         <set-service-fields service-name="updateTelecomNumber" map="parameters" to-map="updateTelecomNumberMap"/>          
         <call-service service-name="updateTelecomNumber" in-map-name="updateTelecomNumberMap">
             <default-message resource="PartyUiLabels" property="PartyTelecomNumberSuccessfullyUpdated"/>
-            <result-to-field result-name="contactMechId" map-name="newPartyContactMech" field="contactMechId" />             
+            <result-to-field result-name="contactMechId" map="newPartyContactMech" field="contactMechId" />             
         </call-service>
         
         <set-service-fields service-name="updatePartyContactMech" map="parameters" to-map="updatePartyContactMechMap"/>

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=730468&r1=730467&r2=730468&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 Wed Dec 31 12:31:28 2008
@@ -259,7 +259,7 @@
         <set field="personUserLoginContext.currentPasswordVerify" from-field="newUserLogin.currentPassword" />
         <!-- the above copy is okay since we checked already that they are the same -->
         <call-service service-name="createPersonAndUserLogin" in-map-name="personUserLoginContext">
-            <result-to-field result-name="partyId" map-name="tempMap"/>
+            <result-to-field result-name="partyId" map="tempMap"/>
             <result-to-field field="createdUserLogin" result-name="newUserLogin"/>
         </call-service>
         <set-current-user-login value-name="createdUserLogin"/>
@@ -284,7 +284,7 @@
             <!-- address not used, do nothing -->
             <else>
                 <call-service service-name="createPartyPostalAddress" in-map-name="addressContext">
-                    <result-to-field result-name="contactMechId" map-name="addressPurposeContext"/>
+                    <result-to-field result-name="contactMechId" map="addressPurposeContext"/>
                 </call-service>
                 <set field="addressPurposeContext.partyId" from-field="tempMap.partyId" />
                 <!-- create the shipping location -->
@@ -299,7 +299,7 @@
         <!-- home phone -->
         <if-not-empty field="parameters.CUSTOMER_HOME_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="homePhoneContext">
-                <result-to-field result-name="contactMechId" map-name="homePhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="homePhonePurposeContext"/>
             </call-service>
             <set field="homePhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="homePhonePurposeContext.contactMechPurposeTypeId" value="PHONE_HOME" />
@@ -309,7 +309,7 @@
         <!-- work phone -->
         <if-not-empty field="parameters.CUSTOMER_WORK_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="workPhoneContext">
-                <result-to-field result-name="contactMechId" map-name="workPhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="workPhonePurposeContext"/>
             </call-service>
             <set field="workPhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="workPhonePurposeContext.contactMechPurposeTypeId" value="PHONE_WORK" />
@@ -319,7 +319,7 @@
         <!-- fax phone -->
         <if-not-empty field="parameters.CUSTOMER_FAX_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="faxPhoneContext">
-                <result-to-field result-name="contactMechId" map-name="faxPhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="faxPhonePurposeContext"/>
             </call-service>
             <set field="faxPhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="faxPhonePurposeContext.contactMechPurposeTypeId" value="FAX_NUMBER" />
@@ -329,7 +329,7 @@
         <!-- mobile phone -->
         <if-not-empty field="parameters.CUSTOMER_MOBILE_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="mobilePhoneContext">
-                <result-to-field result-name="contactMechId" map-name="mobilePhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="mobilePhonePurposeContext"/>
             </call-service>
             <set field="mobilePhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="mobilePhonePurposeContext.contactMechPurposeTypeId" value="PHONE_MOBILE" />
@@ -338,7 +338,7 @@
 
         <!-- email address -->
         <call-service service-name="createPartyEmailAddress" in-map-name="emailContext">
-            <result-to-field result-name="contactMechId" map-name="emailPurposeContext"/>
+            <result-to-field result-name="contactMechId" map="emailPurposeContext"/>
         </call-service>
         <set field="emailPurposeContext.partyId" from-field="tempMap.partyId" />
         <set field="emailPurposeContext.contactMechPurposeTypeId" value="PRIMARY_EMAIL" />

Modified: ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleMethods.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleMethods.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleMethods.xml (original)
+++ ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartySimpleMethods.xml Wed Dec 31 12:31:28 2008
@@ -77,7 +77,7 @@
 
         <set-service-fields service-name="createPerson" map-name="parameters" to-map-name="createPersonCtx"/>
         <call-service service-name="createPerson" in-map-name="createPersonCtx">
-            <result-to-field result-name="partyId" map-name="createUlInMap"/>
+            <result-to-field result-name="partyId" map="createUlInMap"/>
         </call-service>
 
         <!-- call the service with the system account to get around security constraints for this special create -->
@@ -186,7 +186,7 @@
         <set field="postalAddressContext.partyId" from-field="partyId"/>
         <set field="postalAddressContext.contactMechPurposeTypeId" value="GENERAL_LOCATION"/>
         <call-service service-name="createPartyPostalAddress" in-map-name="postalAddressContext">
-            <result-to-field result-name="contactMechId" map-name="postalAddressContext"/>
+            <result-to-field result-name="contactMechId" map="postalAddressContext"/>
         </call-service>
      
         <if-not-empty field="postalAddContactMechPurpTypeId">

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=730468&r1=730467&r2=730468&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 Wed Dec 31 12:31:28 2008
@@ -293,7 +293,7 @@
         <check-errors/>
 
         <call-service service-name="createPerson" in-map-name="personContext">
-            <result-to-field result-name="partyId" map-name="tempMap"/>
+            <result-to-field result-name="partyId" map="tempMap"/>
         </call-service>
 
         <!-- now that we have the partyId, put it where it needs to go... -->
@@ -329,7 +329,7 @@
             <!-- address not used, do nothing -->
             <else>
                 <call-service service-name="createPartyPostalAddress" in-map-name="addressContext">
-                    <result-to-field result-name="contactMechId" map-name="addressPurposeContext"/>
+                    <result-to-field result-name="contactMechId" map="addressPurposeContext"/>
                 </call-service>
                 <set field="addressPurposeContext.partyId" from-field="tempMap.partyId" />
                 <!-- create the shipping location -->
@@ -344,7 +344,7 @@
         <!-- home phone -->
         <if-not-empty field="parameters.USER_HOME_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="homePhoneContext">
-                <result-to-field result-name="contactMechId" map-name="homePhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="homePhonePurposeContext"/>
             </call-service>
             <set field="homePhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="homePhonePurposeContext.contactMechPurposeTypeId" value="PHONE_HOME" />
@@ -354,7 +354,7 @@
         <!-- work phone -->
         <if-not-empty field="parameters.USER_WORK_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="workPhoneContext">
-                <result-to-field result-name="contactMechId" map-name="workPhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="workPhonePurposeContext"/>
             </call-service>
             <set field="workPhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="workPhonePurposeContext.contactMechPurposeTypeId" value="PHONE_WORK" />
@@ -364,7 +364,7 @@
         <!-- fax phone -->
         <if-not-empty field="parameters.USER_FAX_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="faxPhoneContext">
-                <result-to-field result-name="contactMechId" map-name="faxPhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="faxPhonePurposeContext"/>
             </call-service>
             <set field="faxPhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="faxPhonePurposeContext.contactMechPurposeTypeId" value="FAX_NUMBER" />
@@ -374,7 +374,7 @@
         <!-- mobile phone -->
         <if-not-empty field="parameters.USER_MOBILE_CONTACT">
             <call-service service-name="createPartyTelecomNumber" in-map-name="mobilePhoneContext">
-                <result-to-field result-name="contactMechId" map-name="mobilePhonePurposeContext"/>
+                <result-to-field result-name="contactMechId" map="mobilePhonePurposeContext"/>
             </call-service>
             <set field="mobilePhonePurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="mobilePhonePurposeContext.contactMechPurposeTypeId" value="PHONE_MOBILE" />
@@ -384,7 +384,7 @@
         <!-- email address -->
         <if-not-empty field="parameters.USER_EMAIL">
             <call-service service-name="createPartyEmailAddress" in-map-name="emailContext">
-                <result-to-field result-name="contactMechId" map-name="emailPurposeContext"/>
+                <result-to-field result-name="contactMechId" map="emailPurposeContext"/>
             </call-service>
             <set field="emailPurposeContext.partyId" from-field="tempMap.partyId" />
             <set field="emailPurposeContext.contactMechPurposeTypeId" value="PRIMARY_EMAIL" />

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryContentServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryContentServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryContentServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryContentServices.xml Wed Dec 31 12:31:28 2008
@@ -60,7 +60,7 @@
         <set-service-fields service-name="createCategoryContent" map="parameters" to-map="createCategoryContentMap"/>
         <set-service-fields service-name="createSimpleTextContent" map="parameters" to-map="createSimpleTextMap"/>
         <call-service service-name="createSimpleTextContent" in-map-name="createSimpleTextMap">
-            <result-to-field result-name="contentId" map-name="createCategoryContentMap" />
+            <result-to-field result-name="contentId" map="createCategoryContentMap" />
         </call-service>
         <call-service service-name="createCategoryContent" in-map-name="createCategoryContentMap"/>
     </simple-method>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/config/ProductConfigItemContentServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/config/ProductConfigItemContentServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/config/ProductConfigItemContentServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/config/ProductConfigItemContentServices.xml Wed Dec 31 12:31:28 2008
@@ -62,7 +62,7 @@
         <set-service-fields service-name="createProductConfigItemContent" map="parameters" to-map="createProductConfigItemContent"/>
         <set-service-fields service-name="createSimpleTextContent" map="parameters" to-map="createSimpleText"/>
         <call-service service-name="createSimpleTextContent" in-map-name="createSimpleText" break-on-error="true" >
-            <result-to-field result-name="contentId" map-name="createProductConfigItemContent" />
+            <result-to-field result-name="contentId" map="createProductConfigItemContent" />
         </call-service>
         <call-service service-name="createProductConfigItemContent" in-map-name="createProductConfigItemContent"/>
     </simple-method>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/StockMoveServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/StockMoveServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/StockMoveServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/StockMoveServices.xml Wed Dec 31 12:31:28 2008
@@ -464,7 +464,7 @@
                 <!-- now that targetInventoryItem is populated with initial values, call createInventoryItem service -->
                 <set-service-fields map="targetInventoryItem" service-name="createInventoryItem" to-map="createInventoryItemMap"/>
                 <call-service service-name="createInventoryItem" in-map-name="createInventoryItemMap">
-                    <result-to-field result-name="inventoryItemId" map-name="targetInventoryItem"/>
+                    <result-to-field result-name="inventoryItemId" map="targetInventoryItem"/>
                 </call-service>
                 <!-- refresh the value object now that the create has been done -->
                 <refresh-value value-name="targetInventoryItem"/>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/product/ProductContentServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/product/ProductContentServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/product/ProductContentServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/product/ProductContentServices.xml Wed Dec 31 12:31:28 2008
@@ -62,7 +62,7 @@
         <set-service-fields service-name="createProductContent" map="parameters" to-map="createProductContent"/>
         <set-service-fields service-name="createEmailContent" map="parameters" to-map="createEmail"/>
         <call-service service-name="createEmailContent" in-map-name="createEmail" break-on-error="true" >
-            <result-to-field result-name="contentId" map-name="createProductContent" />
+            <result-to-field result-name="contentId" map="createProductContent" />
         </call-service>
         <call-service service-name="createProductContent" in-map-name="createProductContent"/>
     </simple-method>
@@ -79,7 +79,7 @@
         <set field="persistContentAndAssoc.contentTypeId" value="DOCUMENT"/>
         <set field="persistContentAndAssoc.dataResourceTypeId" value="IMAGE_OBJECT"/>
         <call-service service-name="persistContentAndAssoc" in-map-name="persistContentAndAssoc" break-on-error="true" >
-            <result-to-field result-name="contentId" map-name="createProductContent" />
+            <result-to-field result-name="contentId" map="createProductContent" />
         </call-service>
         <call-service service-name="createProductContent" in-map-name="createProductContent"/>
     </simple-method>
@@ -94,7 +94,7 @@
         <set-service-fields service-name="createProductContent" map="parameters" to-map="createProductContentMap"/>
         <set-service-fields service-name="createSimpleTextContent" map="parameters" to-map="createSimpleTextMap"/>
         <call-service service-name="createSimpleTextContent" in-map-name="createSimpleTextMap">
-            <result-to-field result-name="contentId" map-name="createProductContentMap"/>
+            <result-to-field result-name="contentId" map="createProductContentMap"/>
         </call-service>
         <call-service service-name="createProductContent" in-map-name="createProductContentMap"/>
     </simple-method>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/FacilityContactMechServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/FacilityContactMechServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/FacilityContactMechServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/FacilityContactMechServices.xml Wed Dec 31 12:31:28 2008
@@ -32,7 +32,7 @@
             <set field="createContactMechMap.contactMechTypeId" from-field="parameters.contactMechTypeId" />
             <call-service service-name="createContactMech" in-map-name="createContactMechMap">
                 <default-message>Contact Mechanism successfully created.</default-message>
-                <result-to-field result-name="contactMechId" map-name="newValue"/>
+                <result-to-field result-name="contactMechId" map="newValue"/>
             </call-service>
             <log level="info" message="ContactMech created"/>
             <else>
@@ -77,7 +77,7 @@
             <call-service service-name="updateContactMech" in-map-name="updateContactMechMap">
                 <default-message>Contact Mechanism successfully updated.</default-message>
 
-                <result-to-field result-name="contactMechId" map-name="newFacilityContactMech"/>
+                <result-to-field result-name="contactMechId" map="newFacilityContactMech"/>
             </call-service>
             <else>
                 <set field="newFacilityContactMech.contactMechId" from-field="parameters.newContactMechId"/>
@@ -149,7 +149,7 @@
         <call-service in-map-name="createPostalAddressMap" service-name="createPostalAddress">
             <default-message>Postal Address successfully created</default-message>
 
-            <result-to-field result-name="contactMechId" map-name="newFacilityContactMech"/>
+            <result-to-field result-name="contactMechId" map="newFacilityContactMech"/>
         </call-service>
 
         <check-errors/>
@@ -173,7 +173,7 @@
         <set-service-fields service-name="updatePostalAddress" map="parameters" to-map="updatePostalAddressMap"/>
         <call-service in-map-name="updatePostalAddressMap" service-name="updatePostalAddress">
             <default-message>Postal Address successfully updated</default-message>
-            <result-to-field result-name="contactMechId" map-name="newFacilityContactMech" field="contactMechId" />
+            <result-to-field result-name="contactMechId" map="newFacilityContactMech" field="contactMechId" />
         </call-service>
 
         <set-service-fields service-name="updateFacilityContactMech" map="parameters" to-map="updateFacilityContactMechMap"/>
@@ -197,7 +197,7 @@
         <call-service in-map-name="createTelecomNumberMap" service-name="createTelecomNumber">
             <default-message>Telecom number successfully created</default-message>
 
-            <result-to-field result-name="contactMechId" map-name="newFacilityContactMech"/>
+            <result-to-field result-name="contactMechId" map="newFacilityContactMech"/>
         </call-service>
 
         <set-service-fields service-name="createFacilityContactMech" map="parameters" to-map="createFacilityContactMechMap"/>
@@ -220,7 +220,7 @@
         <set-service-fields service-name="updateTelecomNumber" map="parameters" to-map="updateTelecomNumberMap"/>
         <call-service service-name="updateTelecomNumber" in-map-name="updateTelecomNumberMap">
             <default-message>Telecom Number successfully updated</default-message>
-            <result-to-field result-name="contactMechId" map-name="newFacilityContactMech" field="contactMechId" />
+            <result-to-field result-name="contactMechId" map="newFacilityContactMech" field="contactMechId" />
         </call-service>
 
         <set-service-fields service-name="updateFacilityContactMech" map="parameters" to-map="updateFacilityContactMechMap"/>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/shipment/issuance/IssuanceServices.xml Wed Dec 31 12:31:28 2008
@@ -291,7 +291,7 @@
             <set from-field="parameters.shipmentId" field="shipmentItemCreate.shipmentId"/>
             <set from-field="parameters.quantity" field="shipmentItemCreate.quantity"/>
             <call-service service-name="createShipmentItem" in-map-name="shipmentItemCreate">
-                <result-to-field result-name="shipmentItemSeqId" map-name="shipmentItemLookupPk"/>
+                <result-to-field result-name="shipmentItemSeqId" map="shipmentItemLookupPk"/>
             </call-service>
             <set from-field="parameters.shipmentId" field="shipmentItemLookupPk.shipmentId"/>
             <find-by-primary-key entity-name="ShipmentItem" map="shipmentItemLookupPk" value-field="shipmentItem"/>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml Wed Dec 31 12:31:28 2008
@@ -1666,7 +1666,7 @@
         <set from-field="itemIssuance.quantity" field="shipItemContext.quantity"/>
         <call-service service-name="addShipmentContentToPackage" in-map-name="shipItemContext">
             <result-to-field result-name="shipmentPackageSeqId" field="packageMap.${parameters.trackingNum}"/>
-            <result-to-field result-name="shipmentPackageSeqId" map-name="routeSegLookup"/>
+            <result-to-field result-name="shipmentPackageSeqId" map="routeSegLookup"/>
         </call-service>
         
         <if-not-empty field="routeSegLookup.shipmentPackageSeqId">
@@ -1795,7 +1795,7 @@
             <set from-field="itemIssuance.quantity" field="shipItemContext.quantity"/>
             <call-service service-name="addShipmentContentToPackage" in-map-name="shipItemContext">
                 <result-to-field result-name="shipmentPackageSeqId" field="packageMap.${itemMap.trackingNum}"/>
-                <result-to-field result-name="shipmentPackageSeqId" map-name="routeSegLookup"/>
+                <result-to-field result-name="shipmentPackageSeqId" map="routeSegLookup"/>
             </call-service>
 
             <if-not-empty field="routeSegLookup.shipmentPackageSeqId">

Modified: ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/workeffort/WorkEffortSimpleServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/workeffort/WorkEffortSimpleServices.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/workeffort/WorkEffortSimpleServices.xml (original)
+++ ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/workeffort/WorkEffortSimpleServices.xml Wed Dec 31 12:31:28 2008
@@ -322,14 +322,14 @@
                 <set-service-fields service-name="createPartyContactMech" map="parameters" to-map="context"/>
                 <call-service service-name="createPartyContactMech" in-map-name="context">
                     <default-message>Party Contact Mechanism successfully created.</default-message>
-                    <result-to-field result-name="contactMechId" map-name="newValue"/>
+                    <result-to-field result-name="contactMechId" map="newValue"/>
                 </call-service> 
                 <log level="info" message="Party ContactMech created"/>             
                 <else>
                     <set-service-fields service-name="createContactMech" map="parameters" to-map="context"/>
                     <call-service service-name="createContactMech" in-map-name="context">
                         <default-message>Contact Mechanism successfully created.</default-message>
-                        <result-to-field result-name="contactMechId" map-name="newValue"/>
+                        <result-to-field result-name="contactMechId" map="newValue"/>
                     </call-service> 
                     <log level="info" message="ContactMech created"/>
                 </else> 
@@ -366,7 +366,7 @@
             <log level="info" message="Calling generic updateContactMech method"/>
             <call-service service-name="updateContactMech" in-map-name="context">
                 <default-message>Contact Mechanism successfully updated.</default-message>
-                <result-to-field result-name="contactMechId" map-name="newWorkEffortContactMech"/>
+                <result-to-field result-name="contactMechId" map="newWorkEffortContactMech"/>
             </call-service>
             <else>
                 <set from-field="parameters.newContactMechId" field="newWorkEffortContactMech.contactMechId"/>
@@ -401,7 +401,7 @@
                 processor-name="postalAddress" in-map-name="parameters" out-map-name="context"/>
             <call-service service-name="createPartyPostalAddress" in-map-name="context">
                 <default-message>Party Contact Mechanism successfully created.</default-message>
-                <result-to-field result-name="contactMechId" map-name="newValue"/>
+                <result-to-field result-name="contactMechId" map="newValue"/>
             </call-service> 
             <log level="info" message="Party ContactMech created"/> 
             <else>
@@ -409,7 +409,7 @@
                     processor-name="postalAddress" in-map-name="parameters" out-map-name="context"/>        
                 <call-service in-map-name="context" service-name="createPostalAddress">
                     <default-message>Postal Address successfully created</default-message>
-                    <result-to-field result-name="contactMechId" map-name="newValue"/>             
+                    <result-to-field result-name="contactMechId" map="newValue"/>             
                 </call-service>
             </else>
         </if-not-empty>
@@ -431,7 +431,7 @@
                 processor-name="postalAddress" in-map-name="parameters" out-map-name="context"/>        
         <call-service in-map-name="context" service-name="updatePostalAddress">
             <default-message>Postal Address successfully updated</default-message>
-            <result-to-field result-name="contactMechId" map-name="newValue" field="contactMechId" />             
+            <result-to-field result-name="contactMechId" map="newValue" field="contactMechId" />             
         </call-service>
         <call-map-processor xml-resource="org/ofbiz/workeffort/workeffort/WorkflowMapProcessors.xml"
                 processor-name="workEffortContactMech" in-map-name="parameters" out-map-name="context2"/>  
@@ -453,7 +453,7 @@
                 processor-name="telecomNumber" in-map-name="parameters" out-map-name="context"/>
             <call-service service-name="createPartyTelecomNumber" in-map-name="context">
                 <default-message>Party Contact Mechanism successfully created.</default-message>
-                <result-to-field result-name="contactMechId" map-name="newValue"/>
+                <result-to-field result-name="contactMechId" map="newValue"/>
             </call-service> 
             <log level="info" message="Party ContactMech created"/> 
             <else>
@@ -461,7 +461,7 @@
                     processor-name="telecomNumber" in-map-name="parameters" out-map-name="context"/>        
                 <call-service in-map-name="context" service-name="createTelecomNumber">
                     <default-message>Telecom number successfully created</default-message>
-                    <result-to-field result-name="contactMechId" map-name="newValue"/>             
+                    <result-to-field result-name="contactMechId" map="newValue"/>             
                 </call-service>
             </else>
         </if-not-empty>                
@@ -482,7 +482,7 @@
                 processor-name="telecomNumber" in-map-name="parameters" out-map-name="context"/>        
         <call-service in-map-name="context" service-name="updateTelecomNumber">
             <default-message>Telecom Number successfully updated</default-message>
-            <result-to-field result-name="contactMechId" map-name="newValue" field="contactMechId" />             
+            <result-to-field result-name="contactMechId" map="newValue" field="contactMechId" />             
         </call-service>
         
         <call-map-processor xml-resource="org/ofbiz/workeffort/workeffort/WorkflowMapProcessors.xml"

Modified: ofbiz/trunk/specialpurpose/assetmaint/script/org/ofbiz/assetmaint/FixedAssetMaintEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/script/org/ofbiz/assetmaint/FixedAssetMaintEvents.xml?rev=730468&r1=730467&r2=730468&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/assetmaint/script/org/ofbiz/assetmaint/FixedAssetMaintEvents.xml (original)
+++ ofbiz/trunk/specialpurpose/assetmaint/script/org/ofbiz/assetmaint/FixedAssetMaintEvents.xml Wed Dec 31 12:31:28 2008
@@ -25,7 +25,7 @@
         short-description="Create FixedAssetMaint and Update Schedule information in WorkEffort">
         <set-service-fields map="parameters" service-name="createFixedAssetMaint" to-map="createFixedAssetMaintCtx"/>
         <call-service service-name="createFixedAssetMaint" in-map-name="createFixedAssetMaintCtx">
-            <result-to-field result-name="maintHistSeqId" map-name="findAssetMaintLookup" field="maintHistSeqId"/>
+            <result-to-field result-name="maintHistSeqId" map="findAssetMaintLookup" field="maintHistSeqId"/>
             <result-to-request result-name="maintHistSeqId"/>
         </call-service>
         <check-errors/>