2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-09 07:00:56 +00:00

Fix tests for stock serialization

This commit is contained in:
Oliver Walters
2019-08-29 07:37:44 +10:00
parent 4db345d0c2
commit 937bcd41d6
3 changed files with 8 additions and 7 deletions

View File

@ -359,6 +359,7 @@ class StockItem(models.Model):
Brief automated note detailing a movement or quantity change.
"""
track = StockItemTracking.objects.create(
item=self,
title=title,
@ -373,7 +374,7 @@ class StockItem(models.Model):
track.save()
@transaction.atomic
def serializeStock(self, quantity, serials, user, notes=None, location=None):
def serializeStock(self, quantity, serials, user, notes='', location=None):
""" Split this stock item into unique serial numbers.
- Quantity can be less than or equal to the quantity of the stock item