[IMP]: crm_helpdesk: Added fields for message and logs

bzr revid: rpa@tinyerp.com-20100708061806-5pw6q2q4htap1jlt
This commit is contained in:
rpa (Open ERP) 2010-07-08 11:48:06 +05:30
parent adf10623d9
commit 72d4edc4c4
1 changed files with 3 additions and 1 deletions

View File

@ -76,7 +76,9 @@ class crm_helpdesk(osv.osv, crm.crm_case):
help='The state is set to \'Draft\', when a case is created.\
\nIf the case is in progress the state is set to \'Open\'.\
\nWhen the case is over, the state is set to \'Done\'.\
\nIf the case needs to be reviewed then the state is set to \'Pending\'.'),
\nIf the case needs to be reviewed then the state is set to \'Pending\'.'),
'message_ids': fields.one2many('mailgate.message', 'res_id', 'Messages', domain=[('history', '=', True),('model','=',_name)]),
'log_ids': fields.one2many('mailgate.message', 'res_id', 'Logs', domain=[('history', '=', False),('model','=',_name)]),
}
_defaults = {