Files
stock-logistics-warehouse/stock_request_analytic/views/stock_request_views.xml
Lois Rilo 643c954b7a [11.0] stock_request_analytic:
* clean views.
 * allow to create a stock.request with no analytic account.
 * remove copy attribute in non-stored field.
 * remove non-existing field from compute method.
2021-04-09 14:32:48 +01:00

18 lines
651 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2017 Eficent
License LGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="view_stock_request_form" model="ir.ui.view">
<field name="name">stock.request.form</field>
<field name="model">stock.request</field>
<field name="inherit_id" ref="stock_request.view_stock_request_form"/>
<field name="arch" type="xml">
<field name="procurement_group_id" position="after">
<field name="analytic_account_id" groups="analytic.group_analytic_accounting"/>
</field>
</field>
</record>
</odoo>