https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39997 Bug ID: 39997 Summary: List of closed serials: reopening requires the syspref "RoutingSerials" Change sponsored?: --- Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Serials Assignee: koha-bugs@lists.koha-community.org Reporter: baptiste.wojtkowski@biblibre.com QA Contact: testopia@bugs.koha-community.org On the list of closed serials, the action "reopen" is not displayed unless you have the syspref "RoutingSerials" active.
From koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt
139 [% IF ( routing && CAN_user_serials_routing ) %] 140 [% UNLESS ( subscription.cannotedit ) %] 141 142 <a 143 class="dropdown-item" 144 href="/cgi-bin/koha/serials/serials-search.pl?subscriptionid=[% subscription.subscriptionid | uri %]& ;op=reopen&routing=[% subscription.routing | uri %]&searched=1&title_filter=[% title_filter | uri %]&ISSN_filter=[% ISSN_filter | uri %]&EAN_fil ter=[% EAN_filter | uri %]&published_filter=[% publisher_filter | uri %]&bookseller_filter=[% bookseller_filter | uri %]&branch_filter=[% branch_filter | uri %]" 145 id="reopensub" 146 > 147 <i class="fa-solid fa-arrow-rotate-right"> Reopen</a 148 > 149 150 [% END %] 151 [% END # IF ( routing && CAN_user_serials_routing ) %] I have no clue why there is a restriction on routing and CAN_user_serials_routing. It breaks the ability to reopen serial from the list of closed serials if routing is not activated. To reproduce: 1 - Create a closed serial 2 - Disable the syspref "RoutingSerials" 3 - Go to cgi-bin/koha/serials/serials-search.pl and search for the closed serial ; click on the "closed" panel of the result -> on the actions button, there is no option to reopen 4 - Apply patch 5 - Repeat 3, there is now an option to reopen. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.