Author: jacopoc
Date: Thu Mar 25 10:24:21 2010
New Revision: 927329
URL:
http://svn.apache.org/viewvc?rev=927329&view=revLog:
Sorry, I have forgotten to commit this as part of revision: 927327
"Fixed wrong field type in service definition that was causing the loadDateDimension service to fail.
Thanks to Sam Hamilton for the bug report OFBIZ-3574"
Modified:
ofbiz/trunk/framework/common/servicedef/services_olap.xml
Modified: ofbiz/trunk/framework/common/servicedef/services_olap.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/servicedef/services_olap.xml?rev=927329&r1=927328&r2=927329&view=diff==============================================================================
--- ofbiz/trunk/framework/common/servicedef/services_olap.xml (original)
+++ ofbiz/trunk/framework/common/servicedef/services_olap.xml Thu Mar 25 10:24:21 2010
@@ -25,8 +25,8 @@ under the License.
<service name="loadDateDimension" engine="java" transaction-timeout="300"
location="org.ofbiz.common.olap.CommonDimensionServices" invoke="loadDateDimension" auth="true">
<description>Loads data in the DateDimension entity (olap entity) using the update strategy of 'type 1': overwrite the values of the attributes</description>
- <attribute name="fromDate" type="Date" mode="IN" optional="false"/>
- <attribute name="thruDate" type="Date" mode="IN" optional="false"/>
+ <attribute name="fromDate" type="Timestamp" mode="IN" optional="false"/>
+ <attribute name="thruDate" type="Timestamp" mode="IN" optional="false"/>
</service>
<service name="loadCurrencyDimension" auth="true" engine="simple"
location="component://common/script/org/ofbiz/common/olap/CommonDimensionServices.xml" invoke="loadCurrencyDimension">