mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-24 12:54:44 +02:00
Added Code93 and Datamatrix as valid barcode types.
This commit is contained in:
parent
6bd3ad6138
commit
3beba96e39
6 changed files with 120 additions and 9 deletions
|
@ -15,9 +15,9 @@
|
|||
<div style="page-break-inside: avoid; page-break-before: avoid; {% if not loop.last %}page-break-after: always;{% endif %}">
|
||||
{% if options.barcodeType == 'none' %}
|
||||
{% include "LabelSystem/labels/label_page_none.html.twig" %}
|
||||
{% elseif options.barcodeType == 'qr' %}
|
||||
{% elseif options.barcodeType in ['qr', 'datamatrix'] %}
|
||||
{% include "LabelSystem/labels/label_page_qr.html.twig" %}
|
||||
{% elseif options.barcodeType == 'code39' %}
|
||||
{% elseif options.barcodeType in ['code39', 'code93'] %}
|
||||
{% include "LabelSystem/labels/label_page_1d.html.twig" %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue