Add records to orders

This commit is contained in:
fnux 2020-03-02 09:25:03 +01:00
commit 81bd54116a
4 changed files with 34 additions and 16 deletions

View file

@ -28,6 +28,9 @@ class VMProductViewSet(ProductViewSet):
return VMProduct.objects.filter(owner=self.request.user)
def create(self, request):
# TODO: what if something blows-up midway?
# => need a transaction
# Create base order.
order = Order.objects.create(
recurring_period=RecurringPeriod.PER_MONTH,
@ -40,6 +43,10 @@ class VMProductViewSet(ProductViewSet):
serializer.is_valid(raise_exception=True)
vm = serializer.save(owner=request.user, order=order)
# Add Product record to order (VM is mutable, allows to keep history in order).
order.add_record(vm.setup_fee,
vm.recurring_price(order.recurring_period), vm.description)
return Response(serializer.data)