https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27817 --- Comment #14 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- (In reply to Owen Leonard from comment #12)
(In reply to Barbara Johnson from comment #7)
On basket.pl ... is also incorrectly including series data from the 490|a and 490|v.
basket.pl and invoice.pl have code to deliberately add the series information to the title variable:
if ( $line{'title'} ) { my $volume = $order->{'volume'}; my $seriestitle = $order->{'seriestitle'}; $line{'title'} .= " / $seriestitle" if $seriestitle; $line{'title'} .= " / $volume" if $volume; }
parcel.pl appears to be showing 245$b correctly for me in the "Already received" table, which is the only place this patch changes anything. The display of title information in the "Pending orders" table is not affected.
Maybe we could move the series information display to a separate bug. I can see that the code doesn't affect it - neither adding nor removing. -- You are receiving this mail because: You are watching all bug changes.