|
Lines 67-72
Link Here
|
| 67 |
<th>Item type</th> |
67 |
<th>Item type</th> |
| 68 |
<th>Current location</th> |
68 |
<th>Current location</th> |
| 69 |
<th>Location</th> |
69 |
<th>Location</th> |
|
|
70 |
<th>Not for loan status</th> |
| 70 |
<th>Notes</th> |
71 |
<th>Notes</th> |
| 71 |
</tr> |
72 |
</tr> |
| 72 |
</thead> |
73 |
</thead> |
|
Lines 77-83
Link Here
|
| 77 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.biblio.title |html %]</a> |
78 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.biblio.title |html %]</a> |
| 78 |
</td> |
79 |
</td> |
| 79 |
<td>[% item.biblio.author %]</td> |
80 |
<td>[% item.biblio.author %]</td> |
| 80 |
<td>[% AuthorisedValues.GetByCode( 'LOST', item.itemlost ) %]</td> |
81 |
<td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.itemlost', authorised_value => item.itemlost ) %] |
| 81 |
<td> |
82 |
<td> |
| 82 |
<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.barcode %]</a> |
83 |
<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% item.biblionumber %]" title="[% item.itemnotes %]">[% item.barcode %]</a> |
| 83 |
</td> |
84 |
</td> |
|
Lines 89-94
Link Here
|
| 89 |
<td>[% item.effective_itemtype %]</td> |
90 |
<td>[% item.effective_itemtype %]</td> |
| 90 |
<td>[% Branches.GetName(item.holdingbranch) %]</td> |
91 |
<td>[% Branches.GetName(item.holdingbranch) %]</td> |
| 91 |
<td>[% item.location %]</td> |
92 |
<td>[% item.location %]</td> |
|
|
93 |
<td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) %] |
| 92 |
<td>[% item.itemnotes %]</td> |
94 |
<td>[% item.itemnotes %]</td> |
| 93 |
</tr> |
95 |
</tr> |
| 94 |
[% END %] |
96 |
[% END %] |
|
Lines 113-127
Link Here
|
| 113 |
[% END %] |
115 |
[% END %] |
| 114 |
</select></li> |
116 |
</select></li> |
| 115 |
|
117 |
|
| 116 |
<li><label for="loststatusfilter">Lost status: </label><select name="loststatusfilter" id="loststatusfilter"> |
118 |
<li> |
| 117 |
<option value="">All</option> |
119 |
<label for="loststatusfilter">Lost status: </label> |
| 118 |
[% FOREACH loststatusloo IN loststatusloop %] |
120 |
<select name="loststatusfilter" id="loststatusfilter"> |
| 119 |
[% IF ( loststatusloo.selected ) %]<option value="[% loststatusloo.authorised_value %]" selected="selected">[% loststatusloo.lib %]</option> |
121 |
<option value="">All</option> |
| 120 |
[% ELSE %] |
122 |
[% FOREACH l IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.itemlost') %] |
| 121 |
<option value="[% loststatusloo.authorised_value %]">[% loststatusloo.lib %]</option> |
123 |
[% IF l.authorised_value == lostfilter %] |
| 122 |
[% END %] |
124 |
<option value="[% l.authorised_value %]" selected="selected">[% l.lib %]</option> |
|
|
125 |
[% ELSE %] |
| 126 |
<option value="[% l.authorised_value %]">[% l.lib %]</option> |
| 123 |
[% END %] |
127 |
[% END %] |
| 124 |
</select></li> |
128 |
[% END %] |
|
|
129 |
</select> |
| 130 |
</li> |
| 131 |
|
| 132 |
<li> |
| 133 |
<label for="notforloanfilter">Not for loan: </label> |
| 134 |
<select name="notforloanfilter" id="notforloanfilter"> |
| 135 |
<option value="">All</option> |
| 136 |
[% FOREACH n IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.notforloan') %] |
| 137 |
[% IF n.authorised_value == notforloanfilter %] |
| 138 |
<option value="[% n.authorised_value %]" selected="selected">[% n.lib %]</option> |
| 139 |
[% ELSE %] |
| 140 |
<option value="[% n.authorised_value %]">[% n.lib %]</option> |
| 141 |
[% END %] |
| 142 |
[% END %] |
| 143 |
</select> |
| 144 |
</li> |
| 145 |
|
| 125 |
</ol></fieldset> |
146 |
</ol></fieldset> |
| 126 |
<fieldset class="action"> <input type="submit" value="Submit" /> |
147 |
<fieldset class="action"> <input type="submit" value="Submit" /> |
| 127 |
<input type="hidden" name="get_items" value="1" /></fieldset> |
148 |
<input type="hidden" name="get_items" value="1" /></fieldset> |