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 2009/02/02 16:42:33 UTC

svn commit: r740012 - in /ofbiz/trunk/applications: order/script/org/ofbiz/order/request/ order/script/org/ofbiz/order/requirement/ product/script/org/ofbiz/product/storage/ product/script/org/ofbiz/shipment/receipt/ workeffort/script/org/ofbiz/workeff...

Author: jleroux
Date: Mon Feb  2 15:42:32 2009
New Revision: 740012

URL: http://svn.apache.org/viewvc?rev=740012&view=rev
Log:
<to-string field-name =>   <to-string field
+ one map-name= integrated in field= (by hand this time ;o)

Modified:
    ofbiz/trunk/applications/order/script/org/ofbiz/order/request/CustRequestServices.xml
    ofbiz/trunk/applications/order/script/org/ofbiz/order/requirement/RequirementServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/StorageServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml
    ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/workeffort/WorkEffortSimpleServices.xml

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=740012&r1=740011&r2=740012&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 Mon Feb  2 15:42:32 2009
@@ -67,7 +67,7 @@
         </if-empty>
 
         <sequenced-id sequence-name="CustRequest" field="custRequestId"/>
-        <to-string field-name="custRequestId"/>
+        <to-string field="custRequestId"/>
         <set from-field="custRequestId" field="newEntity.custRequestId"/>
         <create-value value-field="newEntity"/>
         <field-to-result field="custRequestId" result-name="newEntity"/>

Modified: ofbiz/trunk/applications/order/script/org/ofbiz/order/requirement/RequirementServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/script/org/ofbiz/order/requirement/RequirementServices.xml?rev=740012&r1=740011&r2=740012&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/script/org/ofbiz/order/requirement/RequirementServices.xml (original)
+++ ofbiz/trunk/applications/order/script/org/ofbiz/order/requirement/RequirementServices.xml Mon Feb  2 15:42:32 2009
@@ -23,7 +23,7 @@
     <simple-method method-name="createRequirement" short-description="Create a new requirement">
         <make-value value-field="newEntity" entity-name="Requirement"/>
         <sequenced-id sequence-name="Requirement" field="requirementId"/>
-        <to-string field-name="requirementId"/>
+        <to-string field="requirementId"/>
         <set from-field="requirementId" field="newEntity.requirementId"/>
         <set-nonpk-fields map="parameters" value-field="newEntity"/>
         <if-empty field="parameters.statusId">

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/StorageServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/StorageServices.xml?rev=740012&r1=740011&r2=740012&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/StorageServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/storage/StorageServices.xml Mon Feb  2 15:42:32 2009
@@ -26,7 +26,7 @@
         <set-nonpk-fields map="parameters" value-field="newEntity"/>
         
         <sequenced-id sequence-name="Facility" field="facilityId"/>
-        <to-string field-name="facilityId"/>
+        <to-string field="facilityId"/>
         <set field="newEntity.facilityId" from-field="facilityId" />
         <field-to-result field="facilityId" result-name="facilityId"/>
         
@@ -82,7 +82,7 @@
 
         <if-empty field="locationSeqId">
             <sequenced-id sequence-name="FacilityLocation" field="locationSeqId"/>
-            <to-string field-name="locationSeqId"/>
+            <to-string field="locationSeqId"/>
         </if-empty>
         <set field="newEntity.locationSeqId" from-field="locationSeqId" />
         <field-to-result field="locationSeqId" result-name="locationSeqId"/>
@@ -109,7 +109,7 @@
         <set-nonpk-fields map="parameters" value-field="newEntity"/>
         
         <sequenced-id sequence-name="FacilityGroup" field="facilityGroupId"/>
-        <to-string field-name="facilityGroupId"/>
+        <to-string field="facilityGroupId"/>
         <set field="newEntity.facilityGroupId" from-field="facilityGroupId" />
         <field-to-result field="facilityGroupId" result-name="facilityGroupId"/>
         

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml?rev=740012&r1=740011&r2=740012&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml Mon Feb  2 15:42:32 2009
@@ -28,7 +28,7 @@
         <set-nonpk-fields map="parameters" value-field="newEntity"/>
         
         <sequenced-id sequence-name="ShipmentReceipt" field="receiptId"/>
-        <to-string field-name="receiptId"/>
+        <to-string field="receiptId"/>
         <set field="newEntity.receiptId" from-field="receiptId"/>       
         <field-to-result field="receiptId" result-name="receiptId"/>
         

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=740012&r1=740011&r2=740012&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 Mon Feb  2 15:42:32 2009
@@ -362,7 +362,7 @@
             <log level="info" message="Calling map procs"/>
             <call-map-processor xml-resource="org/ofbiz/party/contact/ContactMechMapProcs.xml"
                 processor-name="updateContactMech" in-map-name="parameters" out-map-name="context"/>
-            <to-string field-name="contactMechId" map-name="context"/>
+            <to-string field="context.contactMechId"/>
             <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>