From 5c6ad3fdc1d93e5010b7e07e2f0f0e0dff0407bf Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Wed, 10 Jul 2013 22:56:13 +0200 Subject: [PATCH] Bug 10570: Show nonpublic note on check expiration page The check expiration page in serials only showed the OPAC note, but it makes sense to also show the nonpublic note here. This patch adds it. To test: - Add a subscription, make sure to enter different notes in nonpublic note and OPAC note to check for display later on. - Go to the check expiration page and search for your subscription. - Check both notes show up correctly. --- .../prog/en/modules/serials/checkexpiration.tt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt index a787000..95bfcb8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt @@ -13,7 +13,7 @@ return true; } else { - alert(_("You must enter a date !")); + alert(_("You must enter a date!")); document.f.date.focus(); return false; } @@ -78,7 +78,8 @@ ISSN Title - Note + OPAC note + Nonpublic note Expiration date   @@ -102,6 +103,9 @@ [% subscriptions_loo.notes %] + [% subscriptions_loo.internalnotes %] + + [% subscriptions_loo.expirationdate %] Edit -- 1.7.9.5