12 lines
355 B
Python
12 lines
355 B
Python
from rest_framework import serializers
|
|
|
|
from core.apps.orders.models import Order
|
|
|
|
|
|
class OrderListSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Order
|
|
fields = [
|
|
'id', 'order_number', 'name', 'date', 'status', 'size', 'total_price', 'is_paid', 'location', 'location_to',
|
|
'location_from'
|
|
] |