mirror of
https://github.com/lemeow125/Ivy-Backend.git
synced 2024-11-16 22:29:25 +08:00
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
from rest_framework import serializers
|
|
from django.contrib.auth.models import User
|
|
from .models import Product
|
|
|
|
|
|
class HistoricalRecordField(serializers.ListField):
|
|
child = serializers.DictField()
|
|
|
|
def to_representation(self, data):
|
|
return super().to_representation(data.values('quantity', 'history_date').order_by('-history_date'))
|
|
|
|
|
|
class ProductSerializer(serializers.HyperlinkedModelSerializer):
|
|
date_added = serializers.DateTimeField(
|
|
format="%m-%d-%Y %I:%M%p", read_only=True)
|
|
quantity = serializers.IntegerField(required=False, default=0)
|
|
history = HistoricalRecordField(read_only=True)
|
|
|
|
class Meta:
|
|
model = Product
|
|
fields = ('id', 'name', 'quantity', 'date_added', 'history')
|
|
read_only_fields = ('id', 'date_added', 'history')
|
|
|
|
|
|
class LogSerializer(serializers.HyperlinkedModelSerializer):
|
|
history_date = serializers.DateTimeField(
|
|
format="%m-%d-%Y %I:%M%p", read_only=True)
|
|
history_user = serializers.ReadOnlyField(source='history_user.username')
|
|
|
|
class Meta:
|
|
model = Product.history.model
|
|
fields = ('history_id', 'id', 'name', 'quantity',
|
|
'history_date', 'history_user')
|
|
read_only_fields = ('history_id', 'id', 'name', 'quantity',
|
|
'history_date', 'history_user')
|