Port the default notice text to Template Toolkit. Also, add access to item information in order to give more useful information about the checked-out item that the note refers to (in this case, the item barcode instead of the biblionumber) To test: 1. Apply patch and reset all 2. Enable the system preference AllowCheckoutNotes 3. Go to Administration > Libraries and edit the current logged-in library to ensure that there is a value in the Email field 4. Check out an item to a patron 5. Ensure the patron has values in the first name and surname fields 6. Log into the OPAC as that patron 7. Click to display the patron's current checkouts 8. Click the + button to the right of a checkout 9. Click the "Add Note" button beneath the table 10. Add some text and submit the note 11. Return to the staff interface and go to the Notices tab for the patron --> Confirm that there is a notice called "Checkout note" with all the correct information Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
109 lines
3.5 KiB
Perl
Executable file
109 lines
3.5 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2016 Aleisha Amohia <aleisha@catalyst.net.nz>
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use CGI qw ( -utf8 );
|
|
use C4::Koha;
|
|
use C4::Context;
|
|
use C4::Scrubber;
|
|
use C4::Output qw( output_html_with_http_headers );
|
|
use C4::Auth qw( get_template_and_user );
|
|
use C4::Letters;
|
|
use Koha::Checkouts;
|
|
use Koha::DateUtils qw( dt_from_string );
|
|
use Koha::Patrons;
|
|
|
|
my $query = CGI->new;
|
|
|
|
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => "opac-issue-note.tt",
|
|
query => $query,
|
|
type => "opac",
|
|
}
|
|
);
|
|
|
|
my $patron = Koha::Patrons->find($borrowernumber);
|
|
$template->param(
|
|
firstname => $patron->firstname,
|
|
surname => $patron->surname,
|
|
borrowernumber => $borrowernumber,
|
|
);
|
|
|
|
my $issue_id = $query->param('issue_id');
|
|
my $issue = $patron->checkouts->find($issue_id);
|
|
|
|
unless ($issue) {
|
|
|
|
# exit early
|
|
print $query->redirect("/cgi-bin/koha/opac-user.pl");
|
|
exit;
|
|
}
|
|
|
|
my $itemnumber = $issue->itemnumber;
|
|
my $biblio = $issue->item->biblio;
|
|
$template->param(
|
|
issue_id => $issue_id,
|
|
title => $biblio->title,
|
|
author => $biblio->author,
|
|
note => $issue->note,
|
|
itemnumber => $issue->itemnumber,
|
|
);
|
|
|
|
my $op = $query->param('op') || "";
|
|
if ( $op eq 'cud-issuenote' && C4::Context->preference('AllowCheckoutNotes') && $issue ) {
|
|
my $note = $query->param('note');
|
|
my $scrubber = C4::Scrubber->new();
|
|
my $clean_note = $scrubber->scrub($note);
|
|
|
|
if ( $issue->set( { notedate => dt_from_string(), note => $clean_note, noteseen => 0 } )->store ) {
|
|
if ($clean_note) { # only send email if note not empty
|
|
my $branch = Koha::Libraries->find( $issue->branchcode );
|
|
my $letter = C4::Letters::GetPreparedLetter(
|
|
module => 'circulation',
|
|
letter_code => 'CHECKOUT_NOTE',
|
|
branchcode => $branch,
|
|
lang => $patron->lang,
|
|
tables => {
|
|
'biblio' => $biblio->biblionumber,
|
|
'borrowers' => $borrowernumber,
|
|
'issues' => $issue->itemnumber,
|
|
'items' => $issue->itemnumber,
|
|
},
|
|
);
|
|
|
|
my $to_address = $branch->inbound_email_address;
|
|
my $reply_address = $patron->email || $patron->emailpro || $patron->B_email;
|
|
|
|
C4::Letters::EnqueueLetter(
|
|
{
|
|
letter => $letter,
|
|
message_transport_type => 'email',
|
|
borrowernumber => $patron->borrowernumber,
|
|
to_address => $to_address,
|
|
reply_address => $reply_address,
|
|
}
|
|
);
|
|
}
|
|
}
|
|
print $query->redirect("/cgi-bin/koha/opac-user.pl");
|
|
}
|
|
|
|
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
|