12 lines
291 B
Python
12 lines
291 B
Python
from rest_framework import serializers
|
|
|
|
from core.apps.wherehouse.models.inventory import Inventory
|
|
|
|
|
|
class InventoryListSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Inventory
|
|
fields = [
|
|
'id', 'quantity', 'product', 'price', 'unity'
|
|
]
|