Skip to content
Snippets Groups Projects
Commit 9d9cfd58 authored by Cédric Snauwaert's avatar Cédric Snauwaert
Browse files

[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
parent 05c598f0
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ class sale_report(osv.osv): ...@@ -29,7 +29,7 @@ class sale_report(osv.osv):
_rec_name = 'date' _rec_name = 'date'
_columns = { _columns = {
'date': fields.date('Date Order', readonly=True), 'date': fields.datetime('Date Order', readonly=True),
'date_confirm': fields.date('Date Confirm', readonly=True), 'date_confirm': fields.date('Date Confirm', readonly=True),
'product_id': fields.many2one('product.product', 'Product', readonly=True), 'product_id': fields.many2one('product.product', 'Product', readonly=True),
'product_uom': fields.many2one('product.uom', 'Unit of Measure', readonly=True), 'product_uom': fields.many2one('product.uom', 'Unit of Measure', readonly=True),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment