|
Lines 19-24
Link Here
|
| 19 |
# Suite 330, Boston, MA 02111-1307 USA |
19 |
# Suite 330, Boston, MA 02111-1307 USA |
| 20 |
|
20 |
|
| 21 |
use strict; |
21 |
use strict; |
|
|
22 |
use warnings; |
| 23 |
|
| 22 |
use C4::Context; |
24 |
use C4::Context; |
| 23 |
use C4::Output; |
25 |
use C4::Output; |
| 24 |
use CGI; |
26 |
use CGI; |
|
Lines 28-34
use C4::Debug;
Link Here
|
| 28 |
use Date::Calc qw/Today Add_Delta_YM/; |
30 |
use Date::Calc qw/Today Add_Delta_YM/; |
| 29 |
|
31 |
|
| 30 |
my $input = new CGI; |
32 |
my $input = new CGI; |
| 31 |
my $order = $input->param('order'); |
33 |
my $order = $input->param('order') || ''; |
| 32 |
my $startdate = $input->param('from'); |
34 |
my $startdate = $input->param('from'); |
| 33 |
my $enddate = $input->param('to'); |
35 |
my $enddate = $input->param('to'); |
| 34 |
my $ratio = $input->param('ratio'); |
36 |
my $ratio = $input->param('ratio'); |
| 35 |
- |
|
|