Lines 49-54
Link Here
|
49 |
<th>Item type</th> |
49 |
<th>Item type</th> |
50 |
<th>Current location</th> |
50 |
<th>Current location</th> |
51 |
<th>Location</th> |
51 |
<th>Location</th> |
|
|
52 |
<th>Not for loan status</th> |
52 |
<th>Notes</th> |
53 |
<th>Notes</th> |
53 |
</tr> |
54 |
</tr> |
54 |
</thead> |
55 |
</thead> |
Lines 59-65
Link Here
|
59 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.biblio.title |html %]</a> |
60 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.biblio.title |html %]</a> |
60 |
</td> |
61 |
</td> |
61 |
<td>[% item.biblio.author %]</td> |
62 |
<td>[% item.biblio.author %]</td> |
62 |
<td>[% AuthorisedValues.GetByCode( 'LOST', item.itemlost ) %]</td> |
63 |
<td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.itemlost', authorised_value => item.itemlost ) %] |
63 |
<td> |
64 |
<td> |
64 |
<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.barcode %]</a> |
65 |
<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.barcode %]</a> |
65 |
</td> |
66 |
</td> |
Lines 71-76
Link Here
|
71 |
<td>[% item.effective_itemtype %]</td> |
72 |
<td>[% item.effective_itemtype %]</td> |
72 |
<td>[% Branches.GetName(item.holdingbranch) %]</td> |
73 |
<td>[% Branches.GetName(item.holdingbranch) %]</td> |
73 |
<td>[% item.location %]</td> |
74 |
<td>[% item.location %]</td> |
|
|
75 |
<td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) %] |
74 |
<td>[% item.itemnotes %]</td> |
76 |
<td>[% item.itemnotes %]</td> |
75 |
</tr> |
77 |
</tr> |
76 |
[% END %] |
78 |
[% END %] |
Lines 95-109
Link Here
|
95 |
[% END %] |
97 |
[% END %] |
96 |
</select></li> |
98 |
</select></li> |
97 |
|
99 |
|
98 |
<li><label for="loststatusfilter">Lost status: </label><select name="loststatusfilter" id="loststatusfilter"> |
100 |
<li> |
99 |
<option value="">All</option> |
101 |
<label for="loststatusfilter">Lost status: </label> |
100 |
[% FOREACH loststatusloo IN loststatusloop %] |
102 |
<select name="loststatusfilter" id="loststatusfilter"> |
101 |
[% IF ( loststatusloo.selected ) %]<option value="[% loststatusloo.authorised_value %]" selected="selected">[% loststatusloo.lib %]</option> |
103 |
<option value="">All</option> |
102 |
[% ELSE %] |
104 |
[% FOREACH l IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.itemlost') %] |
103 |
<option value="[% loststatusloo.authorised_value %]">[% loststatusloo.lib %]</option> |
105 |
[% IF l.authorised_value == lostfilter %] |
104 |
[% END %] |
106 |
<option value="[% l.authorised_value %]" selected="selected">[% l.lib %]</option> |
|
|
107 |
[% ELSE %] |
108 |
<option value="[% l.authorised_value %]">[% l.lib %]</option> |
105 |
[% END %] |
109 |
[% END %] |
106 |
</select></li> |
110 |
[% END %] |
|
|
111 |
</select> |
112 |
</li> |
113 |
|
114 |
<li> |
115 |
<label for="notforloanfilter">Not for loan: </label> |
116 |
<select name="notforloanfilter" id="notforloanfilter"> |
117 |
<option value="">All</option> |
118 |
[% FOREACH n IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.notforloan') %] |
119 |
[% IF n.authorised_value == notforloanfilter %] |
120 |
<option value="[% n.authorised_value %]" selected="selected">[% n.lib %]</option> |
121 |
[% ELSE %] |
122 |
<option value="[% n.authorised_value %]">[% n.lib %]</option> |
123 |
[% END %] |
124 |
[% END %] |
125 |
</select> |
126 |
</li> |
127 |
|
107 |
</ol></fieldset> |
128 |
</ol></fieldset> |
108 |
<fieldset class="action"> <input type="submit" value="Submit" /> |
129 |
<fieldset class="action"> <input type="submit" value="Submit" /> |
109 |
<input type="hidden" name="get_items" value="1" /></fieldset> |
130 |
<input type="hidden" name="get_items" value="1" /></fieldset> |