From f38989087a8acc944597ea3d70bedc7923e0c52a Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 4 Dec 2007 11:28:27 -0600 Subject: [PATCH] bib_profile web svc: report biblioitems.itemtype subfield as non-mandatory Per discussion with Chris Catalfo, biblios will optionally supply this subfield (942$c) but is not required to do so, as Koha automatically creates the biblioitem anyway. Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- svc/bib_profile | 1 + 1 file changed, 1 insertion(+) diff --git a/svc/bib_profile b/svc/bib_profile index 41ea042047..274a634323 100755 --- a/svc/bib_profile +++ b/svc/bib_profile @@ -70,6 +70,7 @@ sub _get_mandatory_subfields { FROM marc_subfield_structure WHERE frameworkcode = '' AND tagsubfield <> '\@' + AND kohafield <> 'biblioitems.itemtype' AND mandatory = 1"); $sth->execute(); my @subfields = (); -- 2.20.1