[Koha-bugs] [Bug 28844] Suggestion from existing title can alert patron in error

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Aug 19 13:27:41 CEST 2021


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

Jonathan Druart <jonathan.druart+koha at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nicolas.legrand at bulac.fr,
                   |                            |severine.queune at bulac.fr

--- Comment #1 from Jonathan Druart <jonathan.druart+koha at gmail.com> ---
Looks like we need an additional link between the 2 tables aqorders and
suggestions to achieve that.

That would make sense, especially when looking at such code:

         SELECT suggestions.*,
            U1.surname          AS surnamesuggestedby,
            U1.firstname        AS firstnamesuggestedby,
            U1.borrowernumber   AS borrnumsuggestedby
        FROM suggestions
            LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
        WHERE biblionumber=?
        LIMIT 1

in GetSuggestionInfoFromBiblionumber. It is wrong if there are several
suggestions on the same bib.

Hard to know it won't break existing workflows however.

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


More information about the Koha-bugs mailing list