|
Lines 40-46
my $suppliername = $input->param('suppliername');
Link Here
|
| 40 |
my $order = $input->param('order'); |
40 |
my $order = $input->param('order'); |
| 41 |
|
41 |
|
| 42 |
# open template first (security & userenv set here) |
42 |
# open template first (security & userenv set here) |
| 43 |
my ($template, $loggedinuser, $cookie) |
43 |
my ($template, $loggedinuser, $cookie, $flags) |
| 44 |
= get_template_and_user({template_name => 'serials/claims.tmpl', |
44 |
= get_template_and_user({template_name => 'serials/claims.tmpl', |
| 45 |
query => $input, |
45 |
query => $input, |
| 46 |
type => 'intranet', |
46 |
type => 'intranet', |
|
Lines 72-77
if ($supplierid) {
Link Here
|
| 72 |
@supplierinfo=GetBookSeller($supplierid); |
72 |
@supplierinfo=GetBookSeller($supplierid); |
| 73 |
} |
73 |
} |
| 74 |
|
74 |
|
|
|
75 |
foreach my $issue ( @missingissues ) { |
| 76 |
$issue->{cannot_claim} = 1 unless C4::Serials::can_edit_subscription( $subscription ); |
| 77 |
} |
| 78 |
|
| 75 |
my $branchloop = GetBranchesLoop(); |
79 |
my $branchloop = GetBranchesLoop(); |
| 76 |
|
80 |
|
| 77 |
my $preview=0; |
81 |
my $preview=0; |
| 78 |
- |
|
|