Fix for "next avilable serial number" string

This commit is contained in:
Oliver Walters 2020-10-02 13:54:23 +10:00
parent 7f3018ebf8
commit f12f8156bd

View File

@ -434,7 +434,7 @@ class Part(MPTTModel):
return _('Next available serial numbers are') + ' ' + text
else:
text = str(latest)
text = str(latest + 1)
return _('Next available serial number is') + ' ' + text