stock_inventory_scrap_backdate/views/stock_scrap_views.xml
2026-06-17 14:59:07 +07:00

15 lines
617 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_stock_scrap_form_inherit_backdate" model="ir.ui.view">
<field name="name">stock.scrap.form.inherit.backdate</field>
<field name="model">stock.scrap</field>
<field name="inherit_id" ref="stock.stock_scrap_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='date_done']" position="attributes">
<attribute name="invisible">False</attribute>
<attribute name="readonly">state != 'draft'</attribute>
</xpath>
</field>
</record>
</odoo>