svn commit: r730629 - in /ofbiz/trunk/applications: accounting/script/org/ofbiz/accounting/invoice/ order/script/org/ofbiz/order/order/ order/script/org/ofbiz/order/quote/ product/script/org/ofbiz/product/catalog/ product/script/org/ofbiz/product/categ...

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

svn commit: r730629 - in /ofbiz/trunk/applications: accounting/script/org/ofbiz/accounting/invoice/ order/script/org/ofbiz/order/order/ order/script/org/ofbiz/order/quote/ product/script/org/ofbiz/product/catalog/ product/script/org/ofbiz/product/categ...

jleroux@apache.org
Author: jleroux
Date: Thu Jan  1 15:03:49 2009
New Revision: 730629

URL: http://svn.apache.org/viewvc?rev=730629&view=rev
Log:
<check-id field-name => <check-id field

Modified:
    ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/invoice/InvoiceServices.xml
    ofbiz/trunk/applications/order/script/org/ofbiz/order/order/OrderServices.xml
    ofbiz/trunk/applications/order/script/org/ofbiz/order/quote/QuoteServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml
    ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryServices.xml

Modified: ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/invoice/InvoiceServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/invoice/InvoiceServices.xml?rev=730629&r1=730628&r2=730629&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/invoice/InvoiceServices.xml (original)
+++ ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/invoice/InvoiceServices.xml Thu Jan  1 15:03:49 2009
@@ -106,7 +106,7 @@
                     <sequenced-id sequence-name="Invoice" field="invoiceIdTemp"/>
                     <else>
                         <!-- check the provided ID -->
-                        <check-id field-name="invoiceIdTemp"/>
+                        <check-id field="invoiceIdTemp"/>
                         <check-errors/>
                     </else>
                 </if-empty>

Modified: ofbiz/trunk/applications/order/script/org/ofbiz/order/order/OrderServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/script/org/ofbiz/order/order/OrderServices.xml?rev=730629&r1=730628&r2=730629&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/script/org/ofbiz/order/order/OrderServices.xml (original)
+++ ofbiz/trunk/applications/order/script/org/ofbiz/order/order/OrderServices.xml Thu Jan  1 15:03:49 2009
@@ -501,7 +501,7 @@
                     <sequenced-id sequence-name="OrderHeader" field="orderIdTemp"/>
                     <else>
                         <!-- check the provided ID -->
-                        <check-id field-name="orderIdTemp"/>
+                        <check-id field="orderIdTemp"/>
                         <check-errors/>
                     </else>
                 </if-empty>

Modified: ofbiz/trunk/applications/order/script/org/ofbiz/order/quote/QuoteServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/script/org/ofbiz/order/quote/QuoteServices.xml?rev=730629&r1=730628&r2=730629&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/script/org/ofbiz/order/quote/QuoteServices.xml (original)
+++ ofbiz/trunk/applications/order/script/org/ofbiz/order/quote/QuoteServices.xml Thu Jan  1 15:03:49 2009
@@ -57,7 +57,7 @@
                     <sequenced-id sequence-name="Quote" field="quoteIdTemp"/>
                     <else>
                         <!-- check the provided ID -->
-                        <check-id field-name="quoteIdTemp"/>
+                        <check-id field="quoteIdTemp"/>
                         <check-errors/>
                     </else>
                 </if-empty>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml?rev=730629&r1=730628&r2=730629&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml Thu Jan  1 15:03:49 2009
@@ -28,7 +28,7 @@
             <sequenced-id sequence-name="ProdCatalog" field="newEntity.prodCatalogId"/>
         <else>
             <set field="newEntity.prodCatalogId" from-field="parameters.prodCatalogId"/>
-            <check-id field-name="newEntity.prodCatalogId"/>
+            <check-id field="newEntity.prodCatalogId"/>
             <check-errors/>
         </else>
         </if-empty>

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryServices.xml?rev=730629&r1=730628&r2=730629&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/category/CategoryServices.xml Thu Jan  1 15:03:49 2009
@@ -40,7 +40,7 @@
             <sequenced-id sequence-name="ProductCategory" field="newEntity.productCategoryId"/>
         <else>
             <set field="newEntity.productCategoryId" from-field="parameters.productCategoryId"/>
-            <check-id field-name="newEntity.productCategoryId"/>
+            <check-id field="newEntity.productCategoryId"/>
             <check-errors/>
         </else>
         </if-empty>