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

Peppy fixes

This commit is contained in:
Oliver Walters 2019-06-12 00:39:33 +10:00
parent f0796327b3
commit a41a6c52ca

View File

@ -7,7 +7,6 @@ from __future__ import unicode_literals
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from django.views.generic import DetailView, ListView from django.views.generic import DetailView, ListView
from django.views.generic.edit import FormMixin
from django.forms import HiddenInput from django.forms import HiddenInput
from .models import PurchaseOrder, PurchaseOrderLineItem from .models import PurchaseOrder, PurchaseOrderLineItem
@ -181,7 +180,7 @@ class OrderParts(AjaxView):
""" Get a list of all the parts associated with the stock items. """ Get a list of all the parts associated with the stock items.
- Base part must be purchaseable. - Base part must be purchaseable.
- Return a set of corresponding Part IDs - Return a set of corresponding Part IDs
""" """
stock_items = StockItem.objects.filter( stock_items = StockItem.objects.filter(
part__purchaseable=True, part__purchaseable=True,