Bug 13818 - Editing and saving a course reserve displays the add item form
If one chooses to edit an existing course reserve for an item, saving it should go back to the course details, but instead displays the "add items: scan barcode" form. Test Plan: 1) Edit a course reserve 2) Save it 3) Note you get the "add items: scan barcode" form 4) Apply this patch 5) Repeat steps 1 and 2 6) Note you are now redirected back to the course details page Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
cc01bfe8e8
commit
413a300299
3 changed files with 9 additions and 1 deletions
|
@ -35,6 +35,7 @@ my $cgi = new CGI;
|
|||
my $action = $cgi->param('action') || '';
|
||||
my $course_id = $cgi->param('course_id') || '';
|
||||
my $barcode = $cgi->param('barcode') || '';
|
||||
my $return = $cgi->param('return') || '';
|
||||
|
||||
my $item = GetBiblioFromItemNumber( undef, $barcode );
|
||||
|
||||
|
@ -73,6 +74,7 @@ if ( $action eq 'lookup' ) {
|
|||
locations => GetAuthorisedValues('LOC'),
|
||||
itypes => GetItemTypes( style => 'array' ),
|
||||
branches => GetBranchesLoop(),
|
||||
return => $return,
|
||||
);
|
||||
|
||||
} elsif ( $action eq 'add' ) {
|
||||
|
@ -90,6 +92,11 @@ if ( $action eq 'lookup' ) {
|
|||
staff_note => $cgi->param('staff_note'),
|
||||
public_note => $cgi->param('public_note'),
|
||||
);
|
||||
|
||||
if ( $return ) {
|
||||
print $cgi->redirect("/cgi-bin/koha/course_reserves/course-details.pl?course_id=$return");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
output_html_with_http_headers $cgi, $cookie, $template->output;
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
<form method="post" action="/cgi-bin/koha/course_reserves/add_items.pl">
|
||||
<input type="hidden" name="course_id" value="[% course.course_id %]" />
|
||||
<input type="hidden" name="return" value="[% return %]" />
|
||||
<input type="hidden" name="action" value="add" />
|
||||
|
||||
<fieldset class="rows">
|
||||
|
|
|
@ -155,7 +155,7 @@
|
|||
<td>[% cr.public_note %]</td>
|
||||
|
||||
[% IF CAN_user_coursereserves_add_reserves %]
|
||||
<td><a href="add_items.pl?course_id=[% course.course_id %]&barcode=[% cr.item.barcode %]&action=lookup">Edit</a></td>
|
||||
<td><a href="add_items.pl?course_id=[% course.course_id %]&barcode=[% cr.item.barcode %]&action=lookup&return=[% course.course_id %]">Edit</a></td>
|
||||
[% END %]
|
||||
|
||||
[% IF CAN_user_coursereserves_delete_reserves %]
|
||||
|
|
Loading…
Reference in a new issue