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

(-)a/acqui/neworderempty.pl (+1 lines)
Lines 182-187 if ( $ordernumber eq '' ) { # create order Link Here
182
# otherwise, retrieve suggestion information.
182
# otherwise, retrieve suggestion information.
183
    if ($suggestionid) {
183
    if ($suggestionid) {
184
        $data = ($biblionumber) ? GetBiblioData($biblionumber) : GetSuggestion($suggestionid);
184
        $data = ($biblionumber) ? GetBiblioData($biblionumber) : GetSuggestion($suggestionid);
185
        $budget_id ||= $data->{'budgetid'} // 0;
185
    }
186
    }
186
}
187
}
187
else {    #modify order
188
else {    #modify order
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-1 / +1 lines)
Lines 101-106 $(document).ready(function() Link Here
101
            cloneItemBlock(0, '[% UniqueItemFields %]');
101
            cloneItemBlock(0, '[% UniqueItemFields %]');
102
        [% END %]
102
        [% END %]
103
103
104
        [% IF ( suggestionid ) %]updateCosts();[% END %]
104
        $("#quantity").change(function() {
105
        $("#quantity").change(function() {
105
            updateCosts();
106
            updateCosts();
106
        });
107
        });
107
- 

Return to bug 11914