forked from OCA/connector-cmis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument_view.xml
More file actions
29 lines (27 loc) · 986 Bytes
/
document_view.xml
File metadata and controls
29 lines (27 loc) · 986 Bytes
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>
<!--Inherit ir.attachment Form View-->
<record model="ir.ui.view" id="view_document_file_form_doc_backend">
<field name="name">ir.attachment.doc.backend</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" readonly="1">
<tree string="AttachmentDocBackendTree">
<field name="backend_id"/>
<field name="object_doc_id"/>
</tree>
<form string="AttachmentDocBackendForm">
<field name="backend_id"/>
<field name="object_doc_id"/>
</form>
</field>
</group>
</group>
</field>
</record>
</data>
</openerp>