Skip to content

Commit 2955f23

Browse files
committed
stock_quant_history_queued: fix state order
1 parent b99288f commit 2955f23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stock_quant_history_queued/models/stock_quant_history_snapshot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class StockQuantHistorySnapshot(models.Model):
88
_inherit = "stock.quant.history.snapshot"
99
state = fields.Selection(
10-
selection_add=[("queued", "In progress")],
10+
selection_add=[("queued", "In progress"), ("generated",)],
1111
ondelete={"queued": "set default"},
1212
)
1313

0 commit comments

Comments
 (0)