@@ -, +, @@ when handling Serial Items. Circ- and member-modules. -1. Find a Borrower/parent with a child/guarantee. -0. Make a Subscription (creating Items when receiving serial numbers) to a Biblio and receive atleast 4 numbers. the Item's title-column in their "Holds"-tab in circ/circulation.pl and members/moremember.pl the enumchrons on their relatives' loans. --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 8 ++++++++ koha-tmpl/intranet-tmpl/prog/en/js/holds.js | 4 ++++ svc/checkouts | 2 ++ svc/holds | 1 + 4 files changed, 15 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -218,6 +218,10 @@ $(document).ready(function() { title += " " + value.subfield; }); + if ( oObj.enumchron ) { + title += " "+oObj.enumchron+" "; + } + title += ""; if ( oObj.author ) { @@ -453,6 +457,10 @@ $(document).ready(function() { title += " " + value.subfield; }); + if ( oObj.enumchron ) { + title += " "+oObj.enumchron+" "; + } + title += ""; if ( oObj.author ) { --- a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js @@ -21,6 +21,10 @@ $(document).ready(function() { title += " " + value.subfield; }); + if ( oObj.enumchron ) { + title += " "+oObj.enumchron+" "; + } + title += ""; if ( oObj.author ) { --- a/svc/checkouts +++ a/svc/checkouts @@ -76,6 +76,7 @@ my $sql = ' barcode, itemnotes, itemcallnumber, + items.enumchron, replacementprice, issues.branchcode, @@ -153,6 +154,7 @@ while ( my $c = $sth->fetchrow_hashref() ) { branchcode => $c->{branchcode}, branchname => $c->{branchname}, itemcallnumber => $c->{itemcallnumber} || q{}, + enumchron => $c->{enumchron} || q{}, charge => $charge, price => $c->{replacementprice} || q{}, can_renew => $can_renew, --- a/svc/holds +++ a/svc/holds @@ -115,6 +115,7 @@ while ( my $h = $holds_rs->next() ) { $hold->{barcode} = $item->barcode(); $hold->{itemtype} = $item->effective_itemtype(); $hold->{itemcallnumber} = $item->itemcallnumber() || q{}; + $hold->{enumchron} = $item->enumchron() || q{}; my ( $transferred_when, $transferred_from, $transferred_to ) = GetTransfers( $item->itemnumber() ); --