Bug 13024 [QA Followup] - Add nonpublic note to relatives' checkouts
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
717878982f
commit
fc05098469
1 changed files with 8 additions and 0 deletions
|
@ -511,6 +511,14 @@ $(document).ready(function() {
|
||||||
title += " - <span class='" + span_class + "'>" + oObj.itemnotes + "</span>"
|
title += " - <span class='" + span_class + "'>" + oObj.itemnotes + "</span>"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( oObj.itemnotes_nonpublic ) {
|
||||||
|
var span_class = "";
|
||||||
|
if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) {
|
||||||
|
span_class = "circ-hlt";
|
||||||
|
}
|
||||||
|
title += " - <span class='" + span_class + "'>" + oObj.itemnotes_nonpublic + "</span>"
|
||||||
|
}
|
||||||
|
|
||||||
var onsite_checkout = '';
|
var onsite_checkout = '';
|
||||||
if ( oObj.onsite_checkout == 1 ) {
|
if ( oObj.onsite_checkout == 1 ) {
|
||||||
onsite_checkout += " <span class='onsite_checkout'>(" + INHOUSE_USE + ")</span>";
|
onsite_checkout += " <span class='onsite_checkout'>(" + INHOUSE_USE + ")</span>";
|
||||||
|
|
Loading…
Reference in a new issue