Author: ashish
Date: Wed Jun 8 11:09:50 2011
New Revision: 1133346
URL:
http://svn.apache.org/viewvc?rev=1133346&view=revLog:
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/release10.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml
Modified: ofbiz/branches/release10.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release10.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml?rev=1133346&r1=1133345&r2=1133346&view=diff==============================================================================
--- ofbiz/branches/release10.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml (original)
+++ ofbiz/branches/release10.04/applications/manufacturing/script/org/ofbiz/manufacturing/bom/BomSimpleMethods.xml Wed Jun 8 11:09:50 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">