Lines 279-286
sub buildKohaItemsNamespace {
Link Here
|
279 |
$status = "available"; |
279 |
$status = "available"; |
280 |
} |
280 |
} |
281 |
my $homebranch = $item->{homebranch}? xml_escape($branches->{$item->{homebranch}}->{'branchname'}):''; |
281 |
my $homebranch = $item->{homebranch}? xml_escape($branches->{$item->{homebranch}}->{'branchname'}):''; |
282 |
$location = xml_escape($shelflocations->{$item->{location}}); |
282 |
$location = $item->{location}? xml_escape($shelflocations->{$item->{location}}):''; |
283 |
$ccode = xml_escape($ccodes->{$item->{ccode}}); |
283 |
$ccode = $item->{ccode}? xml_escape($ccodes->{$item->{ccode}}):''; |
284 |
my $itemcallnumber = xml_escape($item->{itemcallnumber}); |
284 |
my $itemcallnumber = xml_escape($item->{itemcallnumber}); |
285 |
$xml.= "<item><homebranch>$homebranch</homebranch>". |
285 |
$xml.= "<item><homebranch>$homebranch</homebranch>". |
286 |
"<location>$location</location>". |
286 |
"<location>$location</location>". |
287 |
- |
|
|