[MERGE] fix some invalid _rec_name.

bzr revid: vmt@openerp.com-20120801091847-t628zuoythuqvl32
This commit is contained in:
Vo Minh Thu 2012-08-01 11:18:47 +02:00
commit d48051db3c
2 changed files with 0 additions and 2 deletions

View File

@ -27,7 +27,6 @@ class report_event_registration(osv.osv):
_name = "report.event.registration"
_description = "Events Analysis"
_auto = False
_rec_name = 'date'
_columns = {
'event_date': fields.char('Event Start Date', size=64, readonly=True),
'year': fields.char('Year', size=4, readonly=True),

View File

@ -26,7 +26,6 @@ class hr_evaluation_report(osv.osv):
_name = "hr.evaluation.report"
_description = "Evaluations Statistics"
_auto = False
_rec_name = 'date'
_columns = {
'create_date': fields.date('Create Date', readonly=True),
'delay_date':fields.float('Delay to Start', digits=(16,2),readonly=True),