mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 21:15:41 +00:00
Order barcodes (#4575)
* Add barcode support to external orders - ReturnOrder - PurchaseOrder - SalesOrder * Support scanning for new model types * Integrate UI elements for ReturnOrder * Update PurchaseOrder page * SalesOrder implementation
This commit is contained in:
10
InvenTree/templates/barcode_data.html
Normal file
10
InvenTree/templates/barcode_data.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% load i18n %}
|
||||
{% if instance and instance.barcode_hash %}
|
||||
<tr>
|
||||
<td><span class='fas fa-barcode'></span></td>
|
||||
<td>{% trans "Barcode Identifier" %}</td>
|
||||
<td {% if instance.barcode_data %}title='{{ instance.barcode_data }}'{% endif %}>
|
||||
{{ instance.barcode_hash}}
|
||||
</td>
|
||||
</tr>
|
||||
{% endif %}
|
Reference in New Issue
Block a user