[Koha-bugs] [Bug 29679] Reports result menu shows too many dividers

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Dec 13 13:27:35 CET 2021


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29679

--- Comment #4 from Owen Leonard <oleonard at myacpl.org> ---
Created attachment 128456
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=128456&action=edit
Bug 29679: Remove redundant divider element from reports menu

The SQL report batch operations dropdown menu has divider list items
which add a border between sections (Bibliographic records, item
records, etc.). This element is redundant because the sections have
"headers" which also add a border.

This patch removes them.

To test, apply the patch and run an SQL report which will return results
that trigger the batch modification menu:

SELECT biblio.biblionumber , biblio.title, items.itemnumber,
items.itemcallnumber, items.barcode, borrowers.firstname,
borrowers.surname, borrowers.borrowernumber, borrowers.cardnumber
FROM issues
LEFT JOIN borrowers ON borrowers.borrowernumber=issues.borrowernumber
LEFT JOIN items ON issues.itemnumber=items.itemnumber
LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
ORDER BY RAND()

There should be no double border in the menu.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list