[FIX]sale_report: change type of field date from date to datetime to match field date on sale_order

bzr revid: csn@openerp.com-20140512114532-726a1z0wqbpz96t8
This commit is contained in:
Cedric Snauwaert 2014-05-12 13:45:32 +02:00
parent 05c598f0b3
commit 9d9cfd585f
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class sale_report(osv.osv):
_rec_name = 'date'
_columns = {
'date': fields.date('Date Order', readonly=True),
'date': fields.datetime('Date Order', readonly=True),
'date_confirm': fields.date('Date Confirm', readonly=True),
'product_id': fields.many2one('product.product', 'Product', readonly=True),
'product_uom': fields.many2one('product.uom', 'Unit of Measure', readonly=True),