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

Translateable string fixeas

This commit is contained in:
Oliver 2021-12-07 10:51:40 +11:00
parent 1ad91811a5
commit 1a85e4f21d

View File

@ -188,21 +188,21 @@ class BarcodeAssign(APIView):
if plugin.getStockItem() is not None: if plugin.getStockItem() is not None:
match_found = True match_found = True
response['error'] = _('Barcode already matches StockItem object') response['error'] = _('Barcode already matches Stock Item')
if plugin.getStockLocation() is not None: if plugin.getStockLocation() is not None:
match_found = True match_found = True
response['error'] = _('Barcode already matches StockLocation object') response['error'] = _('Barcode already matches Stock Location')
if plugin.getPart() is not None: if plugin.getPart() is not None:
match_found = True match_found = True
response['error'] = _('Barcode already matches Part object') response['error'] = _('Barcode already matches Part')
if not match_found: if not match_found:
item = plugin.getStockItemByHash() item = plugin.getStockItemByHash()
if item is not None: if item is not None:
response['error'] = _('Barcode hash already matches StockItem object') response['error'] = _('Barcode hash already matches Stock Item')
match_found = True match_found = True
else: else:
@ -214,13 +214,13 @@ class BarcodeAssign(APIView):
# Lookup stock item by hash # Lookup stock item by hash
try: try:
item = StockItem.objects.get(uid=hash) item = StockItem.objects.get(uid=hash)
response['error'] = _('Barcode hash already matches StockItem object') response['error'] = _('Barcode hash already matches Stock Item')
match_found = True match_found = True
except StockItem.DoesNotExist: except StockItem.DoesNotExist:
pass pass
if not match_found: if not match_found:
response['success'] = _('Barcode associated with StockItem') response['success'] = _('Barcode associated with Stock Item')
# Save the barcode hash # Save the barcode hash
item.uid = response['hash'] item.uid = response['hash']