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