diff --git a/core/apps/finance/serializers/cash_transaction.py b/core/apps/finance/serializers/cash_transaction.py index b36f899..dff085f 100644 --- a/core/apps/finance/serializers/cash_transaction.py +++ b/core/apps/finance/serializers/cash_transaction.py @@ -13,7 +13,7 @@ class ProjectSerializer(serializers.ModelSerializer): class Meta: model = Project fields = [ - 'id', 'name', 'start_date', 'end_data', 'status' + 'id', 'name', 'start_date', 'end_date', 'status' ] diff --git a/core/apps/wherehouse/serializers/wherehouse.py b/core/apps/wherehouse/serializers/wherehouse.py index cfdc023..55c3e06 100644 --- a/core/apps/wherehouse/serializers/wherehouse.py +++ b/core/apps/wherehouse/serializers/wherehouse.py @@ -12,7 +12,7 @@ class ProjectSerializer(serializers.ModelSerializer): class Meta: model = Project fields = [ - 'id', 'name', 'start_date', 'end_data', 'status' + 'id', 'name', 'start_date', 'end_date', 'status' ]