Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2024-03-07 10:17:05 +00:00
commit 6156d67e4a

View file

@ -105,11 +105,9 @@ class Label implements View
} }
} }
if ($settings->alt_barcode_enabled) {
if ($template->getSupport1DBarcode()) { if ($template->getSupport1DBarcode()) {
$barcode1DType = $settings->label2_1d_type; $barcode1DType = $settings->alt_barcode;
$barcode1DType = ($barcode1DType == 'default') ?
(($settings->alt_barcode_enabled) ? $settings->alt_barcode : null) :
$barcode1DType;
if ($barcode1DType != 'none') { if ($barcode1DType != 'none') {
$assetData->put('barcode1d', (object)[ $assetData->put('barcode1d', (object)[
'type' => $barcode1DType, 'type' => $barcode1DType,
@ -117,6 +115,7 @@ class Label implements View
]); ]);
} }
} }
}
if ($template->getSupport2DBarcode()) { if ($template->getSupport2DBarcode()) {
$barcode2DType = $settings->label2_2d_type; $barcode2DType = $settings->label2_2d_type;