tweaks to update-child feature.
[koha.git] / opac / opac-review.pl
blob0a9124ac5a8fe496db4507a35e79e683e426e7a9
1 #!/usr/bin/perl
3 # Copyright 2006 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
20 use strict;
21 require Exporter;
22 use CGI;
23 use C4::Auth;
24 use C4::Koha;
25 use C4::Output;
26 use C4::Circulation;
27 use C4::Review;
28 use C4::Biblio;
30 my $query = new CGI;
31 my $biblionumber = $query->param('biblionumber');
32 my $type = $query->param('type');
33 my $review = $query->param('review');
34 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
36 template_name => "opac-review.tmpl",
37 query => $query,
38 type => "opac",
39 authnotrequired => 1,
43 my $biblio = GetBiblioData( $biblionumber);
45 my $savedreview = getreview( $biblionumber, $borrowernumber );
46 if ( $type eq 'save' ) {
47 savereview( $biblionumber, $borrowernumber, $review );
49 if ( $type eq 'update' ) {
50 updatereview( $biblionumber, $borrowernumber, $review );
52 if ($savedreview) {
53 $type = "update";
55 else {
56 $type = "save";
58 my $reviewdata = $savedreview->{'review'};
59 $template->param(
60 'biblionumber' => $biblionumber,
61 'borrowernumber' => $borrowernumber,
62 'type' => $type,
63 'review' => $reviewdata,
64 'title' => $biblio->{'title'},
67 # get the record
68 my $order = $query->param('order');
69 my $order2 = $order;
70 if ( $order2 eq '' ) {
71 $order2 = "date_due desc";
73 my $limit = $query->param('limit');
74 if ( $limit eq 'full' ) {
75 $limit = 0;
77 else {
78 $limit = 50;
81 output_html_with_http_headers $query, $cookie, $template->output;