[Koha-bugs] [Bug 29230] Patron's messages not accessible from template notices

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Dec 2 14:45:36 CET 2021


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

PTFS Europe Sandboxes <sandboxes at ptfs-europe.com> changed:

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

--- Comment #8 from PTFS Europe Sandboxes <sandboxes at ptfs-europe.com> ---
Created attachment 128162
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=128162&action=edit
Bug 29230: Add Koha::Patron->messages

Add methods to return the messages attached to a patron.

It will add the capability to access them from notice templates.

Test plan:
Define some messages for a given patron
Go to the circulation page of the patron and confirm that they are still
displayed

Test the notice templates:
Add to HOLD_SLIP the following content
"""
[% SET messages = borrower.messages %]
[% IF messages.count %]
Messages:
<ul>
  [% FOR m IN messages.search( message_type => 'L' ) %]
    <li>[% m.message %]</li>
  [% END %]
</ul>
[% END %]
"""

To display all the messages from staff ('L')

Adapt following your needs.

Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

Signed-off-by: Stina Hallin <stina.hallin at ub.lu.se>

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


More information about the Koha-bugs mailing list