You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2011/06/08 13:09:13 UTC

svn commit: r1133345 - /ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml

Author: ashish
Date: Wed Jun  8 11:09:13 2011
New Revision: 1133345

URL: http://svn.apache.org/viewvc?rev=1133345&view=rev
Log:
Applied fix from trunk r1133343. Bug fix. Type(Timestamp) must be mentioned in the createBOMAssoc service for the fromDate field which is currently set as a String. Thanks Suprit.

Modified:
    ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml

Modified: ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml?rev=1133345&r1=1133344&r2=1133345&view=diff
==============================================================================
--- ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml (original)
+++ ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml Wed Jun  8 11:09:13 2011
@@ -30,7 +30,7 @@ under the License.
         <set field="searchDuplicatedAncestorContext.productId" from-field="parameters.productId"/>
         <set field="searchDuplicatedAncestorContext.productIdTo" from-field="parameters.productIdTo"/>
         <if-not-empty field="parameters.fromDate">
-            <set field="searchDuplicatedAncestorContext.fromDate" from-field="parameters.fromDate"/>
+            <set field="searchDuplicatedAncestorContext.fromDate" from-field="parameters.fromDate" type="Timestamp"/>
         </if-not-empty>
         <set field="searchDuplicatedAncestorContext.productAssocTypeId" from-field="parameters.productAssocTypeId"/>
         <call-service service-name="searchDuplicatedAncestor" in-map-name="searchDuplicatedAncestorContext">