From aff9ca577b095956128b401412a7ac97bd4c5332 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 29 Jan 2015 11:22:45 -0500 Subject: [PATCH] Bug 13023 [QA Followup] - Use db column for storage on item creation --- C4/Items.pm | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/C4/Items.pm b/C4/Items.pm index 33143a5..36a2f92 100644 --- a/C4/Items.pm +++ b/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'}, -- 1.7.2.5