-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] membership_[type,custom_date]: Add restraint on date_from and d…
…ate_to on membership line This was a bit tricky to get right, architecturally, but I think I arrived at the correct design decision. On the whole, the new restriction makes sense. Following from the fact that dates are mandatory on 'fixed dates' (read: default) membership products, and following from the fact that dates are always set on the membership lines of 'variable period' membership products, membership lines should _always_ have values for date_from and date_to. The fact that these fields are not already required is a strange design decision. The constraint in membership_type _effectively_ sets required=True on these fields. However, there is a use-case for memberships that do not have an end date (using the 'custom' membership product). For those scenarios, we add a toggle on the product (exclusive to 'custom' products) on whether to apply the constraint. Signed-off-by: Carmen Bianca BAKKER <[email protected]>
- Loading branch information
1 parent
9f3eb6c
commit 6ea6037
Showing
7 changed files
with
68 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
19 changes: 19 additions & 0 deletions
19
membership_custom_date/models/membership_membership_line.py
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# SPDX-FileCopyrightText: 2023 Coop IT Easy SC | ||
# | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
from odoo import api, models | ||
|
||
|
||
class MembershipLine(models.Model): | ||
_inherit = "membership.membership_line" | ||
|
||
@api.constrains( | ||
"membership_id", "membership_id.dates_mandatory", "date_from", "date_to" | ||
) | ||
def _check_mandatory_dates(self): | ||
lines = self.filtered( | ||
lambda line: line.membership_id.membership_type != "custom" | ||
or line.membership_id.dates_mandatory | ||
) | ||
return super(MembershipLine, lines)._check_mandatory_dates() |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- | ||
SPDX-FileCopyrightText: 2023 Coop IT Easy SC | ||
SPDX-License-Identifier: AGPL-3.0-or-later | ||
--> | ||
<odoo> | ||
<record id="membership_products_form_period" model="ir.ui.view"> | ||
<field name="name">Membership Products (custom type)</field> | ||
<field name="model">product.template</field> | ||
<field name="inherit_id" ref="membership_type.membership_products_form" /> | ||
<field name="arch" type="xml"> | ||
<field name="membership_type" position="after"> | ||
<field | ||
name="dates_mandatory" | ||
attrs="{'invisible': [('membership_type, '!=', 'custom')]}" | ||
/> | ||
</field> | ||
</field> | ||
</record> | ||
</odoo> |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# SPDX-FileCopyrightText: 2023 Coop IT Easy SC | ||
# | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
from odoo import _, api, models | ||
from odoo.exceptions import ValidationError | ||
|
||
|
||
class MembershipLine(models.Model): | ||
_inherit = "membership.membership_line" | ||
|
||
@api.constrains("date_from", "date_to") | ||
def _check_mandatory_dates(self): | ||
for line in self: | ||
if not line.date_from or not line.date_to: | ||
raise ValidationError( | ||
_("Error: the start and end dates are mandatory.") | ||
) |