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 |
- |
|
|