forked from OCA/knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument_view.xml
30 lines (29 loc) · 1.03 KB
/
document_view.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0"?>
<openerp>
<data>
<!--Add model list field-->
<record model="ir.ui.view" id="view_document_file_multiple_models_form">
<field name="name">ir.attachment.multiple.models</field>
<field name="model">ir.attachment</field>
<field name="inherit_id" ref="document.view_document_file_form"/>
<field name="arch" type="xml">
<group string="Indexed Content" position="after">
<group col="2" colspan="4">
<field name="attachment_document_ids" nolabel="1">
<tree string="AttachmentDocumentTree" create="false" version="7.0">
<field name="res_model"/>
<field name="res_id"/>
<field name="res_name"/>
</tree>
<form string="AttachmentDocumentForm">
<field name="res_model"/>
<field name="res_id"/>
<field name="res_name"/>
</form>
</field>
</group>
</group>
</field>
</record>
</data>
</openerp>