View | Details | Raw Unified | Return to bug 14781
Collapse All | Expand All

(-)a/C4/Labels/Label.pm (-3 / +2 lines)
Lines 536-542 sub barcode { Link Here
536
            PDF::Reuse::Barcode::COOP2of5(
536
            PDF::Reuse::Barcode::COOP2of5(
537
                x                   => $params{'llx'},
537
                x                   => $params{'llx'},
538
                y                   => $params{'lly'},
538
                y                   => $params{'lly'},
539
                value               => "*$params{barcode_data}*",
539
                value               => $params{barcode_data},
540
                xSize               => $x_scale_factor,
540
                xSize               => $x_scale_factor,
541
                ySize               => $params{'y_scale_factor'},
541
                ySize               => $params{'y_scale_factor'},
542
                mode                    => 'graphic',
542
                mode                    => 'graphic',
Lines 554-560 sub barcode { Link Here
554
            PDF::Reuse::Barcode::Industrial2of5(
554
            PDF::Reuse::Barcode::Industrial2of5(
555
                x                   => $params{'llx'},
555
                x                   => $params{'llx'},
556
                y                   => $params{'lly'},
556
                y                   => $params{'lly'},
557
                value               => "*$params{barcode_data}*",
557
                value               => $params{barcode_data},
558
                xSize               => $x_scale_factor,
558
                xSize               => $x_scale_factor,
559
                ySize               => $params{'y_scale_factor'},
559
                ySize               => $params{'y_scale_factor'},
560
                mode                    => 'graphic',
560
                mode                    => 'graphic',
561
- 

Return to bug 14781