mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
<?xml version="1.0" ?>
|
|
<!-- Copyright 2016-2020 ForgeFlow, S.L. (https://www.forgeflow.com)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-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="//div[@name='button_box']" position="inside">
|
|
<field name="stock_request_ids" invisible="1" />
|
|
<button
|
|
type="object"
|
|
name="action_view_stock_request"
|
|
class="oe_stat_button"
|
|
icon="fa-chain"
|
|
widget="statinfo"
|
|
string="Stock Requests"
|
|
attrs="{'invisible':[('stock_request_ids', '=', [])]}"
|
|
/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|