|
Lines 5-13
Link Here
|
| 5 |
[% INCLUDE 'calendar.inc' %] |
5 |
[% INCLUDE 'calendar.inc' %] |
| 6 |
<script type="text/javascript"> |
6 |
<script type="text/javascript"> |
| 7 |
// <![CDATA[ |
7 |
// <![CDATA[ |
| 8 |
var MSG_NO_COPY_SELECTED = _("Expecting a specific copy selection."); |
8 |
var MSG_NO_ITEM_SELECTED = _("Expecting a specific item selection."); |
| 9 |
var ForceHoldNotesReasons=new Array( |
9 |
var ForceHoldNotesReasons=new Array( |
| 10 |
_("This title consists of multiple volumes/parts. Please indicate which part you need. Clicking on specific copy information may be helpful."), |
10 |
_("This title consists of multiple volumes/parts. Please indicate which part you need. Clicking on specific item information may be helpful."), |
| 11 |
"*** Add a new reason above this line ***" ); // NOTE: Do not renumber reasons; this will affect use of existing ones. |
11 |
"*** Add a new reason above this line ***" ); // NOTE: Do not renumber reasons; this will affect use of existing ones. |
| 12 |
|
12 |
|
| 13 |
function prefixOf (s, tok) { |
13 |
function prefixOf (s, tok) { |
|
Lines 89-95
Link Here
|
| 89 |
// Find the selected copy |
89 |
// Find the selected copy |
| 90 |
var item = $(".checkitem_" + biblioNum + ":checked"); |
90 |
var item = $(".checkitem_" + biblioNum + ":checked"); |
| 91 |
if ($(item).size() == 0) { |
91 |
if ($(item).size() == 0) { |
| 92 |
alert(MSG_NO_COPY_SELECTED); |
92 |
alert(MSG_NO_ITEM_SELECTED); |
| 93 |
return false; |
93 |
return false; |
| 94 |
} |
94 |
} |
| 95 |
} |
95 |
} |
|
Lines 169-175
Link Here
|
| 169 |
}); |
169 |
}); |
| 170 |
|
170 |
|
| 171 |
if (badBib) { |
171 |
if (badBib) { |
| 172 |
alert(MSG_NO_COPY_SELECTED); |
172 |
alert(MSG_NO_ITEM_SELECTED); |
| 173 |
return false; |
173 |
return false; |
| 174 |
} |
174 |
} |
| 175 |
|
175 |
|
|
Lines 442-448
Link Here
|
| 442 |
/> |
442 |
/> |
| 443 |
[% END %] |
443 |
[% END %] |
| 444 |
|
444 |
|
| 445 |
<label for="reqany_[% bibitemloo.biblionumber %]">Next available copy</label> |
445 |
<label for="reqany_[% bibitemloo.biblionumber %]">Next available item</label> |
| 446 |
[% UNLESS ( bibitemloo.holdable ) %] |
446 |
[% UNLESS ( bibitemloo.holdable ) %] |
| 447 |
<input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" |
447 |
<input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" |
| 448 |
id="reqspecific_[% bibitemloo.biblionumber %]" |
448 |
id="reqspecific_[% bibitemloo.biblionumber %]" |
|
Lines 457-463
Link Here
|
| 457 |
value="Specific" |
457 |
value="Specific" |
| 458 |
/> |
458 |
/> |
| 459 |
[% END %] |
459 |
[% END %] |
| 460 |
<label for="reqspecific_[% bibitemloo.biblionumber %]">A specific copy</label> |
460 |
<label for="reqspecific_[% bibitemloo.biblionumber %]">A specific item</label> |
| 461 |
</li> |
461 |
</li> |
| 462 |
|
462 |
|
| 463 |
[% END %] |
463 |
[% END %] |
|
Lines 467-473
Link Here
|
| 467 |
[% IF ( bibitemloo.holdable ) %] |
467 |
[% IF ( bibitemloo.holdable ) %] |
| 468 |
|
468 |
|
| 469 |
<table class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]"> |
469 |
<table class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]"> |
| 470 |
<caption>Select a specific copy:</caption> |
470 |
<caption>Select a specific item:</caption> |
| 471 |
<tr> |
471 |
<tr> |
| 472 |
<th>Copy number</th> |
472 |
<th>Copy number</th> |
| 473 |
[% IF ( item_level_itypes ) %] |
473 |
[% IF ( item_level_itypes ) %] |