Skip to content

Commit

Permalink
change prefixes on task queues
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkhao committed Jan 9, 2024
1 parent dd34e2a commit 671e061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wms_connector/models/attachment_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def _compute_default_warehouse(self):
for rec in self:
task_queue_prefix = None
if rec.file_type == "wms_reception_confirmed":
task_queue_prefix = "wms_import_picking_in"
task_queue_prefix = "wms_import_confirm_reception"
elif rec.file_type == "wms_delivery_confirmed":
task_queue_prefix = "wms_import_picking_out"
task_queue_prefix = "wms_import_confirm_delivery"
elif rec.file_type == "wms_update_inventory":
task_queue_prefix = "wms_import_update_inventory"

Expand Down

0 comments on commit 671e061

Please sign in to comment.