Skip to content

Commit

Permalink
fixup! Fix stock_release_channel_auto_release backward port to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
TDu committed Aug 30, 2023
1 parent 21a4bba commit f373741
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stock_release_channel_auto_release/data/queue_job_data.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">

<record model="queue.job.channel" id="stock_release_channel">
<field name="name">stock_release_channel</field>
<record model="queue.job.channel" id="stock_release_channel_auto_release">
<field name="name">stock_release_channel_auto_release</field>
<field name="parent_id" ref="queue_job.channel_root" />
</record>

<record id="job_function_stock_picking_auto_release" model="queue.job.function">
<field name="model_id" ref="stock.model_stock_picking" />
<field name="method">auto_release</field>
<field name="channel_id" ref="stock_release_channel" />
<field name="method">auto_release_available_to_promise</field>
<field name="channel_id" ref="stock_release_channel_auto_release" />
</record>

</odoo>

0 comments on commit f373741

Please sign in to comment.