Files
manufacture/mrp_bom_image/views/view_mrp_bom.xml
2024-07-11 22:25:55 +02:00

52 lines
2.0 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (C) 2024 - Today: GRAP (http://www.grap.coop)
@author: Quentin DUPONT (quentin.dupont@grap.coop)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>
<!-- ************************************************************ -->
<!-- MRP Bill of Materials - Form -->
<!-- ************************************************************ -->
<record id="view_mrp_bom_form" model="ir.ui.view">
<field name="model">mrp.bom</field>
<field name="inherit_id" ref="mrp.mrp_bom_form_view" />
<field name="arch" type="xml">
<xpath expr="//widget[@name='web_ribbon']" position="after">
<field
name="image_1024"
widget="image"
class="oe_avatar"
options="{'preview_image': 'image_128'}"
/>
</xpath>
</field>
</record>
<!-- ************************************************************ -->
<!-- MRP Bill of Materials - Kanban -->
<!-- ************************************************************ -->
<record id="view_mrp_bom_kanban" model="ir.ui.view">
<field name="model">mrp.bom</field>
<field name="inherit_id" ref="mrp.mrp_bom_kanban_view" />
<field name="arch" type="xml">
<xpath expr="//div[@class='o_kanban_record_top']" position="before">
<div class="o_kanban_image">
<img
class="o_image_64_contain"
t-att-src="kanban_image('mrp.bom', 'image_128', record.product_tmpl_id.raw_value)"
alt="Bill of Material Image"
/>
</div>
</xpath>
<xpath expr="//div[@class='o_kanban_record_top']" position="attributes">
<attribute name="class">oe_kanban_details</attribute>
</xpath>
</field>
</record>
</odoo>