2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 04:25:42 +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

@ -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
@ -252,7 +251,7 @@ class PurchaseOrderReceive(AjaxView):
receive = int(receive)
except ValueError:
# In the case on an invalid input, reset to default
receive = line.remaining()
receive = line.remaining()
errors = True
if receive < 0: