From e6d928780c6cd938ff24e29ce216e91a9929ea00 Mon Sep 17 00:00:00 2001 From: Sergei Zhitenev Date: Wed, 21 Jan 2026 06:27:56 +0100 Subject: [PATCH] PLAT-1995 fix source view json --- poms/transactions/serializers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poms/transactions/serializers.py b/poms/transactions/serializers.py index 025ce4a00..f8664dd65 100644 --- a/poms/transactions/serializers.py +++ b/poms/transactions/serializers.py @@ -4650,7 +4650,7 @@ class TransactionTypeComplexTransactionSerializer(ModelWithAttributesSerializer) read_only=True, many=True, ) - source = serializers.JSONField(read_only=True) + source_data = serializers.JSONField(read_only=True) def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -4734,7 +4734,7 @@ class Meta: "user_date_5", "recon_fields", "execution_log", - "source", + "source_data", ] def to_representation(self, instance):