-
-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] event_sale_session: Recovery unconfirmed quantity event
- Loading branch information
1 parent
0a4ab8f
commit 39dd7ee
Showing
5 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Copyright 2017 Tecnativa - David Vidal | ||
# Copyright 2022 Moka Tourisme (https://www.mokatourisme.fr). | ||
# Copyright 2024 Tecnativa - Carolina Fernandez | ||
# @author Iván Todorovich <[email protected]> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0). | ||
|
||
|
@@ -36,7 +37,9 @@ def setUpClass(cls): | |
|
||
def test_sale_session(self): | ||
"""Sell an event with session""" | ||
self.assertEqual(self.session.unconfirmed_qty, 5) | ||
self.order.action_confirm() | ||
self.assertEqual(self.session.unconfirmed_qty, 0) | ||
regs = self.env["event.registration"].search( | ||
[("sale_order_id", "=", self.order.id)] | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters