Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

Automated actions when updating a field V15

形象
odoo
形象
丢弃
2 答案
0
形象
odoo
最佳答案

Thank you Arian :) 

形象
丢弃
0
形象
odoo
最佳答案

You can achieve this by overriding base.automation model using python:

from odoo import api, models

class BaseAutomation(models.Model):
_inherit = 'base.automation'

@api.onchange('field_you_want')
    def _send_email(self):
# email sending code here


1 备注
形象
丢弃
形象
odoo
-

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.