View | Details | Raw Unified | Return to bug 10006
Collapse All | Expand All

(-)a/C4/XSLT.pm (-1 / +2 lines)
Lines 280-289 sub buildKohaItemsNamespace { Link Here
280
            $status = "available";
280
            $status = "available";
281
        }
281
        }
282
        my $homebranch = $item->{homebranch}? xml_escape($branches->{$item->{homebranch}}->{'branchname'}):'';
282
        my $homebranch = $item->{homebranch}? xml_escape($branches->{$item->{homebranch}}->{'branchname'}):'';
283
        my $holdingbranch = $item->{holdingbranch}? xml_escape($branches->{$item->{holdingbranch}}->{'branchname'}):'';
283
        $location = $item->{location}? xml_escape($shelflocations->{$item->{location}}):'';
284
        $location = $item->{location}? xml_escape($shelflocations->{$item->{location}}):'';
284
        $ccode = $item->{ccode}? xml_escape($ccodes->{$item->{ccode}}):'';
285
        $ccode = $item->{ccode}? xml_escape($ccodes->{$item->{ccode}}):'';
285
        my $itemcallnumber = xml_escape($item->{itemcallnumber});
286
        my $itemcallnumber = xml_escape($item->{itemcallnumber});
286
        $xml.= "<item><homebranch>$homebranch</homebranch>".
287
        $xml.= "<item><homebranch>$homebranch</homebranch>".
288
                "<holdingbranch>$holdingbranch</holdingbranch>".
287
                "<location>$location</location>".
289
                "<location>$location</location>".
288
                "<ccode>$ccode</ccode>".
290
                "<ccode>$ccode</ccode>".
289
		"<status>$status</status>".
291
		"<status>$status</status>".
290
- 

Return to bug 10006