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

(-)a/acqui/addorderiso2709.pl (+2 lines)
Lines 140-145 if ($op eq ""){ Link Here
140
    my @import_record_id_selected = $input->multi_param("import_record_id");
140
    my @import_record_id_selected = $input->multi_param("import_record_id");
141
    my @quantities = $input->multi_param('quantity');
141
    my @quantities = $input->multi_param('quantity');
142
    my @prices = $input->multi_param('price');
142
    my @prices = $input->multi_param('price');
143
    my @orderreplacementprices = $input->multi_param('replacementprice');
143
    my @budgets_id = $input->multi_param('budget_id');
144
    my @budgets_id = $input->multi_param('budget_id');
144
    my @discount = $input->multi_param('discount');
145
    my @discount = $input->multi_param('discount');
145
    my @sort1 = $input->multi_param('sort1');
146
    my @sort1 = $input->multi_param('sort1');
Lines 317-322 if ($op eq ""){ Link Here
317
                order_internalnote => $cgiparams->{'all_order_internalnote'},
318
                order_internalnote => $cgiparams->{'all_order_internalnote'},
318
                order_vendornote   => $cgiparams->{'all_order_vendornote'},
319
                order_vendornote   => $cgiparams->{'all_order_vendornote'},
319
                currency           => $cgiparams->{'all_currency'},
320
                currency           => $cgiparams->{'all_currency'},
321
                replacementprice   => shift( @orderreplacementprices ),
320
            );
322
            );
321
            # get the price if there is one.
323
            # get the price if there is one.
322
            my $price= shift( @prices ) || GetMarcPrice($marcrecord, C4::Context->preference('marcflavour'));
324
            my $price= shift( @prices ) || GetMarcPrice($marcrecord, C4::Context->preference('marcflavour'));
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt (-1 / +4 lines)
Lines 117-122 Link Here
117
                                <label for="price_record_[% biblio.import_record_id | html %]">Price: </label>
117
                                <label for="price_record_[% biblio.import_record_id | html %]">Price: </label>
118
                                <input id="price_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.price | html %]" name="price" />
118
                                <input id="price_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.price | html %]" name="price" />
119
                            </li>
119
                            </li>
120
                            <li class="replacementprice">
121
                                <label for="replacementprice_record_[% biblio.import_record_id | html %]">Replacement price: </label>
122
                                <input id="replacementprice_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.replacementprice | html %]" name="replacementprice" />
123
                            </li>
120
                            <li class="discount">
124
                            <li class="discount">
121
                                <label for="discount_record_[% biblio.import_record_id | html %]">Discount: </label>
125
                                <label for="discount_record_[% biblio.import_record_id | html %]">Discount: </label>
122
                                <input id="discount_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.discount | html %]" name="discount" size="6" /> %
126
                                <input id="discount_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.discount | html %]" name="discount" size="6" /> %
123
- 

Return to bug 23338