Bug 34169: (follow-up) Fix ordering from staged files by removing superfluous form
Removes the unneded new form element as we have one big form for the whole page. This should fix the situation where only the prices and information of the first selected record carreid over into the order. Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
c943fddac6
commit
71377c5e7b
1 changed files with 190 additions and 192 deletions
|
@ -87,7 +87,7 @@
|
|||
Add orders from [% comments | html %]
|
||||
([% file_name | html %] staged on [% upload_timestamp | $KohaDates with_hours => 1 %])
|
||||
</h1>
|
||||
<form action="/cgi-bin/koha/acqui/addorderiso2709.pl" method="post" id="Aform">
|
||||
<form action="/cgi-bin/koha/acqui/addorderiso2709.pl" method="post" id="Aform" class="validated">
|
||||
[% WRAPPER tabs id= "tabs" %]
|
||||
[% WRAPPER tabs_nav %]
|
||||
[% WRAPPER tab_item tabname= "records_to_import" bt_active= 1 %] <span>Select to import</span> [% END %]
|
||||
|
@ -161,7 +161,6 @@
|
|||
<a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% biblio.import_record_id | uri %]" class="previewData btn btn-default btn-xs">Card</a>
|
||||
<a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid | uri %]&basketno=[% basketno | uri %]&breedingid=[% biblio.import_record_id | uri %]&import_batch_id=[% biblio.import_batch_id | uri %]&biblionumber=[% biblio.match_biblionumber | uri %]" class="btn btn-default btn-xs">Add order</a>
|
||||
</span>
|
||||
<form action="/cgi-bin/koha/acqui/addorderiso2709.pl" class="validated">
|
||||
<fieldset class="rows order_details">
|
||||
<ol>
|
||||
<li class="status">
|
||||
|
@ -365,7 +364,6 @@
|
|||
</div> <!-- /.item_edit_form -->
|
||||
[% END %]
|
||||
</fieldset> <!-- /.rows.order_details -->
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
[% END # /FOREACH biblio %]
|
||||
|
|
Loading…
Reference in a new issue