[Koha-bugs] [Bug 33504] ILS-DI does not record renewer_id for renewals

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Apr 25 13:00:59 CEST 2023


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

Magnus Enger <magnus at libriotech.no> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #149524|0                           |1
        is obsolete|                            |

--- Comment #5 from Magnus Enger <magnus at libriotech.no> ---
Created attachment 150184
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=150184&action=edit
Bug 33504: Update patron_to_html to deal with null

In the patron_to_html function we were dealing explicitly with the case
where patron may be passed undefined, but forgetting that it may be
returned as 'null' from the api too.  Changing from `( patron ===
undefined )` to `( patron == null )` is the recommended approach for
detecting 'undefined or null' in javascript.

Signed-off-by: Magnus Enger <magnus at libriotech.no>
Works as advertised. Martin's test plan from Bugzilla:

To test.
1) Use ILS-DI to renew an checkout
2) View the circulation history for the item
3) Click the 'View' button next to the count of renewals
4) Note that the modal just stalls at 'Retrieving renewals'
5) Apply the patch
6) Now the 'retrieving renewals' message should list the renewals instead.

Note that step 2 should be something like "Go to the "Circulation
history" of the patron.

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

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


More information about the Koha-bugs mailing list