View | Details | Raw Unified | Return to bug 24584
Collapse All | Expand All

(-)a/installer/data/mysql/en/optional/sample_itemtypes.sql (-9 lines)
Lines 1-9 Link Here
1
INSERT INTO itemtypes (itemtype, description, rentalcharge, notforloan, imageurl, summary) VALUES
2
('BK', 'Books',0,0,'bridge/book.gif',''),
3
('MX', 'Mixed Materials',5,0,'bridge/kit.gif',''),
4
('CF', 'Computer Files',5,0,'bridge/computer_file.gif',''),
5
('MP', 'Maps',5,0,'bridge/map.gif',''),
6
('VM', 'Visual Materials',5,1,'bridge/dvd.gif',''),
7
('MU', 'Music',5,0,'bridge/sound.gif',''),
8
('CR', 'Continuing Resources',5,0,'bridge/periodical.gif',''),
9
('REF', 'Reference',0,1,'bridge/reference.gif','');
(-)a/installer/data/mysql/en/optional/sample_itemtypes.txt (-1 lines)
Line 1 Link Here
1
A set of default item types.
(-)a/installer/data/mysql/en/optional/sample_itemtypes.yml (-1 / +83 lines)
Line 0 Link Here
0
- 
1
---
2
#
3
#  Copyright 2020 Koha Development Team
4
#
5
#  This file is part of Koha.
6
#
7
#  Koha is free software; you can redistribute it and/or modify it under the
8
#  terms of the GNU General Public License as published by the Free Software
9
#  Foundation; either version 2 of the License, or (at your option) any later
10
#  version.
11
#
12
#  Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
#  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
#  A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
#  You should have received a copy of the GNU General Public License along
17
#  with Koha; if not, write to the Free Software Foundation, Inc.,
18
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
#
20
21
description:
22
  - "A set of default item types."
23
24
tables:
25
  - itemtypes:
26
      translatable: [ description ]
27
      multiline: []
28
      rows:
29
        - itemtype: BK
30
          description: "Books"
31
          rentalcharge: 0
32
          notforloan: 0
33
          imageurl: "bridge/book.gif"
34
          summary: ""
35
36
        - itemtype: MX
37
          description: "Mixed Materials"
38
          rentalcharge: 5
39
          notforloan: 0
40
          imageurl: "bridge/kit.gif"
41
          summary: ""
42
43
        - itemtype: CF
44
          description: "Computer Files"
45
          rentalcharge: 5
46
          notforloan: 0
47
          imageurl: "bridge/computer_file.gif"
48
          summary: ""
49
50
        - itemtype: MP
51
          description: "Maps"
52
          rentalcharge: 5
53
          notforloan: 0
54
          imageurl: "bridge/map.gif"
55
          summary: ""
56
57
        - itemtype: VM
58
          description: "Visual Materials"
59
          rentalcharge: 5
60
          notforloan: 1
61
          imageurl: "bridge/dvd.gif"
62
          summary: ""
63
64
        - itemtype: MU
65
          description: "Music"
66
          rentalcharge: 5
67
          notforloan: 0
68
          imageurl: "bridge/sound.gif"
69
          summary: ""
70
71
        - itemtype: CR
72
          description: "Continuing Resources"
73
          rentalcharge: 5
74
          notforloan: 0
75
          imageurl: "bridge/periodical.gif"
76
          summary: ""
77
78
        - itemtype: REF
79
          description: "Reference"
80
          rentalcharge: 0
81
          notforloan: 1
82
          imageurl: "bridge/reference.gif"
83
          summary: ""

Return to bug 24584