This commit is contained in:
behruz-dev
2025-09-06 17:00:02 +05:00
parent e2d84d434a
commit 1ea619c2ae

View File

@@ -28,7 +28,7 @@ class OrderSerializer(serializers.ModelSerializer):
model = Order
fields = [
'id', 'order_number', 'total_price', 'user', 'payment_type', 'delivery_type',
'delivery_price', 'contact_number', 'address', 'comment', 'name', 'items'
'delivery_price', 'contact_number', 'address', 'comment', 'name', 'items', 'created_at'
]
def get_user(self, obj):