correct problem for sending invoice emails

This commit is contained in:
Kristof Bernaert
2026-02-01 17:53:19 +01:00
parent e5cdfa845e
commit a05e836725
@@ -1,6 +1,3 @@
raise Exception("🔥 account_move.py LOADED 🔥")
import logging
_logger = logging.getLogger(__name__)
@@ -11,8 +8,10 @@ from odoo import models
class AccountMove(models.Model):
_inherit = "account.move"
def action_send_and_print(self):
_logger.error("🔥🔥🔥 CUSTOM action_send_and_print HIT 🔥🔥🔥")
_logger.error("🔥 Context at entry: %s", dict(self.env.context))
def action_invoice_sent(self):
_logger.error("🔥🔥🔥 HIT action_invoice_sent 🔥🔥🔥")
return super().action_invoice_sent()
return super().action_send_and_print()
def action_invoice_send(self):
_logger.error("🔥🔥🔥 HIT action_invoice_send 🔥🔥🔥")
return super().action_invoice_send()