Bug 36053: Correct input name for item replacement fields
To test:
1 - Follow test plan and use sample record from bug 35912 ( or similar)
2 - Confirm that when the order is saved the replacement price is $0.00
3 - Apply patch, restart_all
4 - Delete previous orders, and stage and add to basket again
5 - Confirm that upon adding orders to basket the replacement price is saved correctly
Signed-off-by: Brendan Lawlor <blawlor@clamsnet.org>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit 94da493d0e
)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
parent
1b041972c0
commit
f53018dce0
2 changed files with 2 additions and 2 deletions
|
@ -226,7 +226,7 @@ if ($op eq ""){
|
|||
my @budget_ids =
|
||||
$input->multi_param( 'budget_code_' . $import_record->import_record_id ); # bad field name used in template!
|
||||
my @itemprices = $input->multi_param('itemprice_' . $import_record->import_record_id);
|
||||
my @replacementprices = $input->multi_param('replacementprice_' . $import_record->import_record_id);
|
||||
my @replacementprices = $input->multi_param('itemreplacementprice_' . $import_record->import_record_id);
|
||||
my @itemcallnumbers = $input->multi_param('itemcallnumber_' . $import_record->import_record_id);
|
||||
my $itemcreation = 0;
|
||||
|
||||
|
|
|
@ -368,7 +368,7 @@
|
|||
</li>
|
||||
<li>
|
||||
<label for="replacementprice_item_[% item.item_id | html %]">replacement price</label>
|
||||
<input type="text" id="replacementprice_item_[% item.item_id | html %]" class="decimal" name="replacementprice_[% biblio.import_record_id | html %]" value="[% item.replacementprice | $Price on_editing => 1 %]">
|
||||
<input type="text" id="replacementprice_item_[% item.item_id | html %]" class="decimal" name="itemreplacementprice_[% biblio.import_record_id | html %]" value="[% item.replacementprice | $Price on_editing => 1 %]">
|
||||
</li>
|
||||
<li>
|
||||
<label for="callnumber_item_[% item.item_id | html %]">callnumber</label>
|
||||
|
|
Loading…
Reference in a new issue