Koha/koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc
Galen Charlton 96a70655aa bug 4396: clarify return of itemtype-level notforloan flag
* GetItemsInfo now includes a notforloan_per_itemtype key
  with the value of the item type's notforloan setting, correctly
  set based on the value of the item-level_itypes syspref
* Adjusted OPAC details item status display to use that
  notforloan_per_itemtype key

NOTE: one of the assumptions of item-level_itypes is that
      you can have either bib-level item types or item-level
      item types, but not both in the same database.  In particular,
      it does not establish a hierarchy where Koha checks the
      item-level itemtype first, then the bib-level.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-05-03 07:45:19 -04:00

34 lines
1.7 KiB
PHP

<!-- TMPL_IF name="notforloan_per_itemtype" -->
Not for loan <!-- TMPL_IF NAME="notforloanvalue" -->(<!-- TMPL_VAR NAME="notforloanvalue" -->)<!-- /TMPL_IF -->
<!-- TMPL_ELSE -->
<!-- TMPL_IF name="datedue" -->
<!-- TMPL_IF name="OPACShowCheckoutName" -->
Checked out to <!-- TMPL_VAR NAME="cardnumber" --> <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" -->
<!-- TMPL_ELSE -->
Checked out
<!-- /TMPL_IF -->
<!-- TMPL_ELSE -->
<!-- TMPL_IF name="itemnotforloan" -->
<!-- TMPL_VAR NAME="notforloanvalue" -->
<!-- TMPL_ELSE -->
<!-- TMPL_IF name="itemlost"-->
<!-- TMPL_IF name="lostimageurl"-->
<img src="<!-- TMPL_VAR NAME="lostimageurl" -->" alt="<!-- TMPL_VAR NAME="lostimagelabel" -->" title="<!-- TMPL_VAR NAME="lostimagelabel" -->">
<!-- TMPL_ELSE -->
Item lost
<!-- /TMPL_IF -->
<!-- TMPL_ELSE -->
<!-- TMPL_IF NAME="wthdrawn" -->
Item withdrawn
<!-- TMPL_ELSIF NAME="damaged" -->
Item damaged
<!-- TMPL_ELSIF Name="transfertwhen" -->
In transit from <!-- TMPL_VAR NAME="transfertfrom" -->
to <!-- TMPL_VAR NAME="transfertto" --> since <!-- TMPL_VAR NAME="transfertwhen" -->
<!-- TMPL_ELSE -->
<!-- TMPL_IF NAME="waiting" -->On hold<!-- TMPL_ELSE -->Available<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->