details:   https://code.tryton.org/tryton/commit/19ce5a9295fd
branch:    6.0
user:      Adrián Bernardi <[email protected]>
date:      Thu Feb 19 13:07:37 2026 +0100
description:
        Use the same context for the account getter and searcher of general 
ledger

        Closes #14590
        (grafted from 488439bb54ccc54f1173d9a33af418a24a0c71fd)
diffstat:

 modules/account/account.py |  22 +++++++++++++---------
 1 files changed, 13 insertions(+), 9 deletions(-)

diffs (46 lines):

diff -r dce559c9b9a1 -r 19ce5a9295fd modules/account/account.py
--- a/modules/account/account.py        Tue Feb 10 18:21:47 2026 +0100
+++ b/modules/account/account.py        Thu Feb 19 13:07:37 2026 +0100
@@ -1786,9 +1786,7 @@
         return None, None
 
     @classmethod
-    def get_account(cls, records, name):
-        Account = cls._get_account()
-
+    def _account_context(cls, name):
         period_ids, from_date, to_date = None, None, None
         context = Transaction().context
         if context.get('start_period') or context.get('end_period'):
@@ -1798,10 +1796,17 @@
         else:
             if name.startswith('start_'):
                 period_ids = []
-
-        with Transaction().set_context(
-                periods=period_ids,
-                from_date=from_date, to_date=to_date):
+        return {
+            'periods': period_ids,
+            'from_date': from_date,
+            'to_date': to_date,
+            }
+
+    @classmethod
+    def get_account(cls, records, name):
+        Account = cls._get_account()
+
+        with Transaction().set_context(cls._account_context(name)):
             accounts = Account.browse(records)
         fname = name
         for test in ['start_', 'end_']:
@@ -1814,8 +1819,7 @@
     def search_account(cls, name, domain):
         Account = cls._get_account()
 
-        period_ids = cls.get_period_ids(name)
-        with Transaction().set_context(periods=period_ids):
+        with Transaction().set_context(cls._account_context(name)):
             accounts = Account.search([], order=[])
 
         _, operator_, operand = domain

Reply via email to