mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
18 lines
687 B
XML
18 lines
687 B
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 noupdate="1">
|
|
<record id="stock_location_replenish_view" model="stock.location">
|
|
<field name="name">Replenishment Zone</field>
|
|
<field
|
|
name="location_id"
|
|
model="stock.location"
|
|
eval="obj().env.ref('stock.stock_location_stock').location_id"
|
|
/>
|
|
</record>
|
|
<record id="stock_location_replenish" model="stock.location">
|
|
<field name="name">Replenishment Stock</field>
|
|
<field name="location_id" ref="stock_location_replenish_view" />
|
|
</record>
|
|
</odoo>
|