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

Bug fix for StockItem.clean()

This commit is contained in:
Oliver Walters 2022-04-19 20:28:13 +10:00
parent 141f6ccbdf
commit cffeb62bd1

View File

@ -453,8 +453,11 @@ class StockItem(MPTTModel):
super().clean() super().clean()
self.serial = self.serial.strip() if self.serial is not None and type(self.serial) is str:
self.batch = self.batch.strip() self.serial = self.serial.strip()
if self.batch is not None and type(self.batch) is str:
self.batch = self.batch.strip()
try: try:
if self.part.trackable: if self.part.trackable: