|
Lines 104-4112
kohafield, tab, authorised_value, authtypecode, value_builder, isurl, hidden, fr
Link Here
|
| 104 |
WHERE frameworkcode = ''; |
104 |
WHERE frameworkcode = ''; |
| 105 |
|
105 |
|
| 106 |
|
106 |
|
| 107 |
-- ****************************************************** |
|
|
| 108 |
|
| 109 |
|
| 110 |
-- ***************************************************************** |
| 111 |
-- SIMPLE INTEGRATING RESOURCES KOHA RECORD AND HOLDINGS MANAGEMENT |
| 112 |
-- FIELDS/SUBFIELDS. |
| 113 |
-- ***************************************************************** |
| 114 |
|
| 115 |
|
| 116 |
-- Current Record ID Field/Subfields |
| 117 |
|
| 118 |
|
| 119 |
INSERT INTO `marc_tag_structure` (`tagfield`, `liblibrarian`, `libopac`, `repeatable`, `mandatory`, `authorised_value`, `frameworkcode`) VALUES |
| 120 |
('999', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'IR'); |
| 121 |
|
| 122 |
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 |
| 123 |
('999', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'IR', '', '', NULL), |
| 124 |
('999', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'IR', '', '', NULL), |
| 125 |
('999', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'IR', '', '', NULL), |
| 126 |
('999', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'IR', '', '', NULL); |
| 127 |
|
| 128 |
|
| 129 |
-- ****************************************************** |
| 130 |
|
| 131 |
|
| 132 |
-- Plugins which need to be written for primary biblioitems Field/Subfields. |
| 133 |
|
| 134 |
|