Lines 280-287
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 |
$location = $item->{location}? xml_escape($shelflocations->{$item->{location}}):''; |
283 |
$location = $item->{location}? xml_escape($shelflocations->{$item->{location}}||$item->{location}):''; |
284 |
$ccode = $item->{ccode}? xml_escape($ccodes->{$item->{ccode}}):''; |
284 |
$ccode = $item->{ccode}? xml_escape($ccodes->{$item->{ccode}}||$item->{ccode}):''; |
285 |
my $itemcallnumber = xml_escape($item->{itemcallnumber}); |
285 |
my $itemcallnumber = xml_escape($item->{itemcallnumber}); |
286 |
$xml.= "<item><homebranch>$homebranch</homebranch>". |
286 |
$xml.= "<item><homebranch>$homebranch</homebranch>". |
287 |
"<location>$location</location>". |
287 |
"<location>$location</location>". |
288 |
- |
|
|