mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
Controls how to compute the workcenter cost of a manufactured product (effective vs theoretical).
19 lines
687 B
XML
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>
|