[MERGE] trunk-bug-1022496-hsa: remove a wrong and forgotten 'groups' attribute on the report_project_task_user model; this restriction is used at the views level

lp bug: https://launchpad.net/bugs/1022496 fixed

bzr revid: abo@openerp.com-20120912165223-x56squ51vbn4mtcv
This commit is contained in:
Antonin Bourguignon 2012-09-12 18:52:23 +02:00
commit efa35fac7a
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class report_project_task_user(osv.osv):
('0','Very urgent')], 'Priority', readonly=True),
'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), ('10','October'), ('11','November'), ('12','December')], 'Month', readonly=True),
'state': fields.selection([('draft', 'Draft'), ('open', 'In Progress'), ('pending', 'Pending'), ('cancelled', 'Cancelled'), ('done', 'Done')],'Status', readonly=True),
'company_id': fields.many2one('res.company', 'Company', readonly=True, groups="base.group_multi_company"),
'company_id': fields.many2one('res.company', 'Company', readonly=True),
'partner_id': fields.many2one('res.partner', 'Contact', readonly=True),
}
_order = 'name desc, project_id'