看板视图中的附件Odoo 8

时间:2016-03-22 08:28:52

标签: binary attachment odoo-8 kanban

我需要在看板视图中显示附件。

<record id="view_document_ir_attachment_kanban" model="ir.ui.view">
        <field name="name">ir.attachment.kanban</field>
        <field name="model">ir.attachment</field>
        <field name="arch" type="xml">
            <kanban create="false">
                <field name="name" />
                <field name="datas" />
                <templates>
                    <t t-name="kanban-box">
                        <div style="width: 100px;">
                            <field name="name" />
                            <field name="data"/>
                        </div>
                    </t>
                </templates>
            </kanban>
        </field>
    </record>

此处字段数据是二进制字段。

1 个答案:

答案 0 :(得分:0)

第256行后的

\ addons \ document \ _ document_view.xml。添加此

<menuitem name="Documents" id="menu_document_doc" parent="knowledge.menu_document" sequence="0"/>

<menuitem name="Documents" action="action_document_file_form" id="menu_document_files" parent="menu_document_doc" sequence="0"/>