From 647b2f4de1996412975709957cf122b96a08e794 Mon Sep 17 00:00:00 2001 From: odex Date: Tue, 9 Jul 2024 14:19:35 +0300 Subject: [PATCH] [FIX] fix payment chatter --- odex25_accounting/account_log/models/account_chatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odex25_accounting/account_log/models/account_chatter.py b/odex25_accounting/account_log/models/account_chatter.py index 21794d54c..ba97fa235 100644 --- a/odex25_accounting/account_log/models/account_chatter.py +++ b/odex25_accounting/account_log/models/account_chatter.py @@ -180,7 +180,7 @@ class AccountPayment(models.Model): @api.model def _get_tracked_fields(self): fields = self.fields_get() - dels = [f for f in fields if f in models.LOG_ACCESS_COLUMNS or f.startswith('_') or f == 'id'] + dels = [f for f in fields if f in models.LOG_ACCESS_COLUMNS or f.startswith('_') or f == 'id' or f == 'string_to_hash'] for x in dels: del fields[x] return set(fields) \ No newline at end of file