You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
419 B

from rest_framework.viewsets import ModelViewSet
from .models import StockOperation
from .serializers import StockOperationSerializer
class StockOperationViewSet(ModelViewSet):
queryset = StockOperation.objects.all()
serializer_class = StockOperationSerializer
def handle_goods_reception(sender, instance, created, **kwargs):
if created and instance.is_accepted:
from warehouse.models import Stock