Skip to content

Commit

Permalink
stock_quant_history_queued: fix state order
Browse files Browse the repository at this point in the history
  • Loading branch information
petrus-v committed Apr 10, 2024
1 parent b99288f commit 2955f23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class StockQuantHistorySnapshot(models.Model):
_inherit = "stock.quant.history.snapshot"
state = fields.Selection(
selection_add=[("queued", "In progress")],
selection_add=[("queued", "In progress"), ("generated",)],
ondelete={"queued": "set default"},
)

Expand Down

0 comments on commit 2955f23

Please sign in to comment.