Lines 60-66
my $rodsp = $input->param("ReturnDisplay");
Link Here
|
60 |
my $calc = $input->param("Cellvalue"); |
60 |
my $calc = $input->param("Cellvalue"); |
61 |
my $output = $input->param("output"); |
61 |
my $output = $input->param("output"); |
62 |
my $basename = $input->param("basename"); |
62 |
my $basename = $input->param("basename"); |
63 |
my $itype = C4::Context->preference('item-level_itypes') ? "items.itype" : "biblioitems.itemtype"; |
|
|
64 |
|
63 |
|
65 |
#warn "calcul : ".$calc; |
64 |
#warn "calcul : ".$calc; |
66 |
my ($template, $borrowernumber, $cookie) |
65 |
my ($template, $borrowernumber, $cookie) |
Lines 177-182
sub calculate {
Link Here
|
177 |
my @looprow; |
176 |
my @looprow; |
178 |
my %globalline; |
177 |
my %globalline; |
179 |
my $grantotal =0; |
178 |
my $grantotal =0; |
|
|
179 |
my $itype = C4::Context->preference('item-level_itypes') ? "items.itype" : "biblioitems.itemtype"; |
180 |
# extract parameters |
180 |
# extract parameters |
181 |
my $dbh = C4::Context->dbh; |
181 |
my $dbh = C4::Context->dbh; |
182 |
|
182 |
|
183 |
- |
|
|