@@ -, +, @@ --- C4/Items.pm | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) --- a/C4/Items.pm +++ a/C4/Items.pm @@ -466,6 +466,7 @@ sub _build_default_values_for_mod_marc { itemcallnumber => undef, itemlost => 0, itemnotes => undef, + itemnotes_nonpublic => undef, itype => undef, location => undef, permanent_location => undef, @@ -2147,6 +2148,7 @@ sub _koha_new_item { coded_location_qualifier = ?, restricted = ?, itemnotes = ?, + itemnotes_nonpublic = ?, holdingbranch = ?, paidfor = ?, location = ?, @@ -2189,6 +2191,7 @@ sub _koha_new_item { $item->{'coded_location_qualifier'}, $item->{'restricted'}, $item->{'itemnotes'}, + $item->{'itemnotes_nonpublic'}, $item->{'holdingbranch'}, $item->{'paidfor'}, $item->{'location'}, --