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

(-)a/acqui/neworderempty.pl (+1 lines)
Lines 386-391 $template->param( Link Here
386
# CHECKME: gst-stuff needs verifing, mason.
386
# CHECKME: gst-stuff needs verifing, mason.
387
    gstrate          => $bookseller->{'gstrate'} // C4::Context->preference("gist") // 0,
387
    gstrate          => $bookseller->{'gstrate'} // C4::Context->preference("gist") // 0,
388
    gstreg           => $bookseller->{'gstreg'},
388
    gstreg           => $bookseller->{'gstreg'},
389
    acqcreate        => C4::Context->preference("AcqCreateItem") eq "ordering" ? 1 : ""
389
);
390
);
390
391
391
output_html_with_http_headers $input, $cookie, $template->output;
392
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-1 / +2 lines)
Lines 129-134 $(document).ready(function() Link Here
129
129
130
        //We apply the fonction only for modify option
130
        //We apply the fonction only for modify option
131
        [% IF ( quantityrec ) %]
131
        [% IF ( quantityrec ) %]
132
        [% IF ( acqcreate ) %]
132
        $('#quantity').blur(function() 
133
        $('#quantity').blur(function() 
133
        {
134
        {
134
            // if user decreases the quantity
135
            // if user decreases the quantity
Lines 147-152 $(document).ready(function() Link Here
147
            }
148
            }
148
        });
149
        });
149
        [% END %]
150
        [% END %]
151
        [% END %]
150
        
152
        
151
        //keep a copy of all budgets before removing the inactives
153
        //keep a copy of all budgets before removing the inactives
152
        disabledBudgetsCopy = $('#budget_id').html();
154
        disabledBudgetsCopy = $('#budget_id').html();
153
- 

Return to bug 7228