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

(-)a/C4/Barcodes/ValueBuilder.pm (-2 / +4 lines)
Lines 63-70 sub get_barcode { Link Here
63
                            .siblings("select")
63
                            .siblings("select")
64
                            .val();
64
                            .val();
65
65
66
        if(typeof offset == 'undefined'){
67
            var offset = 0;
68
        }
66
        if ( \$(elt).val() == '' ) {
69
        if ( \$(elt).val() == '' ) {
67
            \$(elt).val(homebranch + '$nextnum');
70
            \$(elt).val(homebranch + ($nextnum + offset));
68
        }
71
        }
69
    ~;
72
    ~;
70
    return $nextnum, $scr;
73
    return $nextnum, $scr;
71
- 

Return to bug 8425