Bug 36131 - checkout/patron notes not displayed after a checkin
Summary: checkout/patron notes not displayed after a checkin
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Circulation (show other bugs)
Version: unspecified
Hardware: All All
: P5 - low normal
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on: 28653
Blocks:
  Show dependency treegraph
 
Reported: 2024-02-19 15:26 UTC by Jonathan Druart
Modified: 2024-02-20 07:25 UTC (History)
3 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Druart 2024-02-19 15:26:20 UTC
At checkin time there is code to display the note a patron let on the checkout.

But since bug 28653 the table is refreshed after all checkouts are checked in and the note never appears.

What could be a correct behaviour?

I am refering to the following code in checkouts.js 

                        if ( data.patronnote != null ) {
                            $('.patron_note_' + data.itemnumber).html( __("Patron note") + ": " + data.patronnote);
                        }