Lines 70-4078
kohafield, tab, authorised_value, authtypecode, value_builder, isurl, hidden, fr
Link Here
|
70 |
WHERE frameworkcode = ''; |
70 |
WHERE frameworkcode = ''; |
71 |
|
71 |
|
72 |
|
72 |
|
73 |
-- ******************************************************* |
|
|
74 |
|
75 |
|
76 |
-- ************************************************************************** |
77 |
-- SIMPLE 3D ARTIFACTS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. |
78 |
-- ************************************************************************** |
79 |
|
80 |
|
81 |
-- Current Record ID Field/Subfields |
82 |
|
83 |
|
84 |
INSERT INTO `marc_tag_structure` (`tagfield`, `liblibrarian`, `libopac`, `repeatable`, `mandatory`, `authorised_value`, `frameworkcode`) VALUES |
85 |
('999', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'AR'); |
86 |
|
87 |
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`, `libopac`, `repeatable`, `mandatory`, `kohafield`, `tab`, `authorised_value`, `authtypecode`, `value_builder`, `isurl`, `hidden`, `frameworkcode`, `seealso`, `link`, `defaultvalue`) VALUES |
88 |
('999', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'AR', '', '', NULL), |
89 |
('999', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'AR', '', '', NULL), |
90 |
('999', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'AR', '', '', NULL), |
91 |
('999', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'AR', '', '', NULL); |
92 |
|
93 |
|
94 |
-- ****************************************************** |
95 |
|
96 |
|
97 |
-- Plugins which need to be written for primary biblioitems Field/Subfields. |
98 |
|
99 |
|