[Koha-bugs] [Bug 17698] Make patron notes show up on staff dashboard

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Feb 1 22:48:04 CET 2018


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

Aleisha Amohia <aleisha at catalyst.net.nz> changed:

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

--- Comment #31 from Aleisha Amohia <aleisha at catalyst.net.nz> ---
Created attachment 71126
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=71126&action=edit
Bug 17698: [FOLLOW-UP] Changing to Koha Objects style, adding circ sidebar

Marcel, can you please have a look at this patch. I tried to implement
the change
my @notes = $schema->resultset('Issue')->search({ 'me.note' => { '!=', undef }
}, { prefetch => [ 'borrower', { item => 'biblionumber' } ] });
to
my @notes = Koha::Checkouts->search({ 'me.note' => { '!=', undef } }, {
prefetch => [ 'borrower', { item => 'biblionumber' } ] });
but am having problems on the template side. I can access the item and
biblio information about the issue, but not the borrower information,
even though the query is definitely pulling it correctly. Any
suggestions or ideas as to why this breaks?

This patch also adds the implementation of the circSidebar.

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


More information about the Koha-bugs mailing list