@@ -, +, @@ functional - Create a label layout with COOP2of5 barcode type - Create labels (make sure that the items's barcode values are numeric only!) - Export batch and download PDF. - No barcodes rendered - Barcodes should render as expected. Test for both barcode types. --- C4/Labels/Label.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/C4/Labels/Label.pm +++ a/C4/Labels/Label.pm @@ -547,7 +547,7 @@ sub barcode { PDF::Reuse::Barcode::COOP2of5( x => $params{'llx'}, y => $params{'lly'}, - value => "*$params{barcode_data}*", + value => $params{barcode_data}, xSize => $x_scale_factor, ySize => $params{'y_scale_factor'}, mode => 'graphic', @@ -565,7 +565,7 @@ sub barcode { PDF::Reuse::Barcode::Industrial2of5( x => $params{'llx'}, y => $params{'lly'}, - value => "*$params{barcode_data}*", + value => $params{barcode_data}, xSize => $x_scale_factor, ySize => $params{'y_scale_factor'}, mode => 'graphic', --