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()
self.serial = self.serial.strip()
self.batch = self.batch.strip()
if self.serial is not None and type(self.serial) is str:
self.serial = self.serial.strip()
if self.batch is not None and type(self.batch) is str:
self.batch = self.batch.strip()
try:
if self.part.trackable: