diff --git a/contract/__manifest__.py b/contract/__manifest__.py index 662046fa0..5ccc722cd 100644 --- a/contract/__manifest__.py +++ b/contract/__manifest__.py @@ -9,7 +9,7 @@ { 'name': 'Recurring - Contracts Management', - 'version': '12.0.7.2.3', + 'version': '12.0.7.2.4', 'category': 'Contract Management', 'license': 'AGPL-3', 'author': "OpenERP SA, " diff --git a/contract/models/contract_line.py b/contract/models/contract_line.py index d67447965..1526b73f6 100644 --- a/contract/models/contract_line.py +++ b/contract/models/contract_line.py @@ -205,8 +205,8 @@ class ContractLine(models.Model): ('date_end', '>=', today), ('date_end', '=', False), "|", - "&", ('is_auto_renew', '=', True), + "&", ('is_auto_renew', '=', False), ('termination_notice_date', '>', today), ]