Lines 204-213
Link Here
|
204 |
[% END %] |
204 |
[% END %] |
205 |
<option value="">Choose</option> |
205 |
<option value="">Choose</option> |
206 |
[% FOREACH itemlostloo IN itemlostloop %] |
206 |
[% FOREACH itemlostloo IN itemlostloop %] |
207 |
[% IF ClaimReturnedLostValue && !ITEM_DAT.itemlost && itemlostloo.authorised_value == ClaimReturnedLostValue #Filter claims returned status from pulldown %] |
207 |
[% IF itemlostloo.authorised_value == ITEM_DAT.itemlost %] |
208 |
<option value="[% itemlostloo.authorised_value | html %]" disabled="disabled" title="Return claims must be processed from the patron details page">[% itemlostloo.lib | html %]</option> |
|
|
209 |
[% ELSIF itemlostloo.authorised_value == ITEM_DAT.itemlost %] |
210 |
<option value="[% itemlostloo.authorised_value | html %]" selected="selected">[% itemlostloo.lib | html %]</option> |
208 |
<option value="[% itemlostloo.authorised_value | html %]" selected="selected">[% itemlostloo.lib | html %]</option> |
|
|
209 |
[% ELSIF ClaimReturnedLostValue && itemlostloo.authorised_value == ClaimReturnedLostValue #Filter claims returned status from pulldown %] |
210 |
<option value="[% itemlostloo.authorised_value | html %]" disabled="disabled" title="Return claims must be processed from the patron details page">[% itemlostloo.lib | html %]</option> |
211 |
[% ELSE %] |
211 |
[% ELSE %] |
212 |
<option value="[% itemlostloo.authorised_value | html %]">[% itemlostloo.lib | html %]</option> |
212 |
<option value="[% itemlostloo.authorised_value | html %]">[% itemlostloo.lib | html %]</option> |
213 |
[% END %] |
213 |
[% END %] |
214 |
- |
|
|