mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
* 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.
18 lines
651 B
XML
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>
|