@@ -, +, @@ targes, the item price is not inferred from the MARC record when the NORMARC framework is set. --- C4/Biblio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Biblio.pm +++ a/C4/Biblio.pm @@ -1486,7 +1486,7 @@ sub GetMarcPrice { my @listtags; my $subfield; - if ( $marcflavour eq "MARC21" ) { + if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) { @listtags = ('345', '020'); $subfield="c"; } elsif ( $marcflavour eq "UNIMARC" ) { --