From c1b54dfa93c881c759259b42169bb7afcb7b8785 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 Signed-off-by: Tomas Cohen Arazi --- C4/Items.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/C4/Items.pm b/C4/Items.pm index 4506b26f02..11ff4ca96f 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -468,6 +468,7 @@ sub _build_default_values_for_mod_marc { itemcallnumber => undef, itemlost => 0, itemnotes => undef, + itemnotes_nonpublic => undef, itype => undef, location => undef, permanent_location => undef, @@ -2140,6 +2141,7 @@ sub _koha_new_item { coded_location_qualifier = ?, restricted = ?, itemnotes = ?, + itemnotes_nonpublic = ?, holdingbranch = ?, paidfor = ?, location = ?, @@ -2182,6 +2184,7 @@ sub _koha_new_item { $item->{'coded_location_qualifier'}, $item->{'restricted'}, $item->{'itemnotes'}, + $item->{'itemnotes_nonpublic'}, $item->{'holdingbranch'}, $item->{'paidfor'}, $item->{'location'}, -- 2.39.2