From f54661e53efdc8c8b2e562c39dc889af7fc82fe9 Mon Sep 17 00:00:00 2001 From: sbejaoui Date: Thu, 19 Dec 2019 12:44:15 +0100 Subject: [PATCH] [12.0][IMP] - Add failing test for wrong invoicing date after contract line stop --- contract/tests/test_contract.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/contract/tests/test_contract.py b/contract/tests/test_contract.py index 5b6ee68bb..6e59ab640 100644 --- a/contract/tests/test_contract.py +++ b/contract/tests/test_contract.py @@ -2315,3 +2315,19 @@ class TestContract(TestContractBase): 'recurring_next_date': '2019-01-01', 'last_date_invoiced': '2019-06-01', }) + + def test_stop_and_update_recurring_invoice_date(self): + self.acct_line.write( + { + 'date_start': '2019-01-01', + 'date_end': '2019-12-31', + 'recurring_next_date': '2020-01-01', + 'recurring_invoicing_type': 'post-paid', + 'recurring_rule_type': 'yearly', + } + ) + self.acct_line.stop(to_date('2019-05-31')) + self.assertEqual(self.acct_line.date_end, to_date('2019-05-31')) + self.assertEqual( + self.acct_line.recurring_next_date, to_date('2019-06-01') + )