From 8eca3497664ef6786a8c0d1dbc5f0c0dc0f933bf Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 17 Oct 2022 21:42:24 +0000 Subject: [PATCH] Bug 21381: Add serial enumeration to circulation/checkout history * Set readinghistory and intranetreadinghistory to Allow * Check out some items and return some. At least one item should have serial enumeration set to something * Go to OPAC > patron account > checkout history * Verify the Vol info shows the same as on the detail page. * Go to staff interface > patron account > circulation history * Verify the Vol info shows correctly there as well. Bug 21381: Add serial enumeration to circulation/checkout history https://bugs.koha-community.org/show_bug.cgi?id=31281 --- .../intranet-tmpl/prog/en/modules/members/readingrec.tt | 7 +++++++ .../opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt index d1df0e1e68..56d328e41a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt @@ -74,6 +74,7 @@ Title Author Call number + Vol info Barcode Number of renewals Checked out on @@ -110,6 +111,12 @@ [% issue.itemcallnumber | html %] [% END %] + + + [% IF issue.enumchron %] + [% issue.enumchron | html %] + [% END %] + [% issue.barcode | html %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt index 1e4f7d6f3e..dc003b3ed4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt @@ -101,6 +101,7 @@ Title Item type Call number + Vol info Date [% IF ( OPACMySummaryHTML ) %] Links @@ -167,6 +168,11 @@ Call number: [% issue.itemcallnumber | html %] + + [% IF issue.enumchron %] + [% issue.enumchron %] + [% END %] + [% IF issue.returndate %] Check-in date: -- 2.30.2