mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2023 ACSONE SA/NV
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
<record id="view_location_form" model="ir.ui.view">
|
|
<field name="name">stock.location.form (in stock_location_orderpoint)</field>
|
|
<field name="model">stock.location</field>
|
|
<field name="inherit_id" ref="stock.view_location_form" />
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button
|
|
string=""
|
|
class="oe_stat_button"
|
|
icon="fa-refresh"
|
|
name="action_open_location_orderpoints"
|
|
type="object"
|
|
groups="stock.group_stock_multi_locations"
|
|
>
|
|
<field
|
|
name="location_orderpoint_count"
|
|
string="Orderpoints"
|
|
widget="statinfo"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|