From f76fcc708defa025a590e25b1f71a089078bb8f5 Mon Sep 17 00:00:00 2001 From: esam Date: Mon, 22 Sep 2025 00:49:47 -0400 Subject: [PATCH] fix --- odex30_base/whatsapp_mail_messaging/wizard/wh_message_wizard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/odex30_base/whatsapp_mail_messaging/wizard/wh_message_wizard.py b/odex30_base/whatsapp_mail_messaging/wizard/wh_message_wizard.py index 96cec17..465339b 100644 --- a/odex30_base/whatsapp_mail_messaging/wizard/wh_message_wizard.py +++ b/odex30_base/whatsapp_mail_messaging/wizard/wh_message_wizard.py @@ -30,6 +30,7 @@ class WhatsappSendMessage(models.TransientModel): mobile = fields.Char(required=True, string="Contact Number") message = fields.Text(string="Message", required=True) image_1920 = fields.Binary(readonly=1) + user_id = fields.Many2one('res.users', string='User', default=lambda self: self.env.user) @api.onchange('partner_id') def _onchange_partner_id(self):