|
Lines 466-471
sub _build_default_values_for_mod_marc {
Link Here
|
| 466 |
itemcallnumber => undef, |
466 |
itemcallnumber => undef, |
| 467 |
itemlost => 0, |
467 |
itemlost => 0, |
| 468 |
itemnotes => undef, |
468 |
itemnotes => undef, |
|
|
469 |
itemnotes_nonpublic => undef, |
| 469 |
itype => undef, |
470 |
itype => undef, |
| 470 |
location => undef, |
471 |
location => undef, |
| 471 |
permanent_location => undef, |
472 |
permanent_location => undef, |
|
Lines 2147-2152
sub _koha_new_item {
Link Here
|
| 2147 |
coded_location_qualifier = ?, |
2148 |
coded_location_qualifier = ?, |
| 2148 |
restricted = ?, |
2149 |
restricted = ?, |
| 2149 |
itemnotes = ?, |
2150 |
itemnotes = ?, |
|
|
2151 |
itemnotes_nonpublic = ?, |
| 2150 |
holdingbranch = ?, |
2152 |
holdingbranch = ?, |
| 2151 |
paidfor = ?, |
2153 |
paidfor = ?, |
| 2152 |
location = ?, |
2154 |
location = ?, |
|
Lines 2189-2194
sub _koha_new_item {
Link Here
|
| 2189 |
$item->{'coded_location_qualifier'}, |
2191 |
$item->{'coded_location_qualifier'}, |
| 2190 |
$item->{'restricted'}, |
2192 |
$item->{'restricted'}, |
| 2191 |
$item->{'itemnotes'}, |
2193 |
$item->{'itemnotes'}, |
|
|
2194 |
$item->{'itemnotes_nonpublic'}, |
| 2192 |
$item->{'holdingbranch'}, |
2195 |
$item->{'holdingbranch'}, |
| 2193 |
$item->{'paidfor'}, |
2196 |
$item->{'paidfor'}, |
| 2194 |
$item->{'location'}, |
2197 |
$item->{'location'}, |
| 2195 |
- |
|
|