Bugzilla – Attachment 180059 Details for
Bug 39395
sco login form not correctly placed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39395: Fix #wrapper closing tag in sco
Bug-39395-Fix-wrapper-closing-tag-in-sco.patch (text/plain), 90.82 KB, created by
Lucas Gass (lukeg)
on 2025-03-31 14:34:31 UTC
(
hide
)
Description:
Bug 39395: Fix #wrapper closing tag in sco
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2025-03-31 14:34:31 UTC
Size:
90.82 KB
patch
obsolete
>From 1b9f870463a2ec35093e908b3bff155f04585051 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 20 Mar 2025 13:48:03 +0100 >Subject: [PATCH] Bug 39395: Fix #wrapper closing tag in sco > >The module was displayed at the bottom of the screen. >It's caused by the closing tag of #wrapper that has been added by bug >38664 inside the include file. > >It is wrong, the div.main should be within #wrapper. > >The correct fix is to move #wrapper out of the include file, so that the >HTML structure is correct (and the prettier plugin is happy) in the .tt >files > >Test plan: >Confirm the bug >Apply this patch >Go to the SCO module and confirm that the module is correctly placed at >the top of the screen > >Please review this patch using `git show -w HEAD` > >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> >--- > .../bootstrap/en/includes/masthead-sco.inc | 66 +- > .../bootstrap/en/modules/sco/help.tt | 56 +- > .../bootstrap/en/modules/sco/sco-main.tt | 1166 +++++++++-------- > 3 files changed, 645 insertions(+), 643 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc >index 1902e20db3f..9faafaa507a 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc >@@ -5,42 +5,40 @@ > [% SET OpacLangSelectorMode = Koha.Preference('OpacLangSelectorMode') %] > [% SET OpacHeader = AdditionalContents.get( location => "opacheader", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] > >-<div id="wrapper"> >- <div id="header-region" class="noprint"> >- <nav class="navbar navbar-expand"> >- <h1 id="logo"> >- <a class="navbar-brand" href="/cgi-bin/koha/sco/sco-main.pl"> >- [% IF ( LibraryNameTitle ) %] >- [% LibraryNameTitle | html %] >- [% ELSE %] >- Koha online >- [% END %] >- </a> >- </h1> >+<div id="header-region" class="noprint"> >+ <nav class="navbar navbar-expand"> >+ <h1 id="logo"> >+ <a class="navbar-brand" href="/cgi-bin/koha/sco/sco-main.pl"> >+ [% IF ( LibraryNameTitle ) %] >+ [% LibraryNameTitle | html %] >+ [% ELSE %] >+ Koha online >+ [% END %] >+ </a> >+ </h1> > >- <ul class="navbar-nav ml-auto"> >- [% IF ( Koha.Preference( 'opaclanguagesdisplay' ) ) %] >- <li class="nav-item"> [% INCLUDE 'langmenu.inc' %] </li> >- [% END # / IF opaclanguagedisplay %] >+ <ul class="navbar-nav ml-auto"> >+ [% IF ( Koha.Preference( 'opaclanguagesdisplay' ) ) %] >+ <li class="nav-item"> [% INCLUDE 'langmenu.inc' %] </li> >+ [% END # / IF opaclanguagedisplay %] > >- <li class="nav-item"> >- <ul class="navbar-nav"> >- <li class="nav-item"> >- <a class="nav-link" href="/cgi-bin/koha/sco/help.pl"><i class="fa fa-info-circle fa-icon-black" aria-hidden="true"></i> Help</a> >- </li> >- </ul> >- </li> >- </ul> >- </nav> >- <!-- /navbar --> >+ <li class="nav-item"> >+ <ul class="navbar-nav"> >+ <li class="nav-item"> >+ <a class="nav-link" href="/cgi-bin/koha/sco/help.pl"><i class="fa fa-info-circle fa-icon-black" aria-hidden="true"></i> Help</a> >+ </li> >+ </ul> >+ </li> >+ </ul> >+ </nav> >+ <!-- /navbar --> > >- [% IF ( OpacHeader ) %] >- <div class="container-fluid"> >- <div class="row"> >- <div class="col"> [% PROCESS koha_news_block news => OpacHeader %] </div> >- </div> >+ [% IF ( OpacHeader ) %] >+ <div class="container-fluid"> >+ <div class="row"> >+ <div class="col"> [% PROCESS koha_news_block news => OpacHeader %] </div> > </div> >- [% END # /IF opacheader %] >- </div> >- <!-- /navbar --> >+ </div> >+ [% END # /IF opacheader %] > </div> >+<!-- /navbar --> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt >index b421b1f40a1..918f78442bd 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt >@@ -45,48 +45,50 @@ > [% Asset.js('js/i18n.js') | $raw %] > </head> > <body id="sco_help" class="sco"> >-[% INCLUDE 'masthead-sco.inc' %] >+<div id="wrapper"> >+ [% INCLUDE 'masthead-sco.inc' %] > >-<div class="main"> >- <div class="container-fluid"> >- <div class="row"> >- <div class="col order-first order-md-first order-lg-2"> >- <h1>Self checkout help</h1> >+ <div class="main"> >+ <div class="container-fluid"> >+ <div class="row"> >+ <div class="col order-first order-md-first order-lg-2"> >+ <h1>Self checkout help</h1> > >- [% IF ( SelfCheckHelpMessage ) %] >- <div id="selfcheckhelpmessage"> [% PROCESS koha_news_block news => SelfCheckHelpMessage %] </div> >- [% END %] >+ [% IF ( SelfCheckHelpMessage ) %] >+ <div id="selfcheckhelpmessage"> [% PROCESS koha_news_block news => SelfCheckHelpMessage %] </div> >+ [% END %] > >- <div id="selfcheckdefaulthelpmessage"> >- <p>If this is your first time using the self checkout system, or if the system is not behaving as expected, you may want to refer to this guide to get yourself started.</p> >+ <div id="selfcheckdefaulthelpmessage"> >+ <p>If this is your first time using the self checkout system, or if the system is not behaving as expected, you may want to refer to this guide to get yourself started.</p> > >- <h2>Step one: Enter your user ID[% IF ( SelfCheckoutByLogin ) %]and password[% END %]</h2> >+ <h2>Step one: Enter your user ID[% IF ( SelfCheckoutByLogin ) %]and password[% END %]</h2> > >- <p>Enter your user ID[% IF ( SelfCheckoutByLogin ) %]and password[% END %], and click the submit button (or press the enter key).</p> >+ <p>Enter your user ID[% IF ( SelfCheckoutByLogin ) %]and password[% END %], and click the submit button (or press the enter key).</p> > >- <h2>Step two: Scan the barcode for each item, one at a time</h2> >+ <h2>Step two: Scan the barcode for each item, one at a time</h2> > >- <p >- >Scan each item and wait for the page to reload before scanning the next item. The checked-out item should appear in your checkouts list. The submit button only needs to be clicked if you enter the barcode >- manually.</p >- > >+ <p >+ >Scan each item and wait for the page to reload before scanning the next item. The checked-out item should appear in your checkouts list. The submit button only needs to be clicked if you enter the barcode >+ manually.</p >+ > > >- <h2>Step three: Click the 'Finish' button</h2> >+ <h2>Step three: Click the 'Finish' button</h2> > >- <p>If you do not click the 'Finish' button, your session will automatically expire in [% SelfCheckTimeout | html %] seconds.</p> >- </div> >+ <p>If you do not click the 'Finish' button, your session will automatically expire in [% SelfCheckTimeout | html %] seconds.</p> >+ </div> > >- <div class="button"> >- <a href="javascript:history.go(-1)">Return to the self-checkout</a> >+ <div class="button"> >+ <a href="javascript:history.go(-1)">Return to the self-checkout</a> >+ </div> > </div> >+ <!-- / .col --> > </div> >- <!-- / .col --> >+ <!-- / .row --> > </div> >- <!-- / .row --> >+ <!-- / .container-fluid --> > </div> >- <!-- / .container-fluid --> >+ <!-- / .main --> > </div> >-<!-- / .main --> > > [% INCLUDE 'opac-bottom.inc' %] > [% BLOCK jsinclude %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >index 15f863e1228..52530b7e18a 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >@@ -57,237 +57,314 @@ > [% Asset.js('js/i18n.js') | $raw %] > </head> > <body id="sco_main" class="sco"> >-[% INCLUDE 'masthead-sco.inc' %] >+<div id="wrapper"> >+ [% INCLUDE 'masthead-sco.inc' %] > >-<div class="main"> >- [% IF ( display_patron_image ) %] >- [% SET main_div_class = 'col-10 order-first order-md-first order-lg-2' %] >- [% ELSE %] >- [% SET main_div_class = 'col order-first order-md-first order-lg-2' %] >- [% END %] >- >- [% UNLESS ( hide_main ) %] >- [% IF ( validuser ) %] >- <div class="container-fluid"> >- <div class="row"> >- <div class="[% main_div_class | html %]"> >- <div id="masthead"><h1>[% LibraryName | html %] Self checkout system</h1></div> >- >- [% PROCESS display_errors %] >- >- <div class="alert alert-info">You are logged in as [% borrowername | html %].</div> >- [% INCLUDE 'opac-note.inc' sco="true" %] >- [% IF patron_has_hold_fee %] >- <div class="alert alert-warning">A hold fee was charged to your account for collecting this item.</div> >- [% END %] >+ <div class="main"> >+ [% IF ( display_patron_image ) %] >+ [% SET main_div_class = 'col-10 order-first order-md-first order-lg-2' %] >+ [% ELSE %] >+ [% SET main_div_class = 'col order-first order-md-first order-lg-2' %] >+ [% END %] > >- <div id="newcheckout" class="sco_entry"> >- <form id="scan_form" name="scan_form" method="post" action="/cgi-bin/koha/sco/sco-main.pl"> >- [% INCLUDE 'csrf-token.inc' %] >- <legend >- ><h2> >- [% IF ( Koha.Preference('SCOAllowCheckin') ) %] >- <span>Check out, return, or renew an item:</span> >- [% ELSE %] >- <span>Check out or renew an item:</span> >- [% END %] >- </h2></legend >- > >- <div class="row"> >- <div class="col"> >- <label for="barcode">Scan a new item or enter its barcode[% IF batch_checkouts_allowed %](or for <b>multiple checkouts only,</b> enter a barcode list, one barcode per line)[% END %]:</label> >- </div> >- <div class="col-3"> >- [% IF batch_checkouts_allowed %] >- <textarea id="barcode" name="barcode" rows="10" cols="30" class="focus form-control"></textarea> >- [% ELSE %] >- <input id="barcode" name="barcode" size="20" type="text" class="focus form-control" autocomplete="off" /> >- [% END %] >- </div> >- <div class="col-auto"> >- <button type="submit" class="btn btn-primary">Submit</button> >- </div> >- <div class="col ml-auto"> >- <button type="button" id="logout_form" class="btn btn-info"><i class="fa fa-check" aria-hidden="true"></i> Finish</button> >- <input type="hidden" name="op" value="cud-checkout" /> >- <input type="hidden" name="patronid" value="[% patronid | html %]" /> >- <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >- <input type="hidden" name="newissues" value="[% newissues | html %]" /> >+ [% UNLESS ( hide_main ) %] >+ [% IF ( validuser ) %] >+ <div class="container-fluid"> >+ <div class="row"> >+ <div class="[% main_div_class | html %]"> >+ <div id="masthead"><h1>[% LibraryName | html %] Self checkout system</h1></div> >+ >+ [% PROCESS display_errors %] >+ >+ <div class="alert alert-info">You are logged in as [% borrowername | html %].</div> >+ [% INCLUDE 'opac-note.inc' sco="true" %] >+ [% IF patron_has_hold_fee %] >+ <div class="alert alert-warning">A hold fee was charged to your account for collecting this item.</div> >+ [% END %] >+ >+ <div id="newcheckout" class="sco_entry"> >+ <form id="scan_form" name="scan_form" method="post" action="/cgi-bin/koha/sco/sco-main.pl"> >+ [% INCLUDE 'csrf-token.inc' %] >+ <legend >+ ><h2> >+ [% IF ( Koha.Preference('SCOAllowCheckin') ) %] >+ <span>Check out, return, or renew an item:</span> >+ [% ELSE %] >+ <span>Check out or renew an item:</span> >+ [% END %] >+ </h2></legend >+ > >+ <div class="row"> >+ <div class="col"> >+ <label for="barcode">Scan a new item or enter its barcode[% IF batch_checkouts_allowed %](or for <b>multiple checkouts only,</b> enter a barcode list, one barcode per line)[% END %]:</label> >+ </div> >+ <div class="col-3"> >+ [% IF batch_checkouts_allowed %] >+ <textarea id="barcode" name="barcode" rows="10" cols="30" class="focus form-control"></textarea> >+ [% ELSE %] >+ <input id="barcode" name="barcode" size="20" type="text" class="focus form-control" autocomplete="off" /> >+ [% END %] >+ </div> >+ <div class="col-auto"> >+ <button type="submit" class="btn btn-primary">Submit</button> >+ </div> >+ <div class="col ml-auto"> >+ <button type="button" id="logout_form" class="btn btn-info"><i class="fa fa-check" aria-hidden="true"></i> Finish</button> >+ <input type="hidden" name="op" value="cud-checkout" /> >+ <input type="hidden" name="patronid" value="[% patronid | html %]" /> >+ <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >+ <input type="hidden" name="newissues" value="[% newissues | html %]" /> >+ </div> > </div> >- </div> >- <!-- /.row --> >- </form> >- <!-- /#scan_form --> >+ <!-- /.row --> >+ </form> >+ <!-- /#scan_form --> >+ </div> >+ <!-- / #newcheckout --> > </div> >- <!-- / #newcheckout --> >+ <!-- / .span12/12 --> >+ [% IF ( display_patron_image ) %] >+ <div class="col-lg-2"> >+ <img src="/cgi-bin/koha/sco/sco-patron-image.pl" alt="" /> >+ </div> >+ [% END %] > </div> >- <!-- / .span12/12 --> >- [% IF ( display_patron_image ) %] >- <div class="col-lg-2"> >- <img src="/cgi-bin/koha/sco/sco-patron-image.pl" alt="" /> >- </div> >- [% END %] >+ <!-- / .row --> > </div> >- <!-- / .row --> >- </div> >- <!-- / .container-fluid --> >- >- <div class="container-fluid"> >- <div class="row"> >- <div class="col order-first order-md-first order-lg-2"> >- [% WRAPPER tabs %] >- [% WRAPPER tabs_nav %] >- [% WRAPPER tab_item tabname= "checkouts" bt_active= 1 %] >- <span>Checkouts ([% issues_count | html %])</span> >- [% END %] >- [% WRAPPER tab_item tabname= "holds" %] >- [% IF waiting_holds_count %] >- <i class="fa fa-exclamation-circle" aria-hidden="true"></i> >+ <!-- / .container-fluid --> >+ >+ <div class="container-fluid"> >+ <div class="row"> >+ <div class="col order-first order-md-first order-lg-2"> >+ [% WRAPPER tabs %] >+ [% WRAPPER tabs_nav %] >+ [% WRAPPER tab_item tabname= "checkouts" bt_active= 1 %] >+ <span>Checkouts ([% issues_count | html %])</span> > [% END %] >- <span>Holds</span> ([% HOLDS.count | html %]) >- [% END %] >- [% WRAPPER tab_item tabname= "account" %] >- <span>Charges ([% total | $Price %])</span> >- [% END %] >- [% END # /WRAPPER tabs_nav %] >- >- [% WRAPPER tab_panels %] >- [% WRAPPER tab_panel tabname="checkouts" bt_active= 1 %] >- <div id="checkouts-tab" class="tab-pane show active" aria-labelledby="checkouts"> >- <div id="borrowerdetails"> >- [% IF ( new_issue ) %] >- <div class="lastchecked"> >- <p> >- <strong>Checked out: </strong> >- [% new_issue.item.biblio.title | html %] ([% new_issue.item.barcode | html %]). >- [% IF new_issue.item.is_bundle %] >- [% SET bundle_items_count = new_issue.item.bundle_items.count %] >- [% tnx('Bundle of {count} item', 'Bundle of {count} items', bundle_items_count, { count = bundle_items_count }) | html %]. >- [% END %] >- Due on [% new_issue.date_due | $KohaDates as_due_date => 1 %] >- </p> >- </div> >- [% END %] >- [% IF ( issues_count ) %] >- [% IF ( Koha.Preference('SCOLoadCheckoutsByDefault') || load_checkouts ) %] >- <table id="loanTable" class="table table-bordered table-striped"> >- <caption>Checkouts for [% borrowername | html %] <span class="count">([% issues_count | html %] total)</span></caption> >- <!-- ISSUES TABLE ROWS --> >- <thead> >- <tr> >- <th class="noshow">Checked out on</th> >- <th class="all anti-the">Title</th> >- <th>Call number</th> >- <th class="psort">Due</th> >- <th class="all nosort">Renew</th> >- [% UNLESS ( nofines ) %] >- <th>Fines</th> >- [% END %] >- <th></th> >- </tr> >- </thead> >- <tbody> >- [% FOREACH ISSUE IN ISSUES %] >+ [% WRAPPER tab_item tabname= "holds" %] >+ [% IF waiting_holds_count %] >+ <i class="fa fa-exclamation-circle" aria-hidden="true"></i> >+ [% END %] >+ <span>Holds</span> ([% HOLDS.count | html %]) >+ [% END %] >+ [% WRAPPER tab_item tabname= "account" %] >+ <span>Charges ([% total | $Price %])</span> >+ [% END %] >+ [% END # /WRAPPER tabs_nav %] >+ >+ [% WRAPPER tab_panels %] >+ [% WRAPPER tab_panel tabname="checkouts" bt_active= 1 %] >+ <div id="checkouts-tab" class="tab-pane show active" aria-labelledby="checkouts"> >+ <div id="borrowerdetails"> >+ [% IF ( new_issue ) %] >+ <div class="lastchecked"> >+ <p> >+ <strong>Checked out: </strong> >+ [% new_issue.item.biblio.title | html %] ([% new_issue.item.barcode | html %]). >+ [% IF new_issue.item.is_bundle %] >+ [% SET bundle_items_count = new_issue.item.bundle_items.count %] >+ [% tnx('Bundle of {count} item', 'Bundle of {count} items', bundle_items_count, { count = bundle_items_count }) | html %]. >+ [% END %] >+ Due on [% new_issue.date_due | $KohaDates as_due_date => 1 %] >+ </p> >+ </div> >+ [% END %] >+ [% IF ( issues_count ) %] >+ [% IF ( Koha.Preference('SCOLoadCheckoutsByDefault') || load_checkouts ) %] >+ <table id="loanTable" class="table table-bordered table-striped"> >+ <caption>Checkouts for [% borrowername | html %] <span class="count">([% issues_count | html %] total)</span></caption> >+ <!-- ISSUES TABLE ROWS --> >+ <thead> > <tr> >- <td>[% ISSUE.issuedate | html %]</td> >- <td> >- [% UNLESS ( noitemlinks ) %] >- <a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE. biblionumber | uri %]">[% ISSUE.title | html %]</a> >- [% ELSE %] >- <strong>[% ISSUE.title | html %]</strong> >- [% END %] >- [% IF ( newissues.match(ISSUE.barcode)) %] >- <span class="badge text-bg-info">NEW</span> >- [% END %] >- <span class="item-details">[% ISSUE.author | html %]</span> >- ([% ISSUE.barcode | html %]) >- </td> >- <td>[% ISSUE.itemcallnumber | html %]</td> >- [% IF ( ISSUE.overdue ) %] >- <td class="overdue" data-order="[% ISSUE.date_due | html %]"> [% ISSUE.date_due | $KohaDates as_due_date => 1 %] </td> >- [% ELSE %] >- <td data-order="[% ISSUE.date_due | html %]"> [% ISSUE.date_due | $KohaDates as_due_date => 1 %] </td> >+ <th class="noshow">Checked out on</th> >+ <th class="all anti-the">Title</th> >+ <th>Call number</th> >+ <th class="psort">Due</th> >+ <th class="all nosort">Renew</th> >+ [% UNLESS ( nofines ) %] >+ <th>Fines</th> > [% END %] >- <td> >- <form action="/cgi-bin/koha/sco/sco-main.pl" method="post"> >- [% INCLUDE 'csrf-token.inc' %] >- <legend class="sr-only">Issue renews</legend> >- <input type="hidden" name="patronid" value="[% patronid | html %]" /> >- <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >- <input type="hidden" name="barcode" value="[% ISSUE.barcode | html %]" /> >- <input type="hidden" name="newissues" value="[% newissues | html %]" /> >- [% IF ISSUE.can_be_renewed %] >- <input type="hidden" name="op" value="cud-renew" /> >- <input type="hidden" name="confirmed" value="1" /> >- [% UNLESS ( ISSUE.renew ) %] >- <input type="submit" value="Renew item" name="confirm " class="btn btn-primary btn-sm renew" /> >- [% ELSE %] >- <input type="submit" value="Renew item" class="btn btn-primary btn-sm renew" /> >- [% END %] >+ <th></th> >+ </tr> >+ </thead> >+ <tbody> >+ [% FOREACH ISSUE IN ISSUES %] >+ <tr> >+ <td>[% ISSUE.issuedate | html %]</td> >+ <td> >+ [% UNLESS ( noitemlinks ) %] >+ <a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE. biblionumber | uri %]">[% ISSUE.title | html %]</a> > [% ELSE %] >- [% IF ISSUE.renew_error == 'onsite_checkout' %] >- <span>This is a on-site checkout, it cannot be renewed.</span> >- [% ELSIF ISSUE.renew_error == 'too_unseen' %] >- <span>You have renewed this item the maximum number of consecutive times without it being seen by the library.</span> >- [% ELSIF ISSUE.renew_error == 'too_soon' %] >- <span>This item cannot yet be renewed.</span> >+ <strong>[% ISSUE.title | html %]</strong> >+ [% END %] >+ [% IF ( newissues.match(ISSUE.barcode)) %] >+ <span class="badge text-bg-info">NEW</span> >+ [% END %] >+ <span class="item-details">[% ISSUE.author | html %]</span> >+ ([% ISSUE.barcode | html %]) >+ </td> >+ <td>[% ISSUE.itemcallnumber | html %]</td> >+ [% IF ( ISSUE.overdue ) %] >+ <td class="overdue" data-order="[% ISSUE.date_due | html %]"> [% ISSUE.date_due | $KohaDates as_due_date => 1 %] </td> >+ [% ELSE %] >+ <td data-order="[% ISSUE.date_due | html %]"> [% ISSUE.date_due | $KohaDates as_due_date => 1 %] </td> >+ [% END %] >+ <td> >+ <form action="/cgi-bin/koha/sco/sco-main.pl" method="post"> >+ [% INCLUDE 'csrf-token.inc' %] >+ <legend class="sr-only">Issue renews</legend> >+ <input type="hidden" name="patronid" value="[% patronid | html %]" /> >+ <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >+ <input type="hidden" name="barcode" value="[% ISSUE.barcode | html %]" /> >+ <input type="hidden" name="newissues" value="[% newissues | html %]" /> >+ [% IF ISSUE.can_be_renewed %] >+ <input type="hidden" name="op" value="cud-renew" /> >+ <input type="hidden" name="confirmed" value="1" /> >+ [% UNLESS ( ISSUE.renew ) %] >+ <input type="submit" value="Renew item" name="confirm " class="btn btn-primary btn-sm renew" /> >+ [% ELSE %] >+ <input type="submit" value="Renew item" class="btn btn-primary btn-sm renew" /> >+ [% END %] > [% ELSE %] >- <span>No renewals allowed</span> >+ [% IF ISSUE.renew_error == 'onsite_checkout' %] >+ <span>This is a on-site checkout, it cannot be renewed.</span> >+ [% ELSIF ISSUE.renew_error == 'too_unseen' %] >+ <span>You have renewed this item the maximum number of consecutive times without it being seen by the library.</span> >+ [% ELSIF ISSUE.renew_error == 'too_soon' %] >+ <span>This item cannot yet be renewed.</span> >+ [% ELSE %] >+ <span>No renewals allowed</span> >+ [% END %] >+ [% IF Koha.Preference('SCOAllowCheckin') %] >+ <div> >+ <input type="submit" value="Check in item" name="confirm" class="btn btn-info btn-sm return" /> >+ <input type="hidden" name="op" value="cud-returnbook" /> >+ <input type="hidden" name="confirmed" value="" /> >+ </div> >+ [% END %] > [% END %] >- [% IF Koha.Preference('SCOAllowCheckin') %] >- <div> >- <input type="submit" value="Check in item" name="confirm" class="btn btn-info btn-sm return" /> >- <input type="hidden" name="op" value="cud-returnbook" /> >- <input type="hidden" name="confirmed" value="" /> >- </div> >+ [% IF ISSUE.auto_renew %] >+ <br /><span>This item is scheduled for automatic renewal</span> > [% END %] >- [% END %] >- [% IF ISSUE.auto_renew %] >- <br /><span>This item is scheduled for automatic renewal</span> >- [% END %] >- </form> >- </td> >- [% UNLESS ( nofines ) %] >- <td> [% IF ( ISSUE.charges ) %]Yes[% ELSE %]No[% END %] </td> >- [% END %] >- <td></td> >- </tr> >- [% END # / FOREACH ISSUE %] >- </tbody> >- </table> >+ </form> >+ </td> >+ [% UNLESS ( nofines ) %] >+ <td> [% IF ( ISSUE.charges ) %]Yes[% ELSE %]No[% END %] </td> >+ [% END %] >+ <td></td> >+ </tr> >+ [% END # / FOREACH ISSUE %] >+ </tbody> >+ </table> >+ [% ELSE %] >+ <a class="btn btn-secondary" href="?load_checkouts=1#scan_form"><i class="fa fa-book" aria-hidden="true"></i> Show your checkouts</a> >+ [% END # / IF ( Koha.preference('SCOLoadCheckoutsByDefault') || load_checkouts ) %] > [% ELSE %] >- <a class="btn btn-secondary" href="?load_checkouts=1#scan_form"><i class="fa fa-book" aria-hidden="true"></i> Show your checkouts</a> >- [% END # / IF ( Koha.preference('SCOLoadCheckoutsByDefault') || load_checkouts ) %] >- [% ELSE %] >- <h3>You currently have nothing checked out.</h3> >- [% END # / IF issues_count %] >+ <h3>You currently have nothing checked out.</h3> >+ [% END # / IF issues_count %] >+ </div> >+ <!-- / #borrowerdetails --> > </div> >- <!-- / #borrowerdetails --> >- </div> >- [% END # /tab_panel %] >- [% WRAPPER tab_panel tabname="holds" %] >- [% IF HOLDS.count > 0 %] >- [% PROCESS 'holds-table.inc' HOLDS = HOLDS, SuspendHoldsOpac = SuspendHoldsOpac, showpriority = showpriority, AutoResumeSuspendedHolds = AutoResumeSuspendedHolds, onlyinfo = 'true' %] >- [% ELSE %] >- <h3>You currently have no pending holds.</h3> >- [% END %] >- [% END # /tab_panel %] >- [% WRAPPER tab_panel tabname="account" %] >- [% PROCESS 'account-table.inc' %] >- [% END # /tab_panel %] >- [% END # /WRAPPER tab_panels %] >- [% END # /WRAPPER tabs %] >- >- [% IF ( SCOMainUserBlock ) %] >- <div id="scomainuserblock"> [% PROCESS koha_news_block news => SCOMainUserBlock %] </div> >- [% END %] >+ [% END # /tab_panel %] >+ [% WRAPPER tab_panel tabname="holds" %] >+ [% IF HOLDS.count > 0 %] >+ [% PROCESS 'holds-table.inc' HOLDS = HOLDS, SuspendHoldsOpac = SuspendHoldsOpac, showpriority = showpriority, AutoResumeSuspendedHolds = AutoResumeSuspendedHolds, onlyinfo = 'true' %] >+ [% ELSE %] >+ <h3>You currently have no pending holds.</h3> >+ [% END %] >+ [% END # /tab_panel %] >+ [% WRAPPER tab_panel tabname="account" %] >+ [% PROCESS 'account-table.inc' %] >+ [% END # /tab_panel %] >+ [% END # /WRAPPER tab_panels %] >+ [% END # /WRAPPER tabs %] >+ >+ [% IF ( SCOMainUserBlock ) %] >+ <div id="scomainuserblock"> [% PROCESS koha_news_block news => SCOMainUserBlock %] </div> >+ [% END %] >+ </div> >+ <!-- / .span12 --> > </div> >- <!-- / .span12 --> >+ <!-- / .row --> > </div> >- <!-- / .row --> >- </div> >- <!-- / .container-fluid --> >- [% ELSE # IF validuser %] >+ <!-- / .container-fluid --> >+ [% ELSE # IF validuser %] >+ <div class="container-fluid"> >+ <div class="row"> >+ <div class="[% main_div_class | html %]"> >+ <div id="masthead"><h1>[% LibraryName | html %] Self checkout system</h1></div> >+ >+ [% PROCESS display_errors %] >+ >+ [% IF patronid && nouser %] >+ <div class="alert alert-warning"> >+ <h3>Sorry</h3> >+ <p>The userid <strong>[% patronid | html %]</strong> was not found in the database. Please try again.</p> >+ </div> >+ [% END %] >+ >+ <div class="sco_entry"> >+ <form id="mainform" action="/cgi-bin/koha/sco/sco-main.pl" name="mainform" method="post"> >+ [% INCLUDE 'csrf-token.inc' %] >+ <fieldset> >+ <legend>Log in to your account</legend> >+ <div class="row"> >+ <div class="col-md-6"> >+ [% IF ( Koha.Preference('SelfCheckoutByLogin') ) %] >+ <div class="row"> >+ <div class="col-md-12"> [% PROCESS login_label for="patronlogin" %] </div> >+ <div class="col-md-12"> >+ <input type="text" id="patronlogin" class="form-control focus noEnterSubmit" size="20" name="patronlogin" autocomplete="off" /> >+ </div> >+ <div class="col-md-12"> >+ <label for="patronpw">Password:</label> >+ </div> >+ <div class="col-md-12"> >+ <input type="password" id="patronpw" class="form-control" size="20" name="patronpw" autocomplete="off" /> >+ </div> >+ <div class="col-md-12"> >+ <button type="submit" class="btn btn-primary">Log in</button> >+ </div> >+ </div> >+ <!-- /.row --> >+ [% ELSE %] >+ <div class="row"> >+ <div class="col-md-12"> >+ <label for="patronid">Please enter your card number:</label> >+ </div> >+ <div class="col-md-12"> >+ <input type="text" id="patronid" class="form-control focus" size="20" name="patronid" autocomplete="off" /> >+ </div> >+ <div class="col-md-12"> >+ <button type="submit" class="btn btn-primary">Submit</button> >+ </div> >+ </div> >+ <!-- /.row --> >+ [% END %] >+ </div> >+ <!-- /.col-md-6 --> >+ </div> >+ <!-- /.row --> >+ [% FOREACH INPUT IN INPUTS %] >+ <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" /> >+ [% END %] >+ <input type="hidden" name="op" value="cud-login" /> >+ </fieldset> >+ </form> >+ <!-- /#mainform --> >+ </div> >+ <!-- / .sco_entry --> >+ [% IF ( SCOMainUserBlock ) %] >+ <div id="scomainuserblock"> [% PROCESS koha_news_block news => SCOMainUserBlock %] </div> >+ [% END %] >+ </div> >+ <!-- / .span12 --> >+ </div> >+ <!-- / .row --> >+ </div> >+ <!-- / .container-fluid --> >+ [% END # / IF validuser %] >+ [% ELSE # / UNLESS ( hide_main %] > <div class="container-fluid"> > <div class="row"> > <div class="[% main_div_class | html %]"> >@@ -295,64 +372,6 @@ > > [% PROCESS display_errors %] > >- [% IF patronid && nouser %] >- <div class="alert alert-warning"> >- <h3>Sorry</h3> >- <p>The userid <strong>[% patronid | html %]</strong> was not found in the database. Please try again.</p> >- </div> >- [% END %] >- >- <div class="sco_entry"> >- <form id="mainform" action="/cgi-bin/koha/sco/sco-main.pl" name="mainform" method="post"> >- [% INCLUDE 'csrf-token.inc' %] >- <fieldset> >- <legend>Log in to your account</legend> >- <div class="row"> >- <div class="col-md-6"> >- [% IF ( Koha.Preference('SelfCheckoutByLogin') ) %] >- <div class="row"> >- <div class="col-md-12"> [% PROCESS login_label for="patronlogin" %] </div> >- <div class="col-md-12"> >- <input type="text" id="patronlogin" class="form-control focus noEnterSubmit" size="20" name="patronlogin" autocomplete="off" /> >- </div> >- <div class="col-md-12"> >- <label for="patronpw">Password:</label> >- </div> >- <div class="col-md-12"> >- <input type="password" id="patronpw" class="form-control" size="20" name="patronpw" autocomplete="off" /> >- </div> >- <div class="col-md-12"> >- <button type="submit" class="btn btn-primary">Log in</button> >- </div> >- </div> >- <!-- /.row --> >- [% ELSE %] >- <div class="row"> >- <div class="col-md-12"> >- <label for="patronid">Please enter your card number:</label> >- </div> >- <div class="col-md-12"> >- <input type="text" id="patronid" class="form-control focus" size="20" name="patronid" autocomplete="off" /> >- </div> >- <div class="col-md-12"> >- <button type="submit" class="btn btn-primary">Submit</button> >- </div> >- </div> >- <!-- /.row --> >- [% END %] >- </div> >- <!-- /.col-md-6 --> >- </div> >- <!-- /.row --> >- [% FOREACH INPUT IN INPUTS %] >- <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" /> >- [% END %] >- <input type="hidden" name="op" value="cud-login" /> >- </fieldset> >- </form> >- <!-- /#mainform --> >- </div> >- <!-- / .sco_entry --> > [% IF ( SCOMainUserBlock ) %] > <div id="scomainuserblock"> [% PROCESS koha_news_block news => SCOMainUserBlock %] </div> > [% END %] >@@ -362,355 +381,338 @@ > <!-- / .row --> > </div> > <!-- / .container-fluid --> >- [% END # / IF validuser %] >- [% ELSE # / UNLESS ( hide_main %] >- <div class="container-fluid"> >- <div class="row"> >- <div class="[% main_div_class | html %]"> >- <div id="masthead"><h1>[% LibraryName | html %] Self checkout system</h1></div> >- >- [% PROCESS display_errors %] >+ [% END # / UNLESS ( hide_main %] >+ </div> >+ <!-- / .main --> >+ <span id="audio-alert"></span> >+ >+ [% INCLUDE 'opac-bottom.inc' %] >+ [% BLOCK jsinclude %] >+ [% INCLUDE 'datatables.inc' %] >+ <script> >+ function mungeHistory() { >+ // prevent back button from allowing form resubmission >+ if (history && history.pushState) { >+ history.replaceState(null, document.title, window.location.href); >+ } >+ } >+ var mainTimeout; >+ function sco_init() { >+ mainTimeout = setTimeout(function() { >+ location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >+ }, [% SelfCheckTimeout | html %]); >+ } >+ function dofocus() { // named function req'd for body onload event by some FF and IE7 security models >+ // alert("dofocus called"); >+ $(".focus:last").select(); >+ } >+ var slip_re = /slip/; >+ function printx_window(print_type) { >+ var handler = print_type.match(slip_re) ? "printslip" : "moremember"; > >- [% IF ( SCOMainUserBlock ) %] >- <div id="scomainuserblock"> [% PROCESS koha_news_block news => SCOMainUserBlock %] </div> >- [% END %] >- </div> >- <!-- / .span12 --> >- </div> >- <!-- / .row --> >- </div> >- <!-- / .container-fluid --> >- [% END # / UNLESS ( hide_main %] >-</div> >-<!-- / .main --> >-<span id="audio-alert"></span> >- >-[% INCLUDE 'opac-bottom.inc' %] >-[% BLOCK jsinclude %] >- [% INCLUDE 'datatables.inc' %] >- <script> >- function mungeHistory() { >- // prevent back button from allowing form resubmission >- if (history && history.pushState) { >- history.replaceState(null, document.title, window.location.href); >+ return false; > } >- } >- var mainTimeout; >- function sco_init() { >- mainTimeout = setTimeout(function() { >- location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >- }, [% SelfCheckTimeout | html %]); >- } >- function dofocus() { // named function req'd for body onload event by some FF and IE7 security models >- // alert("dofocus called"); >- $(".focus:last").select(); >- } >- var slip_re = /slip/; >- function printx_window(print_type) { >- var handler = print_type.match(slip_re) ? "printslip" : "moremember"; >- >- return false; >- } >- function checkout_confirm(patronid) { >- var barcode = $("#barcode").val(); >- // alert("checkout_confirm('" + patronid + "') called for barcode '" + barcode + "'"); >- if (! barcode) { dofocus(); return false; } // no barcode >- if (barcode == "__KOHA_NEW_CIRC__") { // magic barcode >- window.location.href='/cgi-bin/koha/sco/sco-main.pl?op=logout'; >- return false; >+ function checkout_confirm(patronid) { >+ var barcode = $("#barcode").val(); >+ // alert("checkout_confirm('" + patronid + "') called for barcode '" + barcode + "'"); >+ if (! barcode) { dofocus(); return false; } // no barcode >+ if (barcode == "__KOHA_NEW_CIRC__") { // magic barcode >+ window.location.href='/cgi-bin/koha/sco/sco-main.pl?op=logout'; >+ return false; >+ } >+ return true; > } >- return true; >- } >- [% IF Koha.Preference('AudioAlerts') %] >- var AUDIO_ALERTS = JSON.parse( "[% To.json(AudioAlerts.AudioAlerts) | $raw %]" ); >- $( document ).ready(function() { >- if ( AUDIO_ALERTS ) { >- for ( var k in AUDIO_ALERTS ) { >- var alert = AUDIO_ALERTS[k]; >- if ( $( alert.selector ).length ) { >- playSound( alert.sound ); >- break; >+ [% IF Koha.Preference('AudioAlerts') %] >+ var AUDIO_ALERTS = JSON.parse( "[% To.json(AudioAlerts.AudioAlerts) | $raw %]" ); >+ $( document ).ready(function() { >+ if ( AUDIO_ALERTS ) { >+ for ( var k in AUDIO_ALERTS ) { >+ var alert = AUDIO_ALERTS[k]; >+ if ( $( alert.selector ).length ) { >+ playSound( alert.sound ); >+ break; >+ } > } > } >+ }); >+ function playSound( sound ) { >+ if (!(sound.indexOf("http://") === 0 || sound.indexOf("https://") === 0)) { >+ sound = '[% interface | html %]' + '/bootstrap/sound/' + sound; >+ document.getElementById("audio-alert").innerHTML = '<audio src="' + sound + '" autoplay="autoplay" autobuffer="autobuffer"></audio>'; >+ } > } >- }); >- function playSound( sound ) { >- if (!(sound.indexOf("http://") === 0 || sound.indexOf("https://") === 0)) { >- sound = '[% interface | html %]' + '/bootstrap/sound/' + sound; >- document.getElementById("audio-alert").innerHTML = '<audio src="' + sound + '" autoplay="autoplay" autobuffer="autobuffer"></audio>'; >- } >- } >- [% END %] >+ [% END %] > >- $( window ).on( "load", function() { >- dofocus(); >- }); >+ $( window ).on( "load", function() { >+ dofocus(); >+ }); > >- $( window ).on( "unload", function() { >- mungeHistory(); >- }); >+ $( window ).on( "unload", function() { >+ mungeHistory(); >+ }); > >- $(document).ready(function() { >- dofocus(); >- [% IF ( patronid ) %]sco_init();[% END %] >- >- var dTables = $("#loanTable, #holdst, #finestable"); >- dTables.each(function(){ >- var thIndex = $(this).find("th.psort").index(); >- $(this).kohaTable({ >- sorting: [[thIndex, "asc"]], >- dom: '<"top"<"table_entries"><"table_controls"f>>t<"clear">', >- columnDefs: [ >- { targets: ["nosort"], orderable: false, searchable: false }, >- { targets: ["noshow"], visible: false, searchable: false }, >- { type: "anti-the", targets: ["anti-the"] }, >- { visible: false, targets: ["hidden"] }, >- { className: "dtr-control", orderable: false, targets: -1 }, >- ], >- language: { >- search: "_INPUT_", >- searchPlaceholder: _("Search"), >- }, >- responsive: { >- details: { >- type: "column", >- target: -1, >+ $(document).ready(function() { >+ dofocus(); >+ [% IF ( patronid ) %]sco_init();[% END %] >+ >+ var dTables = $("#loanTable, #holdst, #finestable"); >+ dTables.each(function(){ >+ var thIndex = $(this).find("th.psort").index(); >+ $(this).kohaTable({ >+ sorting: [[thIndex, "asc"]], >+ dom: '<"top"<"table_entries"><"table_controls"f>>t<"clear">', >+ columnDefs: [ >+ { targets: ["nosort"], orderable: false, searchable: false }, >+ { targets: ["noshow"], visible: false, searchable: false }, >+ { type: "anti-the", targets: ["anti-the"] }, >+ { visible: false, targets: ["hidden"] }, >+ { className: "dtr-control", orderable: false, targets: -1 }, >+ ], >+ language: { >+ search: "_INPUT_", >+ searchPlaceholder: _("Search"), >+ }, >+ responsive: { >+ details: { >+ type: "column", >+ target: -1, >+ }, > }, >- }, >+ }); > }); >- }); > >- $('a[data-bs-toggle="tab"]').on('shown.bs.tab', function (event) { >- dTables.DataTable().responsive.recalc(); >- } ); >- >- $("#logout_form").on("click", function(e){ >- e.preventDefault(e); >- clearTimeout(mainTimeout); >- [% IF Koha.Preference('SelfCheckReceiptPrompt') %] >- var confirmStart = Date.now(); >- confirmModal("", _("Would you like to print a receipt?"), _("Print receipt and end session"), _("End session"), function(result) { >- if ( result && (Date.now() - confirmStart) < [% SelfCheckTimeout | html %] ) { >- var win = window.open("/cgi-bin/koha/sco/printslip.pl?print=qslip"); >- location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >- } else { >- location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >- } >- }) >- sco_init(); >- [% ELSE %] >- location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >- [% END %] >+ $('a[data-bs-toggle="tab"]').on('shown.bs.tab', function (event) { >+ dTables.DataTable().responsive.recalc(); >+ } ); >+ >+ $("#logout_form").on("click", function(e){ >+ e.preventDefault(e); >+ clearTimeout(mainTimeout); >+ [% IF Koha.Preference('SelfCheckReceiptPrompt') %] >+ var confirmStart = Date.now(); >+ confirmModal("", _("Would you like to print a receipt?"), _("Print receipt and end session"), _("End session"), function(result) { >+ if ( result && (Date.now() - confirmStart) < [% SelfCheckTimeout | html %] ) { >+ var win = window.open("/cgi-bin/koha/sco/printslip.pl?print=qslip"); >+ location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >+ } else { >+ location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >+ } >+ }) >+ sco_init(); >+ [% ELSE %] >+ location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout'; >+ [% END %] > >- return true; >- }); >+ return true; >+ }); > >- $("#scan_form").on("submit", function(){ >- return checkout_confirm('[% patronid | html %]'); >- }); >- }); >- </script> >- [% IF ( Koha.Preference('SCOUserJS') ) %] >- <script> >- [% Koha.Preference('SCOUserJS') | $raw %] >+ $("#scan_form").on("submit", function(){ >+ return checkout_confirm('[% patronid | html %]'); >+ }); >+ }); > </script> >+ [% IF ( Koha.Preference('SCOUserJS') ) %] >+ <script> >+ [% Koha.Preference('SCOUserJS') | $raw %] >+ </script> >+ [% END %] > [% END %] >-[% END %] > >-[% BLOCK display_errors %] >- [% FOREACH item IN impossible %] >- <!-- We tried to issue, but failed. --> >- <div class="alert alert-warning"> >- <span class="sco-alert-warning noissue"></span> >- <h2>Item cannot be checked out.</h2> >- <p>Sorry, this item cannot be checked out at this station.</p> >- [% IF ( item.title ) %] >- <p>Title: <em>[% item.title | html %]</em> </p> >- [% END %] >+ [% BLOCK display_errors %] >+ [% FOREACH item IN impossible %] >+ <!-- We tried to issue, but failed. --> >+ <div class="alert alert-warning"> >+ <span class="sco-alert-warning noissue"></span> >+ <h2>Item cannot be checked out.</h2> >+ <p>Sorry, this item cannot be checked out at this station.</p> >+ [% IF ( item.title ) %] >+ <p>Title: <em>[% item.title | html %]</em> </p> >+ [% END %] > >- <p> >- [% IF ( item.circ_error_UNKNOWN_BARCODE ) %] >- <span id="ce_unknown_barcode">The system does not recognize this barcode.</span> >- [% ELSIF ( item.circ_error_max_loans_allowed ) %] >- <span id="ce_max_loans_allowed">You have reached the maximum limit of items checked out.</span> >- [% ELSIF ( item.circ_error_ISSUED_TO_ANOTHER ) %] >- <span id="ce_issued_to_another">This item is checked out to someone else.</span> >- [% ELSIF ( item.circ_error_NO_MORE_RENEWALS ) %] >- <span id="ce_no_more_renewals">You cannot renew this item again.</span> >- [% ELSIF ( item.circ_error_NOT_FOR_LOAN ) %] >- <span id="ce_not_for_loan">This item is not for loan.</span> >- [% ELSIF ( item.circ_error_DEBT ) %] >- <span id="ce_too_much_debt">You owe the library [% item.DEBT | $Price with_symbol => 1 %] and cannot check out.</span> >- [% ELSIF ( item.circ_error_WTHDRAWN ) %] >- <span id="ce_wthdrawn">This item has been withdrawn from the collection.</span> >- [% ELSIF ( item.circ_error_RESTRICTED ) %] >- <span id="ce_restricted">This item is restricted.</span> >- [% ELSIF ( item.circ_error_RESERVED ) %] >- <span id="ce_reserved">This item is on hold for another patron.</span> >- [% ELSIF ( item.circ_error_ITEMNOTSAMEBRANCH ) %] >- <span id="ce_itemnotsamebranch">This item belongs to another library.</span> >- [% ELSIF ( item.circ_error_EXPIRED ) %] >- <span id="ce_expired">Your account has expired.</span> >- [% ELSIF ( item.circ_error_DEBARRED ) %] >- <span id="ce_debarred">Your account has been suspended.</span> >- [% ELSIF ( item.circ_error_CARD_LOST ) %] >- <span id="ce_card_lost">This library card has been declared lost.</span> >- [% ELSIF ( item.circ_error_GNA ) %] >- <span id="ce_gna">Your contact information seems to be incomplete.</span> >- [% ELSIF ( item.circ_error_INVALID_DATE ) %] >- <span id="ce_invalid_date">Due date is not valid.</span> >- [% ELSIF ( item.circ_error_ADDITIONAL_MATERIALS ) %] >- <span id="ce_addtional_materials">Item must be checked out at a circulation desk.</span> >+ <p> >+ [% IF ( item.circ_error_UNKNOWN_BARCODE ) %] >+ <span id="ce_unknown_barcode">The system does not recognize this barcode.</span> >+ [% ELSIF ( item.circ_error_max_loans_allowed ) %] >+ <span id="ce_max_loans_allowed">You have reached the maximum limit of items checked out.</span> >+ [% ELSIF ( item.circ_error_ISSUED_TO_ANOTHER ) %] >+ <span id="ce_issued_to_another">This item is checked out to someone else.</span> >+ [% ELSIF ( item.circ_error_NO_MORE_RENEWALS ) %] >+ <span id="ce_no_more_renewals">You cannot renew this item again.</span> >+ [% ELSIF ( item.circ_error_NOT_FOR_LOAN ) %] >+ <span id="ce_not_for_loan">This item is not for loan.</span> >+ [% ELSIF ( item.circ_error_DEBT ) %] >+ <span id="ce_too_much_debt">You owe the library [% item.DEBT | $Price with_symbol => 1 %] and cannot check out.</span> >+ [% ELSIF ( item.circ_error_WTHDRAWN ) %] >+ <span id="ce_wthdrawn">This item has been withdrawn from the collection.</span> >+ [% ELSIF ( item.circ_error_RESTRICTED ) %] >+ <span id="ce_restricted">This item is restricted.</span> >+ [% ELSIF ( item.circ_error_RESERVED ) %] >+ <span id="ce_reserved">This item is on hold for another patron.</span> >+ [% ELSIF ( item.circ_error_ITEMNOTSAMEBRANCH ) %] >+ <span id="ce_itemnotsamebranch">This item belongs to another library.</span> >+ [% ELSIF ( item.circ_error_EXPIRED ) %] >+ <span id="ce_expired">Your account has expired.</span> >+ [% ELSIF ( item.circ_error_DEBARRED ) %] >+ <span id="ce_debarred">Your account has been suspended.</span> >+ [% ELSIF ( item.circ_error_CARD_LOST ) %] >+ <span id="ce_card_lost">This library card has been declared lost.</span> >+ [% ELSIF ( item.circ_error_GNA ) %] >+ <span id="ce_gna">Your contact information seems to be incomplete.</span> >+ [% ELSIF ( item.circ_error_INVALID_DATE ) %] >+ <span id="ce_invalid_date">Due date is not valid.</span> >+ [% ELSIF ( item.circ_error_ADDITIONAL_MATERIALS ) %] >+ <span id="ce_addtional_materials">Item must be checked out at a circulation desk.</span> >+ [% END %] >+ <span id="ce_see_staff">Please see a member of the library staff.</span> >+ </p> >+ >+ [% IF ( item.returnitem && Koha.Preference('SCOAllowCheckin') ) %] >+ <form action="/cgi-bin/koha/sco/sco-main.pl" name="errorForm" class="inline" method="post"> >+ [% INCLUDE 'csrf-token.inc' %] >+ <legend class="sr-only">Return</legend> >+ <input type="hidden" name="op" value="cud-returnbook" /> >+ <input type="hidden" name="patronid" value="[% patronid | html %]" /> >+ <input type="hidden" name="barcode" value="[% item.barcode | html %]" /> >+ <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >+ <input type="hidden" name="newissues" value="[% newissues | html %]" /> >+ <button type="submit" name="returnbook" class="btn btn-primary"><i class="fa fa-undo" aria-hidden="true"></i> Return this item</button> >+ </form> > [% END %] >- <span id="ce_see_staff">Please see a member of the library staff.</span> >- </p> >- >- [% IF ( item.returnitem && Koha.Preference('SCOAllowCheckin') ) %] >- <form action="/cgi-bin/koha/sco/sco-main.pl" name="errorForm" class="inline" method="post"> >- [% INCLUDE 'csrf-token.inc' %] >- <legend class="sr-only">Return</legend> >- <input type="hidden" name="op" value="cud-returnbook" /> >+ >+ <form action="/cgi-bin/koha/sco/sco-main.pl" name="errorForm" class="inline" method="get"> >+ <legend class="sr-only">Error</legend> >+ <input type="hidden" name="op" value="" /> > <input type="hidden" name="patronid" value="[% patronid | html %]" /> > <input type="hidden" name="barcode" value="[% item.barcode | html %]" /> > <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> > <input type="hidden" name="newissues" value="[% newissues | html %]" /> >- <button type="submit" name="returnbook" class="btn btn-primary"><i class="fa fa-undo" aria-hidden="true"></i> Return this item</button> >+ <input type="submit" name="confirm" value="Return to account summary" class="btn btn-info back focus" /> > </form> >- [% END %] >+ </div> >+ <!-- / .alert --> >+ [% END # / FOREACH impossible %] >+ >+ [% FOREACH c IN confirm %] >+ <!-- We need to confirm the issue.. --> >+ <div class="alert alert-warning" >+ ><h2>Please confirm the checkout:</h2> >+ <span class="sco-alert-warning confirm"></span> >+ [% IF ( c.confirm_renew_issue ) %] >+ <p>This item is already checked out to you: <b>[% c.confirm | html %]</b> <i>([% c.barcode | html %])</i></p> >+ [% END %] > >- <form action="/cgi-bin/koha/sco/sco-main.pl" name="errorForm" class="inline" method="get"> >- <legend class="sr-only">Error</legend> >- <input type="hidden" name="op" value="" /> >- <input type="hidden" name="patronid" value="[% patronid | html %]" /> >- <input type="hidden" name="barcode" value="[% item.barcode | html %]" /> >- <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >- <input type="hidden" name="newissues" value="[% newissues | html %]" /> >- <input type="submit" name="confirm" value="Return to account summary" class="btn btn-info back focus" /> >- </form> >- </div> >- <!-- / .alert --> >- [% END # / FOREACH impossible %] >- >- [% FOREACH c IN confirm %] >- <!-- We need to confirm the issue.. --> >- <div class="alert alert-warning" >- ><h2>Please confirm the checkout:</h2> >- <span class="sco-alert-warning confirm"></span> >- [% IF ( c.confirm_renew_issue ) %] >- <p>This item is already checked out to you: <b>[% c.confirm | html %]</b> <i>([% c.barcode | html %])</i></p> >- [% END %] >+ [% IF ( c.renew && Koha.Preference('SCOAllowCheckin') ) %] >+ <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post"> >+ [% INCLUDE 'csrf-token.inc' %] >+ <legend class="sr-only">Return</legend> >+ <input type="hidden" name="op" value="cud-returnbook" /> >+ <input type="hidden" name="patronid" value="[% patronid | html %]" /> >+ <input type="hidden" name="barcode" value="[% c.barcode | html %]" /> >+ <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >+ <input type="hidden" name="confirmed" value="" /> >+ <input type="hidden" name="newissues" value="[% newissues | html %]" /> >+ <button type="submit" name="returnbook" class="btn btn-primary"><i class="fa fa-undo" aria-hidden="true"></i> Return this item</button> >+ </form> >+ [% END %] > >- [% IF ( c.renew && Koha.Preference('SCOAllowCheckin') ) %] >- <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post"> >- [% INCLUDE 'csrf-token.inc' %] >- <legend class="sr-only">Return</legend> >- <input type="hidden" name="op" value="cud-returnbook" /> >- <input type="hidden" name="patronid" value="[% patronid | html %]" /> >- <input type="hidden" name="barcode" value="[% c.barcode | html %]" /> >- <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >- <input type="hidden" name="confirmed" value="" /> >- <input type="hidden" name="newissues" value="[% newissues | html %]" /> >- <button type="submit" name="returnbook" class="btn btn-primary"><i class="fa fa-undo" aria-hidden="true"></i> Return this item</button> >- </form> >- [% END %] >+ [% UNLESS ( c.renew ) %] >+ <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post"> >+ [% INCLUDE 'csrf-token.inc' %] >+ <legend class="sr-only">Renew</legend> >+ <input type="hidden" name="op" value="cud-renew" /> >+ <input type="hidden" name="patronid" value="[% patronid | html %]" /> >+ <input type="hidden" name="barcode" value="[% c.barcode | html %]" /> >+ <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >+ <input type="hidden" name="confirmed" value="1" /> >+ <input type="hidden" name="newissues" value="[% newissues | html %]" /> >+ <button type="submit" name="confirm" class="btn btn-primary"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Renew item</button> >+ </form> >+ [% ELSE %] >+ <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post"> >+ [% INCLUDE 'csrf-token.inc' %] >+ <legend class="sr-only">Renew</legend> >+ <input type="hidden" name="op" value="cud-renew" /> >+ <input type="hidden" name="patronid" value="[% patronid | html %]" /> >+ <input type="hidden" name="barcode" value="[% c.barcode | html %]" /> >+ <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >+ <input type="hidden" name="confirmed" value="1" /> >+ <input type="hidden" name="newissues" value="[% newissues | html %]" /> >+ <button type="submit" class="btn btn-primary"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Renew item</button> >+ </form> >+ [% END %] > >- [% UNLESS ( c.renew ) %] >- <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post"> >- [% INCLUDE 'csrf-token.inc' %] >- <legend class="sr-only">Renew</legend> >- <input type="hidden" name="op" value="cud-renew" /> >+ <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="get"> >+ <legend class="sr-only">Cancel</legend> >+ <input type="hidden" name="op" value="" /> > <input type="hidden" name="patronid" value="[% patronid | html %]" /> >- <input type="hidden" name="barcode" value="[% c.barcode | html %]" /> > <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >- <input type="hidden" name="confirmed" value="1" /> > <input type="hidden" name="newissues" value="[% newissues | html %]" /> >- <button type="submit" name="confirm" class="btn btn-primary"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Renew item</button> >+ <button type="submit" class="btn btn-primary"><i class="fa fa-cancel" aria-hidden="true"></i> Cancel</button> > </form> >- [% ELSE %] >- <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post"> >- [% INCLUDE 'csrf-token.inc' %] >- <legend class="sr-only">Renew</legend> >- <input type="hidden" name="op" value="cud-renew" /> >- <input type="hidden" name="patronid" value="[% patronid | html %]" /> >- <input type="hidden" name="barcode" value="[% c.barcode | html %]" /> >- <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >- <input type="hidden" name="confirmed" value="1" /> >- <input type="hidden" name="newissues" value="[% newissues | html %]" /> >- <button type="submit" class="btn btn-primary"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Renew item</button> >- </form> >- [% END %] >- >- <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="get"> >- <legend class="sr-only">Cancel</legend> >- <input type="hidden" name="op" value="" /> >- <input type="hidden" name="patronid" value="[% patronid | html %]" /> >- <input type="hidden" name="load_checkouts" value="[% load_checkouts | html %]" /> >- <input type="hidden" name="newissues" value="[% newissues | html %]" /> >- <button type="submit" class="btn btn-primary"><i class="fa fa-cancel" aria-hidden="true"></i> Cancel</button> >- </form> >- </div> >- [% END # / FOREACH confirm %] >- >- [% IF ( nopermission ) %] >- <!-- This is what is displayed if user doesn't have permission --> >- <div class="alert alert-warning"> >- <span class="sco-alert-warning nopermission"></span> >- <h2>Access denied</h2> >- <p>Sorry, this self-checkout station has lost authentication. Please contact the administrator to resolve this problem.</p> >- </div> >- [% END %] >+ </div> >+ [% END # / FOREACH confirm %] >+ >+ [% IF ( nopermission ) %] >+ <!-- This is what is displayed if user doesn't have permission --> >+ <div class="alert alert-warning"> >+ <span class="sco-alert-warning nopermission"></span> >+ <h2>Access denied</h2> >+ <p>Sorry, this self-checkout station has lost authentication. Please contact the administrator to resolve this problem.</p> >+ </div> >+ [% END %] > >- [% IF ( different_ip ) %] >- <!-- This is what is displayed if user doesn't have permission --> >- <div class="alert alert-warning"> >- <span class="sco-alert-warning sessionlost"></span> >- <h2>Session lost</h2> >- <p>You are accessing self-checkout from a different IP address! please log in again.</p> >- </div> >- [% END %] >+ [% IF ( different_ip ) %] >+ <!-- This is what is displayed if user doesn't have permission --> >+ <div class="alert alert-warning"> >+ <span class="sco-alert-warning sessionlost"></span> >+ <h2>Session lost</h2> >+ <p>You are accessing self-checkout from a different IP address! please log in again.</p> >+ </div> >+ [% END %] > >- [% IF ( invalid_username_or_password ) %] >- <!-- This is what is displayed if user doesn't have permission --> >- <div class="alert alert-warning"> >- <span class="sco-alert-warning notfound"></span> >- <h2>Record not found</h2> >- <p>Your userid was not found in the database. Please try again.</p> >- </div> >- [% END %] >+ [% IF ( invalid_username_or_password ) %] >+ <!-- This is what is displayed if user doesn't have permission --> >+ <div class="alert alert-warning"> >+ <span class="sco-alert-warning notfound"></span> >+ <h2>Record not found</h2> >+ <p>Your userid was not found in the database. Please try again.</p> >+ </div> >+ [% END %] > >- [% IF ( issued ) %] >- [% IF batch_checkouts_allowed %] >- [% FOREACH barcode IN newissues.split(',') %] >+ [% IF ( issued ) %] >+ [% IF batch_checkouts_allowed %] >+ [% FOREACH barcode IN newissues.split(',') %] >+ <span class="sco-alert-success issue"></span> >+ <div class="alert alert-info"> >+ <p>Item checked out <i>([% barcode | html %])</i></p> >+ </div> >+ [% END %] >+ [% ELSE %] > <span class="sco-alert-success issue"></span> > <div class="alert alert-info"> >- <p>Item checked out <i>([% barcode | html %])</i></p> >+ <p>Item checked out <i>([% newissues.split(',').last | html %])</i></p> > </div> > [% END %] >- [% ELSE %] >- <span class="sco-alert-success issue"></span> >+ [% ELSIF ( renewed ) %] >+ <span class="sco-alert-success renew"></span> > <div class="alert alert-info"> >- <p>Item checked out <i>([% newissues.split(',').last | html %])</i></p> >+ <p>Item renewed <i>([% barcode | html %])</i></p> >+ </div> >+ [% ELSIF ( renewed == 0) %] >+ <span class="sco-alert-warning renew"></span> >+ <div class="alert alert-info"> >+ <p>Item not renewed</p> >+ </div> >+ [% ELSIF ( returned == 0 ) %] >+ <span class="sco-alert-warning return"></span> >+ <div class="alert alert-info"> >+ <p>Item not checked in: please see circulation staff for assistance</p> >+ </div> >+ [% ELSIF ( returned == 1 ) %] >+ <span class="sco-alert-success return"></span> >+ <div class="alert alert-info"> >+ <p>Item checked in <i>([% barcode | html %])</i></p> > </div> > [% END %] >- [% ELSIF ( renewed ) %] >- <span class="sco-alert-success renew"></span> >- <div class="alert alert-info"> >- <p>Item renewed <i>([% barcode | html %])</i></p> >- </div> >- [% ELSIF ( renewed == 0) %] >- <span class="sco-alert-warning renew"></span> >- <div class="alert alert-info"> >- <p>Item not renewed</p> >- </div> >- [% ELSIF ( returned == 0 ) %] >- <span class="sco-alert-warning return"></span> >- <div class="alert alert-info"> >- <p>Item not checked in: please see circulation staff for assistance</p> >- </div> >- [% ELSIF ( returned == 1 ) %] >- <span class="sco-alert-success return"></span> >- <div class="alert alert-info"> >- <p>Item checked in <i>([% barcode | html %])</i></p> >- </div> > [% END %] >-[% END %] >+</div> >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39395
:
179516
|
179898
|
179899
|
179900
| 180059