Files
stock-logistics-warehouse/stock_location_orderpoint/data/queue_job_function.xml
Michael Tietz a83a92afac [ADD] stock_location_orderpoint:
Declare orderpoint on a location allowing to replenish any product with the same criteria
2023-04-24 13:56:22 +02:00

16 lines
540 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<record
id="job_function_stock_location_orderpoint_moves_auto_replenish"
model="queue.job.function"
>
<field name="model_id" ref="model_stock_location_orderpoint" />
<field name="method">moves_auto_replenish</field>
<field
name="channel_id"
ref="channel_stock_location_orderpoint_auto_replenishment"
/>
<field name="retry_pattern" eval="{1: 1, 5: 5, 10: 10, 15: 30}" />
</record>
</odoo>