# HG changeset patch # User Etienne Ferriere <etienne.ferriere@xcg-consulting.fr> # Date 1710354370 -3600 # Wed Mar 13 19:26:10 2024 +0100 # Branch 13.0 # Node ID ec5cae6c6965e01e269a954f7c0ef6de4fe4c2a8 # Parent 68c392fd386f1e528ad107332b58208847de8b90 When the account consultation window is opened, the context of the viewed accounting entries is marked with a specific key. diff --git a/NEWS.rst b/NEWS.rst --- 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 --- 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 --- 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,