Bug 36131

Summary: checkout/patron notes not displayed after a checkin
Product: Koha Reporter: Jonathan Druart <jonathan.druart>
Component: CirculationAssignee: Bugs List <koha-bugs>
Status: NEW --- QA Contact: Testopia <testopia>
Severity: normal    
Priority: P5 - low CC: emmi.takkinen, gmcharlt, kyle.m.hall
Version: unspecified   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:
Bug Depends on: 28653    
Bug Blocks:    

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);
                        }