Merge PR #2790 into 16.0

Signed-off-by pedrobaeza
pull/2789/head
OCA-git-bot 2023-12-25 14:47:18 +00:00
commit 1983548b9b
2 changed files with 6 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class AttachmentQueue(models.Model):
_name = "attachment.queue" _name = "attachment.queue"
_description = "Attachment Queue" _description = "Attachment Queue"
_inherits = {"ir.attachment": "attachment_id"} _inherits = {"ir.attachment": "attachment_id"}
_inherit = ["mail.thread"] _inherit = ["mail.thread", "mail.activity.mixin"]
attachment_id = fields.Many2one( attachment_id = fields.Many2one(
"ir.attachment", "ir.attachment",

View File

@ -40,6 +40,11 @@
<field name="state_message" nolabel="1" /> <field name="state_message" nolabel="1" />
</group> </group>
</group> </group>
<xpath expr="//sheet" position="after">
<div class="oe_chatter">
<field name="activity_ids" widget="mail_activity" />
</div>
</xpath>
</field> </field>
</record> </record>