https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27817 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #12 from Owen Leonard <oleonard@myacpl.org> --- (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. -- You are receiving this mail because: You are watching all bug changes.