From 3d40a524a149b66afd54775f15ca9a3e0a032a9d 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 Signed-off-by: David Nind Signed-off-by: Martin Renvoize --- .../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..404893a509 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 @@ -111,6 +112,12 @@ [% END %] + + [% IF issue.enumchron %] + [% issue.enumchron | html %] + [% END %] + + [% issue.barcode | html %] [% issue.renewals_count | 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 acd409bce8..58d5a072cb 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.20.1