diff --git a/C4/XSLT.pm b/C4/XSLT.pm index dd1967acf6..19ce2ab75f 100644 --- a/C4/XSLT.pm +++ b/C4/XSLT.pm @@ -280,10 +280,12 @@ sub buildKohaItemsNamespace { $status = "available"; } my $homebranch = $item->{homebranch}? xml_escape($branches->{$item->{homebranch}}->{'branchname'}):''; + my $holdingbranch = $item->{holdingbranch}? xml_escape($branches->{$item->{holdingbranch}}->{'branchname'}):''; $location = $item->{location}? xml_escape($shelflocations->{$item->{location}}):''; $ccode = $item->{ccode}? xml_escape($ccodes->{$item->{ccode}}):''; my $itemcallnumber = xml_escape($item->{itemcallnumber}); $xml.= "$homebranch". + "$holdingbranch". "$location". "$ccode". "$status".