diff --git a/NEWS.rst b/NEWS.rst index 68c392fd386f1e528ad107332b58208847de8b90_TkVXUy5yc3Q=..ec5cae6c6965e01e269a954f7c0ef6de4fe4c2a8_TkVXUy5yc3Q= 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,12 @@ Changelog ========= +13.0.1.3.0 +========== + +When the account consultation window is opened, the context of the viewed +accounting entries is marked with a specific key. + 13.0.1.2.3 ========== diff --git a/__manifest__.py b/__manifest__.py index 68c392fd386f1e528ad107332b58208847de8b90_X19tYW5pZmVzdF9fLnB5..ec5cae6c6965e01e269a954f7c0ef6de4fe4c2a8_X19tYW5pZmVzdF9fLnB5 100644 --- a/__manifest__.py +++ b/__manifest__.py @@ -21,7 +21,7 @@ { "name": "Accounting Reports", "license": "AGPL-3", - "version": "13.0.1.2.3", + "version": "13.0.1.3.0", "category": "Accounting/Accounting", "author": "XCG Consulting", "website": "https://orbeet.io/", diff --git a/wizards/account_consultation.py b/wizards/account_consultation.py index 68c392fd386f1e528ad107332b58208847de8b90_d2l6YXJkcy9hY2NvdW50X2NvbnN1bHRhdGlvbi5weQ==..ec5cae6c6965e01e269a954f7c0ef6de4fe4c2a8_d2l6YXJkcy9hY2NvdW50X2NvbnN1bHRhdGlvbi5weQ== 100644 --- a/wizards/account_consultation.py +++ b/wizards/account_consultation.py @@ -255,6 +255,8 @@ self._refresh_ref_preview() + self = self.with_context(account_consultation=True) + # Show accounting entries. return { "context": self.env.context,