Files
manufacture/mrp_workcenter_cost/views/product_template.xml
Ivàn Todorovich e21b65ef73 [ADD] mrp_workcenter_cost
Controls how to compute the workcenter cost of a manufactured product
(effective vs theoretical).
2023-05-17 10:41:17 +02:00

19 lines
687 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2023 Camptocamp SA
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="product_template_form_view" model="ir.ui.view">
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view" />
<field name="arch" type="xml">
<group name="group_lots_and_weight" position="inside">
<field
name="mrp_workcenter_cost"
widget="radio"
options="{'horizontal': True}"
/>
</group>
</field>
</record>
</odoo>