You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.5 KiB
32 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!--Attachment Form View-->
|
|
<record id="view_attachment_form" model="ir.ui.view" >
|
|
<field name="name">ir.attachment.view.form.inherit.chatter.attachments.manager
|
|
</field>
|
|
<field name="model">ir.attachment</field>
|
|
<field name="inherit_id" ref="base.view_attachment_form"/>
|
|
<field name="priority" eval="25"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='type']" position="after">
|
|
<field name="tags_ids" string="Tag" widget="many2many_tags"
|
|
options="{'color_field': 'color', 'no_create_edit': True}"/>
|
|
<field name="local_url" string="Loc_url"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
<!-- Search view-->
|
|
<record id="view_attachment_search" model="ir.ui.view">
|
|
<field name="name">ir.attachment.view.search.inherit.chatter.attachments.manager</field>
|
|
<field name="model">ir.attachment</field>
|
|
<field name="inherit_id" ref="base.view_attachment_search"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//filter[@name='creation_month']" position="after">
|
|
<filter string="Tags" name="attach_tags" domain="[]" context="{'group_by':'tags_ids'}"/>
|
|
</xpath>
|
|
<xpath expr="//field[@name='type']" position="after">
|
|
<field name="tags_ids"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|