91 lines
5.0 KiB
XML
91 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Files -->
|
|
<record model="ir.ui.view" id="view_document_file_kanban_mrp">
|
|
<field name="name">mrp.document kanban.mrp</field>
|
|
<field name="model">mrp.document</field>
|
|
<field name="arch" type="xml">
|
|
<kanban js_class="mrp_documents_kanban" create="false">
|
|
<field name="ir_attachment_id"/>
|
|
<field name="mimetype"/>
|
|
<field name="type"/>
|
|
<field name="name"/>
|
|
<field name="priority"/>
|
|
<field name="create_uid"/>
|
|
<templates>
|
|
<t t-name="kanban-menu">
|
|
<a t-if="widget.editable" type="edit" class="dropdown-item">Edit</a>
|
|
<a t-if="widget.deletable" type="delete" class="dropdown-item">Delete</a>
|
|
<a class="dropdown-item o_mrp_download">Download</a>
|
|
</t>
|
|
<t t-name="kanban-box">
|
|
<div class="oe_kanban_global_area o_kanban_attachment oe_kanban_global_click">
|
|
<div class="o_kanban_image">
|
|
<t t-set="binaryPreviewable"
|
|
t-value="new RegExp('(image|video|application/pdf|text)').test(record.mimetype.value) && record.type.raw_value === 'binary'"/>
|
|
<div t-attf-class="o_kanban_image_wrapper #{(webimage or binaryPreviewable) ? 'o_kanban_previewer' : ''}">
|
|
<t t-set="webimage" t-value="new RegExp('image.*(gif|jpeg|jpg|png|webp)').test(record.mimetype.value)"/>
|
|
<div t-if="record.type.raw_value == 'url'" class="o_url_image fa fa-link fa-3x text-muted" aria-label="Image is a link"/>
|
|
<img t-elif="webimage" t-attf-src="/web/image/#{record.ir_attachment_id.raw_value}" width="100" height="100" alt="Document" class="o_attachment_image"/>
|
|
<div t-else="" class="o_image o_image_thumbnail" t-att-data-mimetype="record.mimetype.value"/>
|
|
</div>
|
|
</div>
|
|
<div class="o_kanban_details">
|
|
<div class="o_kanban_details_wrapper">
|
|
<div class="o_kanban_record_title">
|
|
<field name="name" class="o_text_overflow"/>
|
|
</div>
|
|
<div class="o_kanban_record_body">
|
|
<field name="url" widget="url" invisible="type == 'binary'"/>
|
|
</div>
|
|
<div class="o_kanban_record_bottom">
|
|
<span class="oe_kanban_bottom_left">
|
|
<field name="priority" widget="priority"/>
|
|
</span>
|
|
<div class="oe_kanban_bottom_right">
|
|
<field name="create_uid" widget="many2one_avatar_user"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</templates>
|
|
</kanban>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_mrp_document_form" model="ir.ui.view">
|
|
<field name="name">mrp.document.form</field>
|
|
<field name="model">mrp.document</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Attachments">
|
|
<sheet>
|
|
<label for="name"/>
|
|
<h1>
|
|
<field name="name"/>
|
|
</h1>
|
|
<group>
|
|
<group>
|
|
<field name="type"/>
|
|
<field name="datas" filename="name" invisible="type == 'url'"/>
|
|
<field name="url" widget="url" invisible="type == 'binary'"/>
|
|
</group>
|
|
<group string="Attached To" groups="base.group_no_one">
|
|
<field name="res_name"/>
|
|
<field name="company_id" groups="base.group_multi_company" options="{'no_create': True}"/>
|
|
</group>
|
|
<group string="History" groups="base.group_no_one" invisible="not create_date">
|
|
<label for="create_uid" string="Creation"/>
|
|
<div name="creation_div">
|
|
<field name="create_uid" readonly="1" class="oe_inline"/> on
|
|
<field name="create_date" readonly="1" class="oe_inline"/>
|
|
</div>
|
|
</group>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|