3 # Copyright 2016 PTFS-Europe Ltd
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 3 of the License, or (at your option) any later
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 Script to handle housebound management for patrons. This single script
23 handles display, creation, deletion and management of profiles and visits.
31 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
37 use Koha
::Patron
::Categories
;
38 use Koha
::Patron
::HouseboundProfile
;
39 use Koha
::Patron
::HouseboundVisit
;
40 use Koha
::Patron
::HouseboundVisits
;
44 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
46 template_name
=> 'members/housebound.tt',
50 flagsrequired
=> { borrowers
=> 'edit_borrowers' },
54 my @messages; # For error messages.
55 my $method = $input->param('method') // q{};
56 my $visit_id = $input->param('visit_id') // q{};
59 my $borrowernumber = $input->param('borrowernumber');
60 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser ) or die "Not logged in";
61 my $patron = Koha
::Patrons
->find($borrowernumber);
62 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
65 my ( $houseboundprofile, $visit );
66 if ( $patron ) { # FIXME This test is not needed - output_and_exit_if_error handles it
67 $houseboundprofile = $patron->housebound_profile;
71 return Koha
::Patron
::HouseboundVisits
->find($visit_id);
73 push @messages, { type
=> 'error', code
=> 'error_on_visit_load' }
78 my ( $deliverers, $choosers, $houseboundvisit );
80 if ( $method eq 'updateconfirm' and $houseboundprofile ) {
81 # We have received the input from the profile edit form. We must save the
82 # changes, and return to simple display.
83 $houseboundprofile->set({
84 day
=> scalar $input->param('day') // q{},
85 frequency
=> scalar $input->param('frequency') // q{},
86 fav_itemtypes
=> scalar $input->param('fav_itemtypes') // q{},
87 fav_subjects
=> scalar $input->param('fav_subjects') // q{},
88 fav_authors
=> scalar $input->param('fav_authors') // q{},
89 referral
=> scalar $input->param('referral') // q{},
90 notes
=> scalar $input->param('notes') // q{},
92 my $success = eval { return $houseboundprofile->store };
93 push @messages, { type
=> 'error', code
=> 'error_on_profile_store' }
94 if ( $@
or !$success );
96 } elsif ( $method eq 'createconfirm' ) {
97 # We have received the input necessary to create a new profile. We must
98 # save it, and return to simple display.
99 $houseboundprofile = Koha
::Patron
::HouseboundProfile
->new({
100 borrowernumber
=> $patron->borrowernumber,
101 day
=> scalar $input->param('day') // q{},
102 frequency
=> scalar $input->param('frequency') // q{},
103 fav_itemtypes
=> scalar $input->param('fav_itemtypes') // q{},
104 fav_subjects
=> scalar $input->param('fav_subjects') // q{},
105 fav_authors
=> scalar $input->param('fav_authors') // q{},
106 referral
=> scalar $input->param('referral') // q{},
107 notes
=> scalar $input->param('notes') // q{},
109 my $success = eval { return $houseboundprofile->store };
110 push @messages, { type
=> 'error', code
=> 'error_on_profile_create' }
111 if ( $@
or !$success );
113 } elsif ( $method eq 'visit_update_or_create' ) {
114 # We want to edit, edit a visit, so we must pass its details.
115 $deliverers = Koha
::Patrons
->search_housebound_deliverers;
116 $choosers = Koha
::Patrons
->search_housebound_choosers;
117 $houseboundvisit = $visit;
118 } elsif ( $method eq 'visit_delete' and $visit ) {
119 # We want ot delete a specific visit.
120 my $success = eval { return $visit->delete };
121 push @messages, { type
=> 'error', code
=> 'error_on_visit_delete' }
122 if ( $@
or !$success );
124 } elsif ( $method eq 'editvisitconfirm' and $visit ) {
125 # We have received input for editing a visit. We must store and return to
128 borrowernumber
=> scalar $input->param('borrowernumber') // q{},
129 appointment_date
=> dt_from_string
($input->param('date') // q{}),
130 day_segment
=> scalar $input->param('segment') // q{},
131 chooser_brwnumber
=> scalar $input->param('chooser') // q{},
132 deliverer_brwnumber
=> scalar $input->param('deliverer') // q{},
134 my $success = eval { return $visit->store };
135 push @messages, { type
=> 'error', code
=> 'error_on_visit_store' }
136 if ( $@
or !$success );
138 } elsif ( $method eq 'addvisitconfirm' and !$visit ) {
139 # We have received input for creating a visit. We must store and return
141 my $visit = Koha
::Patron
::HouseboundVisit
->new({
142 borrowernumber
=> scalar $input->param('borrowernumber') // q{},
143 appointment_date
=> dt_from_string
($input->param('date') // q{}),
144 day_segment
=> scalar $input->param('segment') // q{},
145 chooser_brwnumber
=> scalar $input->param('chooser') // q{},
146 deliverer_brwnumber
=> scalar $input->param('deliverer') // q{},
148 my $success = eval { return $visit->store };
149 push @messages, { type
=> 'error', code
=> 'error_on_visit_create' }
150 if ( $@
or !$success );
154 # We don't have any profile information, so we must display a creation form.
155 $method = 'update_or_create' if ( !$houseboundprofile );
157 # Ensure template has all patron details.
158 $template->param( patron
=> $patron );
160 # Load extended patron attributes if necessary (taken from members/files.pl).
161 if ( C4
::Context
->preference('ExtendedPatronAttributes') and $patron ) {
162 my $attributes = GetBorrowerAttributes
($patron->borrowernumber);
164 ExtendedPatronAttributes
=> 1,
165 extendedattributes
=> $attributes
170 housebound_profile
=> $houseboundprofile,
171 visit
=> $houseboundvisit,
172 messages
=> \
@messages,
174 choosers
=> $choosers,
175 deliverers
=> $deliverers,
176 houseboundview
=> 'on',
179 output_html_with_http_headers
$input, $cookie, $template->output;
183 Alex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com>