svn commit: r1290892 - /ofbiz/branches/release11.04/applications/order/entitydef/entitymodel.xml

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

svn commit: r1290892 - /ofbiz/branches/release11.04/applications/order/entitydef/entitymodel.xml

ashish-18
Author: ashish
Date: Sat Feb 18 22:11:45 2012
New Revision: 1290892

URL: http://svn.apache.org/viewvc?rev=1290892&view=rev
Log:
Applied bug fix from trunk r1290891.
Applied patch from jira issue OFBIZ-4703. In SupplierProduct entity, the type of the attribute 'supplierProductId' is id-long. But in OrderItem entity, the type of supplierProductId is id. This differs the size of the field in both entites which results in error while creating purchase order.
Provided the patch to resolve this bug.
Thanks Suprit.

Modified:
    ofbiz/branches/release11.04/applications/order/entitydef/entitymodel.xml

Modified: ofbiz/branches/release11.04/applications/order/entitydef/entitymodel.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/applications/order/entitydef/entitymodel.xml?rev=1290892&r1=1290891&r2=1290892&view=diff
==============================================================================
--- ofbiz/branches/release11.04/applications/order/entitydef/entitymodel.xml (original)
+++ ofbiz/branches/release11.04/applications/order/entitydef/entitymodel.xml Sat Feb 18 22:11:45 2012
@@ -479,7 +479,7 @@ under the License.
       <field name="budgetId" type="id"></field>
       <field name="budgetItemSeqId" type="id"></field>
       <field name="productId" type="id"></field>
-      <field name="supplierProductId" type="id"></field>
+      <field name="supplierProductId" type="id-long"></field>
       <field name="productFeatureId" type="id"></field>
       <field name="prodCatalogId" type="id"></field>
       <field name="productCategoryId" type="id"></field>