Lines 3057-3065
sub UpdateTotalIssues {
Link Here
|
3057 |
return; |
3057 |
return; |
3058 |
} |
3058 |
} |
3059 |
|
3059 |
|
3060 |
my $record = $biblio->metadata->record; |
3060 |
my $record; |
3061 |
unless ($record) { |
3061 |
eval { $record = $biblio->metadata->record }; |
3062 |
carp "UpdateTotalIssues could not get biblio record"; |
3062 |
if ($@) { |
|
|
3063 |
my $exception = $@; |
3064 |
$exception->rethrow unless ( $exception->isa('Koha::Exceptions::Metadata::Invalid') ); |
3065 |
warn "UpdateTotalIssues could not get biblio record"; |
3063 |
return; |
3066 |
return; |
3064 |
} |
3067 |
} |
3065 |
my $biblioitem = $biblio->biblioitem; |
3068 |
my $biblioitem = $biblio->biblioitem; |
3066 |
- |
|
|