3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
9 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
10 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License along
14 # with Koha; if not, write to the Free Software Foundation, Inc.,
15 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 use Text
::CSV
::Encoded
;
30 my $dbh = C4
::Context
->dbh;
32 my ($template, $borrowernumber, $cookie) = get_template_and_user
({
33 template_name
=> "reports/cash_register_stats.tt",
37 flagsrequired
=> {reports
=> '*'},
41 my $do_it = $input->param('do_it');
42 my $output = $input->param("output");
43 my $basename = $input->param("basename");
44 my $transaction_type = $input->param("transaction_type") || 'ACT';
45 my $manager_branchcode = $input->param("branch") || C4
::Context
->userenv->{'branch'};
49 CGIsepChoice
=> GetDelimiterChoices
,
52 #Initialize date pickers to today
53 my $fromDate = dt_from_string
;
54 my $toDate = dt_from_string
;
56 my $query_manualinv = "SELECT id, authorised_value FROM authorised_values WHERE category = 'MANUAL_INV'";
57 my $sth_manualinv = $dbh->prepare($query_manualinv) or die "Unable to prepare query" . $dbh->errstr;
58 $sth_manualinv->execute() or die "Unable to execute query " . $sth_manualinv->errstr;
59 my $manualinv_types = $sth_manualinv->fetchall_arrayref({});
64 $fromDate = output_pref
({ dt
=> eval { dt_from_string
($input->param("from")) } || dt_from_string
,
65 dateformat
=> 'sql', dateonly
=> 1 }); #for sql query
66 $toDate = output_pref
({ dt
=> eval { dt_from_string
($input->param("to")) } || dt_from_string
,
67 dateformat
=> 'sql', dateonly
=> 1 }); #for sql query
70 my @extra_params; # if we add conditions to the select we need extra params
72 if ($transaction_type eq 'ALL') { #All Transactons
74 } elsif ($transaction_type eq 'ACT') { #Active
75 $whereTType = q{ AND accounttype IN ('Pay','C') };
76 } else { #Single transac type
77 if ($transaction_type eq 'FORW') {
78 $whereTType = q{ AND accounttype IN ('FOR','W') };
80 $whereTType = q{ AND accounttype = ? };
81 push @extra_params, $transaction_type;
85 my $whereBranchCode = q{};
86 if ($manager_branchcode ne 'ALL') {
87 $whereBranchCode = q{ AND m.branchcode = ?};
88 push @extra_params, $manager_branchcode;
93 SELECT round(amount,2) AS amount, description,
94 bo.surname AS bsurname, bo.firstname AS bfirstname, m.surname AS msurname, m.firstname AS mfirstname,
95 bo.cardnumber, br.branchname, bo.borrowernumber,
96 al.borrowernumber, DATE(al.date) as date, al.accounttype, al.amountoutstanding, al.note,
97 bi.title, bi.biblionumber, i.barcode, i.itype
99 LEFT JOIN borrowers bo ON (al.borrowernumber = bo.borrowernumber)
100 LEFT JOIN borrowers m ON (al.manager_id = m.borrowernumber)
101 LEFT JOIN branches br ON (br.branchcode = m.branchcode )
102 LEFT JOIN items i ON (i.itemnumber = al.itemnumber)
103 LEFT JOIN biblio bi ON (bi.biblionumber = i.biblionumber)
104 WHERE CAST(al.date AS DATE) BETWEEN ? AND ?
109 my $sth_stats = $dbh->prepare($query) or die "Unable to prepare query " . $dbh->errstr;
110 $sth_stats->execute($fromDate, $toDate, @extra_params) or die "Unable to execute query " . $sth_stats->errstr;
114 while ( my $row = $sth_stats->fetchrow_hashref()) {
115 $row->{amountoutstanding
} = 0 if (!$row->{amountoutstanding
});
116 #if ((abs($row->{amount}) - $row->{amountoutstanding}) > 0) {
117 $row->{amount
} = sprintf("%.2f", abs ($row->{amount
}));
118 $row->{date
} = dt_from_string
($row->{date
}, 'sql');
120 push (@loopresult, $row);
121 if($transaction_type eq 'ACT' && ($row->{accounttype
} !~ /^C$|^CR$|^LR$|^Pay$/)){
125 if($row->{accounttype
} =~ /^C$|^CR$|^LR$/){
126 $grantotal -= abs($row->{amount
});
127 $row->{amount
} = '-' . $row->{amount
};
128 }elsif($row->{accounttype
} eq 'FORW' || $row->{accounttype
} eq 'W'){
130 $grantotal += abs($row->{amount
});
135 $grantotal = sprintf("%.2f", $grantotal);
137 if($output eq 'screen'){
139 loopresult
=> \
@loopresult,
144 my $reportname = $input->param('basename');
145 my $reportfilename = $reportname ?
"$reportname.$format" : "reportresults.$format" ;
146 my $delimiter = C4
::Context
->preference('delimiter') || ',';
148 foreach my $row (@loopresult) {
150 push @rowValues, $row->{mfirstname
}. ' ' . $row->{msurname
},
152 $row->{bfirstname
} . ' ' . $row->{bsurname
},
161 push (@rows, \
@rowValues) ;
164 for (1..6){push(@total,"")};
165 push(@total, $grantotal);
166 print $input->header(
168 -encoding
=> 'utf-8',
169 -attachment
=> $reportfilename,
170 -name
=> $reportfilename
172 my $csvTemplate = C4
::Templates
::gettemplate
('reports/csv/cash_register_stats.tt', 'intranet', $input);
173 $csvTemplate->param(sep
=> $delimiter, rows
=> \
@rows, total
=> \
@total );
174 print $csvTemplate->output;
181 beginDate
=> $fromDate,
183 transaction_type
=> $transaction_type,
184 branchloop
=> Koha
::Libraries
->search({}, { order_by
=> ['branchname'] })->unblessed,
185 manualinv_types
=> $manualinv_types,
186 CGIsepChoice
=> GetDelimiterChoices
,
189 output_html_with_http_headers
$input, $cookie, $template->output;