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

(-)a/installer/data/mysql/en/optional/parameters.sql (-5 lines)
Lines 1-5 Link Here
1
INSERT INTO `currency` (currency, rate, symbol, active) VALUES
2
('USD', 1.0, '$', '1'),
3
('GBP', 1.9929, '£', '0'),
4
('CAD', 1.02207, '$', '0'),
5
('EUR', .874003, '€', '0');
(-)a/installer/data/mysql/en/optional/parameters.txt (-1 lines)
Line 1 Link Here
1
Some basic currencies with USA dollar as default for ACQ module
(-)a/installer/data/mysql/en/optional/parameters.yml (-1 / +47 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
  - "Some basic currencies with USA dollar as default for ACQ module"
23
24
tables:
25
  - currency:
26
      translatable: [ ]
27
      multiline: []
28
      rows:
29
        - currency: "USD"
30
          rate: 1.0
31
          symbol: "$"
32
          active: 1
33
34
        - currency: "GBP"
35
          rate: 1.9929
36
          symbol: "£"
37
          active: 0
38
39
        - currency: "CAD"
40
          rate: 1.02207
41
          symbol: "$"
42
          active: 0
43
44
        - currency: "EUR"
45
          rate: .874003
46
          symbol: "€"
47
          active: 0

Return to bug 24584