mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
21 lines
871 B
XML
21 lines
871 B
XML
<?xml version="1.0"?>
|
|
<!-- Copyright 2016 Eficent Business and IT Consulting Services S.L.
|
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) -->
|
|
<odoo>
|
|
<record id="view_account_analytic_account_form" model="ir.ui.view">
|
|
<field name="name">analytic.order.form</field>
|
|
<field name="model">account.analytic.account</field>
|
|
<field name="inherit_id" ref="analytic.view_account_analytic_account_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='main']" position='after'>
|
|
<notebook groups="stock_request.group_stock_request_user">
|
|
<page string="Stock Request" name="stock_request">
|
|
<field name="stock_request_ids"/>
|
|
</page>
|
|
</notebook>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|