Lines 92-98
sub process {
Link Here
|
92 |
C4::MarcModificationTemplates::ModifyRecordWithTemplate( $mmtid, $record ); |
92 |
C4::MarcModificationTemplates::ModifyRecordWithTemplate( $mmtid, $record ); |
93 |
my $frameworkcode = C4::Biblio::GetFrameworkCode( $biblionumber ); |
93 |
my $frameworkcode = C4::Biblio::GetFrameworkCode( $biblionumber ); |
94 |
C4::Biblio::ModBiblio( $record, $biblionumber, $frameworkcode, { |
94 |
C4::Biblio::ModBiblio( $record, $biblionumber, $frameworkcode, { |
95 |
overlay_context => $args->{context}, |
95 |
overlay_context => $args->{overlay_context}, |
96 |
}); |
96 |
}); |
97 |
}; |
97 |
}; |
98 |
if ( $error and $error != 1 or $@ ) { # ModBiblio returns 1 if everything as gone well |
98 |
if ( $error and $error != 1 or $@ ) { # ModBiblio returns 1 if everything as gone well |
99 |
- |
|
|