Author: jacopoc
Date: Thu Mar 25 10:12:53 2010
New Revision: 927327
URL:
http://svn.apache.org/viewvc?rev=927327&view=revLog:
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/bi/servicedef/services.xml
Modified: ofbiz/trunk/framework/bi/servicedef/services.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/bi/servicedef/services.xml?rev=927327&r1=927326&r2=927327&view=diff==============================================================================
--- ofbiz/trunk/framework/bi/servicedef/services.xml (original)
+++ ofbiz/trunk/framework/bi/servicedef/services.xml Thu Mar 25 10:12:53 2010
@@ -41,8 +41,8 @@ under the License.
<service name="quickInitDataWarehouse" auth="true" engine="simple"
location="component://bi/script/org/ofbiz/bi/DimensionServices.xml" invoke="quickInitDataWarehouse">
<description>Quickly initialize the dimensions (Currency, Date, Product) and facts (SalesInvoiceItem): useful to quickly initialize the datawarehouse.</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>
</services>