Browse Source

Bug 20867: Ability to show membership renewal date on moremember.pl page

Test case:
1. Create the patron.
2. Search the patron whose date of membership is about to expire or expired.
3. Click on More->Renew patron.
4. Now membership is renewed.
5. Apply the patch.
6. Reload the page now you will able to see the Membership renewal date.

Signed-off-by: Maryse Simard <maryse.simard@inlibro.com>
Followed the test plan and it works.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.11.x
Amit Gupta 6 years ago
committed by Nick Clemens
parent
commit
a8f864c590
  1. 4
      koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt

4
koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt

@ -301,7 +301,9 @@
<li><span class="label">Borrowernumber: </span> [% patron.borrowernumber %]</li>
<li><span class="label">Category: </span>[% patron.category.description %] ([% patron.categorycode %])</li>
<li><span class="label">Registration date: </span>[% patron.dateenrolled | $KohaDates %]</li>
[% IF ( patron.date_renewed ) %]
<li><span class="label">Renewal date: </span>[% patron.date_renewed | $KohaDates %]</li>
[% END %]
<li><span class="label">Expiration date: </span>
[% IF ( was_renewed ) %]
<strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong>

Loading…
Cancel
Save