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

(-)a/installer/data/mysql/en/mandatory/auth_values.sql (-6 lines)
Lines 1-6 Link Here
1
INSERT INTO authorised_values (category,authorised_value,lib,lib_opac) VALUES ('YES_NO','0','No','No');
2
INSERT INTO authorised_values (category,authorised_value,lib,lib_opac) VALUES ('YES_NO','1','Yes','Yes');
3
INSERT INTO authorised_values (category,authorised_value,lib,lib_opac) VALUES ('PAYMENT_TYPE','SIP00','Cash via SIP2','Cash');
4
INSERT INTO authorised_values (category,authorised_value,lib,lib_opac) VALUES ('PAYMENT_TYPE','SIP01','Visa via SIP2','Visa');
5
INSERT INTO authorised_values (category,authorised_value,lib,lib_opac) VALUES ('PAYMENT_TYPE','SIP02','Creditcard via SIP2','Creditcard');
6
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('HSBND_FREQ','EW','Every week');
(-)a/installer/data/mysql/en/mandatory/auth_values.txt (-1 lines)
Line 1 Link Here
1
Default Koha system authorised values
(-)a/installer/data/mysql/en/mandatory/auth_values.yml (-1 / +60 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
  - "Default Koha system authorised values"
23
24
tables:
25
  - authorised_values:
26
      translatable: [ lib, lib_opac ]
27
      multiline: []
28
      rows:
29
        - category: "YES_NO"
30
          authorised_value: "0"
31
          lib: "No"
32
          lib_opac: "No"
33
34
        - category: "YES_NO"
35
          authorised_value: "1"
36
          lib: "Yes"
37
          lib_opac: "Yes"
38
39
        - category: "PAYMENT_TYPE"
40
          authorised_value: "SIP00"
41
          lib: "Cash via SIP2"
42
          lib_opac: "Cash"
43
44
        - category: "PAYMENT_TYPE"
45
          authorised_value: "SIP01"
46
          lib: "Visa via SIP2"
47
          lib_opac: "Visa"
48
49
        - category: "PAYMENT_TYPE"
50
          authorised_value: "SIP02"
51
          lib: "Creditcard via SIP2"
52
          lib_opac: "Creditcard"
53
54
  - authorised_values:
55
      translatable: [ lib ]
56
      multiline: []
57
      rows:
58
        - category: "HSBND_FREQ"
59
          authorised_value: "EW"
60
          lib: "Every week"

Return to bug 24583