mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
Declare orderpoint on a location allowing to replenish any product with the same criteria
12 lines
434 B
XML
12 lines
434 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="sequence_location_orderpoint" model="ir.sequence">
|
|
<field name="name">Stock locaation orderpoint</field>
|
|
<field name="code">stock.location.orderpoint</field>
|
|
<field name="prefix">LOP/</field>
|
|
<field name="padding">5</field>
|
|
<field name="number_next">1</field>
|
|
<field name="number_increment">1</field>
|
|
</record>
|
|
</odoo>
|