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

Andreas Jonsson <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Andreas Jonsson <[email protected]> ---
It looks like you can use the get_from_storage method:

  DB<14> x $item->checkout->unblessed;
0  HASH(0x5624163e5780)
   'auto_renew' => 0
   'auto_renew_error' => undef
   'borrowernumber' => 190
   'branchcode' => 'LA'
   'date_due' => '2024-06-13 23:59:00'
   'issue_id' => 208
   'issuedate' => '2024-06-13 15:38:17'
   'issuer_id' => undef
   'itemnumber' => 310173
   'lastreneweddate' => undef
   'note' => undef
   'notedate' => undef
   'noteseen' => undef
   'onsite_checkout' => 0
   'renewals_count' => 0
   'returndate' => undef
   'timestamp' => '2024-06-13 15:38:17'
   'unseen_renewals' => 0
  DB<15> x $item->checkout->get_from_storage->unblessed;
0  HASH(0x5624163e36c0)
   'auto_renew' => 0
   'auto_renew_error' => undef
   'borrowernumber' => 190
   'branchcode' => 'LA'
   'date_due' => '2024-06-13 23:59:00'
   'issue_id' => 208
   'issuedate' => '2024-06-13 15:38:17'
   'issuer_id' => undef
   'itemnumber' => 310173
   'lastreneweddate' => '2024-06-13 15:40:00'
   'note' => undef
   'notedate' => undef
   'noteseen' => undef
   'onsite_checkout' => 0
   'renewals_count' => 1
   'returndate' => undef
   'timestamp' => '2024-06-13 15:40:00'
   'unseen_renewals' => 0

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to