change first_name and last_name to full_name on cash_transaction list

This commit is contained in:
behruz-dev
2025-10-07 13:56:28 +05:00
parent 896654b016
commit ceef207b19

View File

@@ -21,7 +21,7 @@ class CashTransactionEmployeeListSerializer(serializers.ModelSerializer):
class Meta:
model = User
fields = [
'id', 'profile_image', 'first_name', 'last_name', 'username'
'id', 'profile_image', 'full_name', 'username'
]