关于odoo12 对于弹窗类数据的修改记录
-
odoo12中one2many或者many2many一类中点击修改其中的数据,弹窗下面不出现修改记录。
one2many对应的模型中已经添加了_inherit = ['mail.thread', 'mail.activity.mixin'] name = fields.Char(string="Name") inout = fields.Selection(string="InOut", selection=[('Import', '进口'), ('Export', '出口'), ], track_visibility='always',) contract_num = fields.Char(string="Contract Num", track_visibility='onchange')
页面中已添加
<div class="oe_chatter"> <field name="message_follower_ids" widget="mail_followers"/> <field name="activity_ids" widget="mail_activity"/> <field name="message_ids" widget="mail_thread"/> </div>
但是,在点击one2many修改其中的数据下方还是不会出现修改记录。
-
你是想在parent model对应的表单中跟踪many端的数据变化吧?直接在many对应model的字段上使用
track_visibility
是不可以的,这里跟踪的信息是记录在many端的对象上的。你可以在many端有数据变化时调用parent端的
post_message
方法,或者可以通过定义sub_type
, 覆写track_subtype
方法来实现你的需求。