1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/maintenance_worksheet/views/maintenance_views.xml
2024-12-10 09:04:09 +07:00

40 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
-
<record id="maintenance_request_view_form_inherit_worksheet" model="ir.ui.view">
<field name="name">maintenance.request.view.form.inherit.worksheet</field>
<field name="model">maintenance.request</field>
<field name="inherit_id" ref="maintenance.hr_equipment_request_view_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='equipment_id']" position="after">
<field name="worksheet_template_id" options="{'no_create': True, 'no_create_edit':True}"/>
</xpath>
<xpath expr="//field[@name='kanban_state']" position="before">
<div class="oe_button_box" name="button_box">
<field name="worksheet_count" invisible="1"/>
<button
class="oe_stat_button oe_worksheet"
name="action_maintenance_worksheet"
icon="fa-pencil" type="object"
invisible="not worksheet_template_id or worksheet_count > 0">
<div class="o_stat_info">
<span class="o_stat_text">Worksheet</span>
</div>
</button>
<button
class="oe_stat_button oe_worksheet_completed text-success"
name="action_maintenance_worksheet"
icon="fa-check" type="object"
invisible="not worksheet_template_id or worksheet_count == 0">
<div class="o_stat_info">
<span class="o_stat_text">Worksheet</span>
<span class="o_stat_text">Complete</span>
</div>
</button>
</div>
</xpath>
</field>
</record>
</odoo>