2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00

Peppy fixes

This commit is contained in:
Oliver Walters 2019-06-15 19:42:09 +10:00
parent 1290e7f289
commit 3405fb93a9
3 changed files with 5 additions and 6 deletions

View File

@ -112,7 +112,8 @@ class PurchaseOrder(Order):
help_text=_('Company')
)
received_by = models.ForeignKey(User,
received_by = models.ForeignKey(
User,
on_delete=models.SET_NULL,
blank=True, null=True,
related_name='+'
@ -242,7 +243,6 @@ class PurchaseOrder(Order):
po=str(self))
)
# Update the number of parts received against the particular line item
line.received += quantity
line.save()

View File

@ -5,7 +5,6 @@ Django views for interacting with Order app
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import transaction
from django.shortcuts import get_object_or_404
from django.utils.translation import ugettext as _
from django.views.generic import DetailView, ListView