0 编辑 关闭 删除 标记 Automated actions when updating a field V15 编辑 关闭 删除 标记 odoo 14 九月 2022 退订 订阅 v15hrrecruitment 评论 分享 贴子评论 丢弃 2 答案 0 odoo 16 九月 2022 最佳答案 Thank you Arian :) 备注 分享 贴子评论 丢弃 0 odoo 14 九月 2022 最佳答案 You can achieve this by overriding base.automation model using python:from odoo import api, modelsclass BaseAutomation(models.Model): _inherit = 'base.automation' @api.onchange('field_you_want') def _send_email(self): # email sending code here 备注 分享 1 备注 贴子评论 丢弃 odoo - 14 九月 2022 删除 转换为答案 Or if you want to do it after updating it or based on the value of updated field you can override write method as wel.