Bug 32434: Show "Lists" line on lists results
authorDavid Cook <dcook@prosentient.com.au>
Fri, 9 Dec 2022 03:28:12 +0000 (03:28 +0000)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 30 Jan 2023 18:09:03 +0000 (15:09 -0300)
This patch adds a "Lists:" line on the lists results so that the
output matches the search result output.

This allows users to know which records belong to which lists.

Test plan:
0. Apply patch and koha-plack --restart kohadev
1. Go to http://localhost:8080/cgi-bin/koha/opac-search.pl?idx=&q=test
2. Add all 3 results to a new list called "Test"
3. Note that "Lists:" appears in the search results
4. Click on "Test" in the "Lists:" line
5. Note that it takes you to the list "Test" and that "Lists:"
still appears in the results

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt
opac/opac-shelves.pl

index 93a35b7..058ea4a 100644 (file)
 
                                                         [% itemsloo.XSLTBloc | $raw %]
 
+
+                                                        [% IF itemsloo.shelves.count %]
+                                                            <div class="results_summary shelves">
+                                                                <span class="label">Lists:</span>
+                                                                <ul>
+                                                                    [% FOREACH item_shelf IN itemsloo.shelves %]
+                                                                        <li>
+                                                                            <a href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% item_shelf.shelfnumber | uri %]">[% item_shelf.shelfname | html %]</a>
+                                                                            [%~ UNLESS loop.last %], [% ELSE %].[% END ~%]
+                                                                        </li>
+                                                                    [% END %]
+                                                                </ul>
+                                                            </div>
+                                                        [% END %]
+
                                                         [% IF ( TagsShowEnabled && itemsloo.TagLoop.size ) %]
                                                             <div class="results_summary tags">
                                                                 <span class="label">Tags:</span>
index e228b3d..a7be90b 100755 (executable)
@@ -426,6 +426,13 @@ if ( $op eq 'view' ) {
 
                 $this_item->{biblio_object} = $biblio;
                 $this_item->{biblionumber}  = $biblionumber;
+                $this_item->{shelves} =
+                  Koha::Virtualshelves->get_shelves_containing_record(
+                    {
+                        biblionumber   => $biblionumber,
+                        borrowernumber => $loggedinuser,
+                    }
+                  );
                 push @items_info, $this_item;
             }