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

(-)a/C4/Labels/Label.pm (-3 / +2 lines)
Lines 547-553 sub barcode { Link Here
547
            PDF::Reuse::Barcode::COOP2of5(
547
            PDF::Reuse::Barcode::COOP2of5(
548
                x                   => $params{'llx'},
548
                x                   => $params{'llx'},
549
                y                   => $params{'lly'},
549
                y                   => $params{'lly'},
550
                value               => "*$params{barcode_data}*",
550
                value               => $params{barcode_data},
551
                xSize               => $x_scale_factor,
551
                xSize               => $x_scale_factor,
552
                ySize               => $params{'y_scale_factor'},
552
                ySize               => $params{'y_scale_factor'},
553
                mode                    => 'graphic',
553
                mode                    => 'graphic',
Lines 565-571 sub barcode { Link Here
565
            PDF::Reuse::Barcode::Industrial2of5(
565
            PDF::Reuse::Barcode::Industrial2of5(
566
                x                   => $params{'llx'},
566
                x                   => $params{'llx'},
567
                y                   => $params{'lly'},
567
                y                   => $params{'lly'},
568
                value               => "*$params{barcode_data}*",
568
                value               => $params{barcode_data},
569
                xSize               => $x_scale_factor,
569
                xSize               => $x_scale_factor,
570
                ySize               => $params{'y_scale_factor'},
570
                ySize               => $params{'y_scale_factor'},
571
                mode                    => 'graphic',
571
                mode                    => 'graphic',
572
- 

Return to bug 14781