Line 0
Link Here
|
|
|
1 |
-- |
2 |
-- Default classification sources and filing rules |
3 |
-- for Koha. |
4 |
-- |
5 |
-- Copyright (C) 2011 Magnus Enger Libriotech |
6 |
-- |
7 |
-- This file is part of Koha. |
8 |
-- |
9 |
-- Koha is free software; you can redistribute it and/or modify it |
10 |
-- under the terms of the GNU General Public License as published by |
11 |
-- the Free Software Foundation; either version 3 of the License, or |
12 |
-- (at your option) any later version. |
13 |
-- |
14 |
-- Koha is distributed in the hope that it will be useful, but |
15 |
-- WITHOUT ANY WARRANTY; without even the implied warranty of |
16 |
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 |
-- GNU General Public License for more details. |
18 |
-- |
19 |
-- You should have received a copy of the GNU General Public License |
20 |
-- along with Koha; if not, see <http://www.gnu.org/licenses>. |
21 |
|
22 |
INSERT INTO `categories` (`categorycode`, `description`, `enrolmentperiod`, `upperagelimit`, `dateofbirthrequired`, `finetype`, `bulk`, `enrolmentfee`, `overduenoticerequired`, `issuelimit`, `reservefee`, `category_type`, `canbeguarantee`) VALUES |
23 |
|
24 |
-- Adult Patrons |
25 |
('PT','Låner',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','A',0), |
26 |
('ST','Student',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','A',0), |
27 |
('HB','Hjemmelåner',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','A',0), |
28 |
|
29 |
-- Children |
30 |
('K','Barn',99,17,5,NULL,NULL,'0.000000',1,NULL,'0.000000','C',1), |
31 |
('J','Ungdom',99,17,5,NULL,NULL,'0.000000',1,NULL,'0.000000','C',1), |
32 |
('YA','Ung voksen',99,17,5,NULL,NULL,'0.000000',1,NULL,'0.000000','C',1), |
33 |
|
34 |
-- Professionals |
35 |
('T','Lærer',99,999,18,NULL,NULL,'0.000000',0,NULL,'0.000000','P',1), |
36 |
('B','Styremedlem',99,17,5,NULL,NULL,'0.000000',1,NULL,'0.000000','P',1), |
37 |
|
38 |
-- Institutional |
39 |
('IL','Fjernlån',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','I',0), |
40 |
('SC','Skole',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','I',0), |
41 |
('L','Bibliotek',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','I',0), |
42 |
|
43 |
-- Staff |
44 |
('S','Bibliotekansatt',99,999,18,NULL,NULL,'0.000000',0,NULL,'0.000000','S',0); |