2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00
This commit is contained in:
Oliver Walters
2020-05-22 22:27:52 +10:00
parent e6f56cb056
commit 5245442b11
3 changed files with 6 additions and 3 deletions

View File

@ -151,7 +151,6 @@ class TestReportFormatForm(HelperForm):
'template',
]
def __init__(self, stock_item, *args, **kwargs):
self.stock_item = stock_item

View File

@ -941,7 +941,7 @@ class StockItemSerialize(AjaxUpdateView):
# Pass the StockItem object through to the form
context['item'] = self.get_object()
form = SerializeStockForm(**context)
form = StockForms.SerializeStockForm(**context)
return form