---
C4/XSLT.pm | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/C4/XSLT.pm b/C4/XSLT.pm
index 9a6a38f..adf5e97 100644
--- a/C4/XSLT.pm
+++ b/C4/XSLT.pm
@@ -269,8 +269,16 @@ sub buildKohaItemsNamespace {
my $reservestatus = C4::Reserves::GetReserveStatus(
$item->{itemnumber} );
- if ( $itemtypes->{ $item->{itype} }->{notforloan} ||
$item->{notforloan} || $item->{onloan} || $item->{withdrawn} ||
$item->{itemlost} || $item->{damaged} ||
- (defined $transfertwhen && $transfertwhen ne '') ||
$item->{itemnotforloan} || (defined $reservestatus && $reservestatus eq
"Waiting") ){
+ if ( ($item->{itype} && $itemtypes->{ $item->{itype} }->{notforloan})
+ || $item->{notforloan}
+ || $item->{onloan}
+ || $item->{withdrawn}
+ || $item->{itemlost}
+ || $item->{damaged}
+ || (defined $transfertwhen && $transfertwhen ne '')
+ || $item->{itemnotforloan}
+ || (defined $reservestatus && $reservestatus eq "Waiting")
+ ){
if ( $item->{notforloan} < 0) {
$status = "On order";
}
--
2.5.0
_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/