I cannot find the view which contain Activities on res.partner form view
I tried to inherit mail.mail_activity_type_view_form but it is not
<record id="mail_activity_view_inherit" model="ir.ui.view">
<field name="name">mail.activity.type.view.form.inherit</field>
<field name="model">mail.activity.type</field>
<field name="inherit_id" ref="mail.mail_activity_type_view_form" />
</record>
Let me try to help, you're trying to
_inherit
mail.activity
view which is not possible by usingxml
, because it will not inherit from xml it is written inqweb
, so for that you have toextend
it like.