|
Lines 150-156
Link Here
|
| 150 |
[% IF !whole.stage || whole.stage == 'form' %] |
150 |
[% IF !whole.stage || whole.stage == 'form' %] |
| 151 |
<h1 id="ill-issue-title">Issue requested item to [% INCLUDE 'patron-title.inc' patron = request.patron %]</h1> |
151 |
<h1 id="ill-issue-title">Issue requested item to [% INCLUDE 'patron-title.inc' patron = request.patron %]</h1> |
| 152 |
[% IF !request.biblio_id || request.biblio_id.length == 0 %] |
152 |
[% IF !request.biblio_id || request.biblio_id.length == 0 %] |
| 153 |
<div class="alert">This item cannot be issued as it has no biblio record associated with it</div> |
153 |
<div class="alert">This item cannot be checkout out as there is no bibliographic record associated with it</div> |
| 154 |
[% END %] |
154 |
[% END %] |
| 155 |
[% IF whole.value.errors.itemcount %] |
155 |
[% IF whole.value.errors.itemcount %] |
| 156 |
<div class="alert">The bibliographic record for this request has multiple items, it should only have one. Please fix this then try again.</div> |
156 |
<div class="alert">The bibliographic record for this request has multiple items, it should only have one. Please fix this then try again.</div> |
|
Lines 246-252
Link Here
|
| 246 |
[% END %] |
246 |
[% END %] |
| 247 |
[% END %] |
247 |
[% END %] |
| 248 |
[% IF whole.value.errors.branchcode %] |
248 |
[% IF whole.value.errors.branchcode %] |
| 249 |
<span class="required">You must choose a branch</span> |
249 |
<span class="required">You must choose a library</span> |
| 250 |
[% END %] |
250 |
[% END %] |
| 251 |
</li> |
251 |
</li> |
| 252 |
<li class="ill_checkout_due_date"> |
252 |
<li class="ill_checkout_due_date"> |
|
Lines 619-625
Link Here
|
| 619 |
<li class="borrowernumber"> |
619 |
<li class="borrowernumber"> |
| 620 |
<span class="label borrowernumber">Patron:</span> |
620 |
<span class="label borrowernumber">Patron:</span> |
| 621 |
[% borrowerlink = "/cgi-bin/koha/members/moremember.pl" _ "?borrowernumber=" _ request.patron.borrowernumber %] |
621 |
[% borrowerlink = "/cgi-bin/koha/members/moremember.pl" _ "?borrowernumber=" _ request.patron.borrowernumber %] |
| 622 |
<a href="[% borrowerlink | url %]" title="View borrower details"> |
622 |
<a href="[% borrowerlink | url %]" title="View patron details"> |
| 623 |
[% request.patron.firstname _ " " _ request.patron.surname _ " [" _ request.patron.cardnumber _ "]" | html %] |
623 |
[% request.patron.firstname _ " " _ request.patron.surname _ " [" _ request.patron.cardnumber _ "]" | html %] |
| 624 |
</a> |
624 |
</a> |
| 625 |
</li> |
625 |
</li> |
|
Lines 673-679
Link Here
|
| 673 |
<p>[% request.notesstaff | html %]</p> |
673 |
<p>[% request.notesstaff | html %]</p> |
| 674 |
</li> |
674 |
</li> |
| 675 |
<li class="notesopac"> |
675 |
<li class="notesopac"> |
| 676 |
<span class="label notes_opac">Notes:</span> |
676 |
<span class="label notes_opac">OPAC notes:</span> |
| 677 |
<p>[% request.notesopac | html %]</p> |
677 |
<p>[% request.notesopac | html %]</p> |
| 678 |
</li> |
678 |
</li> |
| 679 |
</ol> |
679 |
</ol> |
|
Lines 749-755
Link Here
|
| 749 |
[% FOREACH comment IN request.illcomments %] |
749 |
[% FOREACH comment IN request.illcomments %] |
| 750 |
<div class="rows comment_[% comment.patron.categorycode | html %]"> |
750 |
<div class="rows comment_[% comment.patron.categorycode | html %]"> |
| 751 |
<h5>Comment by: |
751 |
<h5>Comment by: |
| 752 |
<a href="[% borrowerlink | url %]" title="View borrower details"> |
752 |
<a href="[% borrowerlink | url %]" title="View patron details"> |
| 753 |
[% comment.patron.firstname _ " " _ comment.patron.surname _ " [" _ comment.patron.cardnumber _ "]" | html %]</a> |
753 |
[% comment.patron.firstname _ " " _ comment.patron.surname _ " [" _ comment.patron.cardnumber _ "]" | html %]</a> |
| 754 |
[% comment.timestamp | $KohaDates with_hours => 1 %]</h5> |
754 |
[% comment.timestamp | $KohaDates with_hours => 1 %]</h5> |
| 755 |
<p>[% comment.comment | html %]</p> |
755 |
<p>[% comment.comment | html %]</p> |
| 756 |
- |
|
|