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.
16 lines
463 B
16 lines
463 B
from odoo import models, fields, api, _
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
|
|
def send_msg(self):
|
|
return {'type': 'ir.actions.act_window',
|
|
'name': _('Whatsapp Message'),
|
|
'res_model': 'whatsapp.message.wizard',
|
|
'target': 'new',
|
|
'view_mode': 'form',
|
|
'view_type': 'form',
|
|
'context': {'default_user_id': self.id},
|
|
}
|
|
|