mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
Bug fix for StockItem.clean()
This commit is contained in:
parent
141f6ccbdf
commit
cffeb62bd1
@ -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:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user