diff --git a/base_accounting_kit/__manifest__.py b/base_accounting_kit/__manifest__.py index fefcb4a66..d1a97d8e5 100644 --- a/base_accounting_kit/__manifest__.py +++ b/base_accounting_kit/__manifest__.py @@ -22,7 +22,7 @@ { 'name': 'Odoo 14 Full Accounting Kit', - 'version': '14.0.3.13.12', + 'version': '14.0.3.13.13', 'category': 'Accounting', 'live_test_url': 'https://www.youtube.com/watch?v=peAp2Tx_XIs', 'summary': """ Asset and Budget Management, diff --git a/base_accounting_kit/doc/changelog.md b/base_accounting_kit/doc/changelog.md index 8e0c0b1fa..a60a5d305 100644 --- a/base_accounting_kit/doc/changelog.md +++ b/base_accounting_kit/doc/changelog.md @@ -95,3 +95,8 @@ #### Version 14.0.3.13.12 #### UPDT - Dashboard issue fixed, 'state' field is ambigous + +#### 18.08.2021 +#### Version 14.0.3.13.13 +#### UPDT +- Reconciliation issue fixed diff --git a/base_accounting_kit/models/payment_matching.py b/base_accounting_kit/models/payment_matching.py index 6c7d905fa..9882fc09f 100644 --- a/base_accounting_kit/models/payment_matching.py +++ b/base_accounting_kit/models/payment_matching.py @@ -283,7 +283,6 @@ class AccountReconciliation(models.AbstractModel): aml_ids = self._context.get('active_ids') and self._context.get('active_model') == 'account.move.line' and tuple(self._context.get('active_ids')) if aml_ids: aml = MoveLine.browse(aml_ids) - aml._check_reconcile_validity() account = aml[0].account_id currency = account.currency_id or account.company_id.currency_id return {