correct problem for sending invoice emails
This commit is contained in:
@@ -1,6 +1,3 @@
|
|||||||
raise Exception("🔥 account_move.py LOADED 🔥")
|
|
||||||
|
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
_logger = logging.getLogger(__name__)
|
_logger = logging.getLogger(__name__)
|
||||||
@@ -11,8 +8,10 @@ from odoo import models
|
|||||||
class AccountMove(models.Model):
|
class AccountMove(models.Model):
|
||||||
_inherit = "account.move"
|
_inherit = "account.move"
|
||||||
|
|
||||||
def action_send_and_print(self):
|
def action_invoice_sent(self):
|
||||||
_logger.error("🔥🔥🔥 CUSTOM action_send_and_print HIT 🔥🔥🔥")
|
_logger.error("🔥🔥🔥 HIT action_invoice_sent 🔥🔥🔥")
|
||||||
_logger.error("🔥 Context at entry: %s", dict(self.env.context))
|
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()
|
||||||
|
|||||||
Reference in New Issue
Block a user