From 228053c1c0048a8ff70edd5f6c8dd3d43a9fe683 Mon Sep 17 00:00:00 2001 From: Nossibaelhadi Date: Thu, 8 Jan 2026 01:09:58 +0300 Subject: [PATCH] [FIX] solve bugs from test 11 --- .../odex_takaful/wizards/account_payment_register.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/odex25_takaful/odex_takaful/wizards/account_payment_register.py b/odex25_takaful/odex_takaful/wizards/account_payment_register.py index 992bc6f92..4a8ba9317 100644 --- a/odex25_takaful/odex_takaful/wizards/account_payment_register.py +++ b/odex25_takaful/odex_takaful/wizards/account_payment_register.py @@ -313,7 +313,8 @@ class AccountRegisterPayment(models.TransientModel): if errors: raise ValidationError("\n".join(errors)) - self.communication += "******" + self.bank_id.name + "******" + str(self.last_digits) + digit = self.bank_id.name + "******" + str(self.last_digits) if self.bank_id.name and str(self.last_digits) else "" + self.communication += digit res = super(AccountRegisterPayment, self.with_context(skip_account_move_synchronization=True)).action_create_payments()