You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
290 B

  1. # -*- coding: utf-8 -*-
  2. from openerp import api
  3. from openerp.osv import osv, fields
  4. from openerp import SUPERUSER_ID
  5. class mail_compose_message(osv.TransientModel):
  6. _inherit = 'mail.compose.message'
  7. _columns = {
  8. 'private': fields.boolean('Send Internal Message'),
  9. }