|
Lines 22-4030
kohafield, tab, authorised_value, authtypecode, value_builder, isurl, hidden, fr
Link Here
|
| 22 |
-- **************************************************************************** |
22 |
-- **************************************************************************** |
| 23 |
-- SIMPLE COMPUTER FILES KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. |
23 |
-- SIMPLE COMPUTER FILES KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. |
| 24 |
-- **************************************************************************** |
24 |
-- **************************************************************************** |
| 25 |
|
|
|
| 26 |
|
| 27 |
|
| 28 |
-- Current Record ID Field/Subfields |
| 29 |
|
| 30 |
|
| 31 |
INSERT INTO `marc_tag_structure` (`tagfield`, `liblibrarian`, `libopac`, `repeatable`, `mandatory`, `authorised_value`, `frameworkcode`) VALUES |
| 32 |
('999', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'CF'); |
| 33 |
|
| 34 |
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 |
| 35 |
('999', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'CF', '', '', NULL), |
| 36 |
('999', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'CF', '', '', NULL), |
| 37 |
('999', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'CF', '', '', NULL), |
| 38 |
('999', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'CF', '', '', NULL); |
| 39 |
|
| 40 |
|
| 41 |
-- ****************************************************** |
| 42 |
|
| 43 |
|
| 44 |
-- Plugins which need to be written for primary biblioitems Field/Subfields. |
| 45 |
|
| 46 |
|