@@ -, +, @@ --- C4/Serials.pm | 10 +++++ .../prog/en/modules/serials/serials-home.tt | 36 ++++++++++++++----- 2 files changed, 36 insertions(+), 10 deletions(-) --- a/C4/Serials.pm +++ a/C4/Serials.pm @@ -612,6 +612,16 @@ sub GetSubscriptions { my $odd = 1; while ( my $line = $sth->fetchrow_hashref ) { + if ( $previousbiblio eq $line->{biblionumber} ) { + # Disabled for sorting and filtering on issn and title + # to work on serials-home.pl + #$line->{title} = ""; + #$line->{issn} = ""; + } else { + $previousbiblio = $line->{biblionumber}; + $odd = -$odd; + } + $line->{toggle} = 1 if $odd == 1; $line->{'cannotedit'} = ( C4::Context->preference('IndependantBranches') && C4::Context->userenv --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-home.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-home.tt @@ -1,18 +1,22 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › Serials [% biblionumber %] + [% INCLUDE 'doc-head-close.inc' %] - + +[% INCLUDE 'datatables-strings.inc' %] + @@ -85,9 +89,21 @@ Serials updated : [% IF ( routing ) %] Routing list [% END %] -   +   +   + + + + + + + + + + + [% FOREACH subscription IN subscriptions %] [% UNLESS ( loop.odd ) %] --