Merge remote-tracking branch 'origin/new/bug_5347'
[koha.git] / circ / branchoverdues.pl
1 #!/usr/bin/perl
2
3 #
4 # This file is part of Koha.
5 #
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
10 #
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA  02111-1307 USA
18
19 use strict;
20 #use warnings; FIXME - Bug 2505
21 use C4::Context;
22 use CGI;
23 use C4::Output;
24 use C4::Auth;
25 use C4::Overdues;    # AddNotifyLine
26 use C4::Biblio;
27 use C4::Koha;
28 use C4::Debug;
29 use C4::Branch;
30 use Data::Dumper;
31
32 =head1 branchoverdues.pl
33
34  this module is a new interface, allow to the librarian to check all items on overdues (based on the acountlines type 'FU' )
35  this interface is filtered by branches (automatically), and by location (optional) ....
36  all informations are stocked in the notifys BDD
37
38  FIXME for this time, we have only four methods to notify :
39         - mail : work with a batch programm
40         - letter : for us, the letters are generated by an open-office program
41         - phone : Simple method, when the method 'phone' is selected, we consider, that the borrower as been notified, and the notify send date is implemented
42         - considered lost : for us if the document is on the third overduelevel,
43
44  FIXME the methods are actually hardcoded for the levels : (maybe can be improved by a new possibility in overduerule)
45
46         level 1 : three methods are possible : - mail, letter, phone
47         level 2 : only one method is possible : - letter
48         level 3 : only methode is possible  : - Considered Lost
49
50         the documents displayed on this interface, are checked on three points
51         - 1) the document must be on accountlines (Type 'FU')
52         - 2) item issues is not returned
53         - 3) this item as not been already notify
54
55   FIXME: who is the author?
56   FIXME: No privisions (i.e. "actions") for handling notices are implemented.
57   FIXME: This is linked as "Overdue Fines" but the relationship to fines in GetOverduesForBranch is more complicated than that.
58
59 =cut
60
61 my $input       = new CGI;
62 my $dbh = C4::Context->dbh;
63
64 my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
65         template_name   => "circ/branchoverdues.tmpl",
66         query           => $input,
67         type            => "intranet",
68         authnotrequired => 0,
69         flagsrequired   => { circulate => "circulate_remaining_permissions" },
70         debug           => 1,
71 });
72
73 my $default = C4::Context->userenv->{'branch'};
74
75 # Deal with the vars recept from the template
76 my $borrowernumber = $input->param('borrowernumber');
77 my $itemnumber     = $input->param('itemnumber');
78 my $method         = $input->param('method');
79 my $overduelevel   = $input->param('overduelevel');
80 my $notifyId       = $input->param('notifyId');
81 my $location       = $input->param('location');
82
83 # FIXME: better check that borrowernumber is defined and valid.
84 # FIXME: same for itemnumber and other variables passed in here.
85
86 # now create the line in bdd (notifys)
87 if ( $input->param('action') eq 'add' ) {
88     my $addnotify =
89       AddNotifyLine( $borrowernumber, $itemnumber, $overduelevel, $method,
90         $notifyId )    # FIXME: useless variable, no TMPL code for "action" exists.;
91 }
92 elsif ( $input->param('action') eq 'remove' ) {
93     my $notify_date  = $input->param('notify_date');
94     my $removenotify =
95       RemoveNotifyLine( $borrowernumber, $itemnumber, $notify_date );    # FIXME: useless variable, no TMPL code for "action" exists.
96 }
97
98 my @overduesloop;
99 my @getoverdues = GetOverduesForBranch( $default, $location );
100 $debug and warn "HERE : $default / $location" . Dumper(@getoverdues);
101 # search for location authorised value
102 my ($tag,$subfield) = GetMarcFromKohaField('items.location','');
103 my $tagslib = &GetMarcStructure(1,'');
104 if ($tagslib->{$tag}->{$subfield}->{authorised_value}) {
105     my $values= GetAuthorisedValues($tagslib->{$tag}->{$subfield}->{authorised_value});
106     for (@$values) { $_->{selected} = 1 if $location eq $_->{authorised_value} }
107     $template->param(locationsloop => $values);
108 }
109 # now display infos
110 foreach my $num (@getoverdues) {
111     my %overdueforbranch;
112     my $record = GetMarcBiblio($num->{biblionumber});
113     if ($record){
114         $overdueforbranch{'subtitle'} = GetRecordValue('subtitle',$record,'')->[0]->{subfield};
115     }
116     my $dt = dt_from_string($num->{date_due}, 'sql');
117     $overdueforbranch{'date_due'}          = output_pref($dt);
118     $overdueforbranch{'title'}             = $num->{'title'};
119     $overdueforbranch{'description'}       = $num->{'description'};
120     $overdueforbranch{'barcode'}           = $num->{'barcode'};
121     $overdueforbranch{'biblionumber'}      = $num->{'biblionumber'};
122     $overdueforbranch{'author'}            = $num->{'author'};
123     $overdueforbranch{'borrowersurname'}   = $num->{'surname'};
124     $overdueforbranch{'borrowerfirstname'} = $num->{'firstname'};
125     $overdueforbranch{'borrowerphone'}     = $num->{'phone'};
126     $overdueforbranch{'borroweremail'}     = $num->{'email'};
127     $overdueforbranch{'homebranch'}        = GetBranchName($num->{'homebranch'});
128     $overdueforbranch{'itemcallnumber'}    = $num->{'itemcallnumber'};
129     $overdueforbranch{'borrowernumber'}    = $num->{'borrowernumber'};
130     $overdueforbranch{'itemnumber'}        = $num->{'itemnumber'};
131
132     # now we add on the template, the differents values of notify_level
133     # FIXME: numerical comparison, not string eq.
134     if ( $num->{'notify_level'} eq '1' ) {
135         $overdueforbranch{'overdue1'}     = 1;
136         $overdueforbranch{'overdueLevel'} = 1;
137     }
138     elsif ( $num->{'notify_level'} eq '2' ) {
139         $overdueforbranch{'overdue2'}     = 1;
140         $overdueforbranch{'overdueLevel'} = 2;
141     }
142     elsif ( $num->{'notify_level'} eq '3' ) {
143         $overdueforbranch{'overdue3'}     = 1;
144         $overdueforbranch{'overdueLevel'} = 3;
145     }
146     $overdueforbranch{'notify_id'} = $num->{'notify_id'};
147
148     push( @overduesloop, \%overdueforbranch );
149 }
150
151 # initiate the templates for the overdueloop
152 $template->param(
153     overduesloop => \@overduesloop,
154     location     => $location,
155 );
156
157 output_html_with_http_headers $input, $cookie, $template->output;