[Fix] crm: Fix the id problem of meeting

bzr revid: sbh@tinyerp.com-20101102113231-oqax0zbxpj3tusg8
This commit is contained in:
sbh (Open ERP) 2010-11-02 17:02:31 +05:30
parent c850408eae
commit 7ce8233a0b
1 changed files with 1 additions and 0 deletions

View File

@ -133,6 +133,7 @@ class crm_meeting(crm_case, osv.osv):
res = super(crm_meeting, self).case_open(cr, uid, ids, args)
for (id, name) in self.name_get(cr, uid, ids):
message = _("The meeting '%s' has been confirmed.") % name
id=base_calendar.base_calendar_id2real_id(id)
self.log(cr, uid, id, message)
return res