]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/tests/datasets/sql/libraries.sql
fb6cdd10e28b9f0f8351306a35d20780339caa09
[working/Evergreen.git] / Open-ILS / tests / datasets / sql / libraries.sql
1 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
2     (2, 1, 2, 'SYS1', oils_i18n_gettext(2, 'Example System 1', 'aou', 'name'));
3 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
4     (3, 1, 2, 'SYS2', oils_i18n_gettext(3, 'Example System 2', 'aou', 'name'));
5 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
6     (4, 2, 3, 'BR1', oils_i18n_gettext(4, 'Example Branch 1', 'aou', 'name'));
7 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
8     (5, 2, 3, 'BR2', oils_i18n_gettext(5, 'Example Branch 2', 'aou', 'name'));
9 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
10     (6, 3, 3, 'BR3', oils_i18n_gettext(6, 'Example Branch 3', 'aou', 'name'));
11 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
12     (7, 3, 3, 'BR4', oils_i18n_gettext(7, 'Example Branch 4', 'aou', 'name'));
13 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
14     (8, 4, 4, 'SL1', oils_i18n_gettext(8, 'Example Sub-library 1', 'aou', 'name'));
15 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
16     (9, 6, 5, 'BM1', oils_i18n_gettext(9, 'Example Bookmobile 1', 'aou', 'name'));
17
18 -- Address for the Consortium
19 SELECT evergreen.create_aou_address(1, '123 Main St.', NULL, 'Anywhere', 'GA', 'US', '30303', NULL);
20
21 -- Addresses for System 1
22 SELECT evergreen.create_aou_address(2, '234 Side St.', NULL, 'Anywhere', 'GA', 'US', '30304', NULL);
23
24 -- Addresses for System 2
25 SELECT evergreen.create_aou_address(3, '345 Corner Crescent', NULL, 'Elsewhere', 'GA', 'US', '30335', NULL);
26
27 -- Addresses for Branch 1
28 SELECT evergreen.create_aou_address(4, 'BR1', '123 Main St.', 'Anywhere', 'GA', 'US', '30303', 'billing mailing');
29 SELECT evergreen.create_aou_address(4, 'Holds and ILL', '125 Main St.', 'Anywhere', 'GA', 'US', '30303', 'interlibrary holds');
30
31 -- Addresses for Branch 2
32 SELECT evergreen.create_aou_address(5, 'BR2', '234 Side St.', 'Anywhere', 'GA', 'US', '30304', 'mailing');
33 SELECT evergreen.create_aou_address(5, 'BR2 - Billing', '234 Side St.', 'Anywhere', 'GA', 'US', '30304', 'billing');
34 SELECT evergreen.create_aou_address(5, 'BR2 - Holds and ILL', '234 Side St.', 'Anywhere', 'GA', 'US', '30304', 'interlibrary holds');
35
36 -- Addresses for Branch 3
37 SELECT evergreen.create_aou_address(6, 'BR3', '347 Corner Crescent', 'Elsewhere', 'GA', 'US', '30335', NULL);
38
39 -- Addresses for Branch 4
40 SELECT evergreen.create_aou_address(7, 'BR4', '446 Nowhere Road', 'Elsewhere', 'GA', 'US', '30404', 'mailing');
41 SELECT evergreen.create_aou_address(7, 'BR4 - Billing Dept', '446 Nowhere Road', 'Elsewhere', 'GA', 'US', '30404', 'billing');
42 SELECT evergreen.create_aou_address(7, 'BR4 - Holds and ILL', '756 Industrial Lane', 'Elsewhere', 'GA', 'US', '30304', 'interlibrary holds');
43
44 -- Hours for branches
45 INSERT INTO actor.hours_of_operation (id, dow_0_open, dow_0_close, dow_1_open, dow_1_close,
46     dow_2_open, dow_2_close, dow_3_open, dow_3_close, dow_4_open, dow_4_close,
47     dow_5_open, dow_5_close, dow_6_open, dow_6_close) VALUES
48 -- BR1 - accept defaults of 09:00 - 17:00 for each day
49     (4, '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00'),
50 -- BR2 - accept defaults of 09:00 - 17:00 for some days
51     (5, '08:30', '21:30', '09:30', '14:30', '10:00', '21:30', '08:30', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00'),
52 -- BR3 - accept defaults of 09:00 - 17:00 for some days
53     (6, '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '09:00', '23:30', '13:00', '23:30', '09:00', '23:30'),
54 -- BR4 - closed on weekends (convention is 00:00 - 00:00)
55     (7, '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '09:00', '23:30', '00:00', '00:00', '00:00', '00:00');
56
57 -- Set some information URLs for library branches
58 INSERT INTO actor.org_unit_setting(org_unit, name, value) VALUES
59     (4, 'lib.info_url', '"http://example.com/BR1"'), -- BR1
60     (5, 'lib.info_url', '"http://example.com/BR2"'), -- BR2
61     (6, 'lib.info_url', '"http://br3.example.com"'), -- BR3
62     (7, 'lib.info_url', '"http://br4.example.com/info"'); -- BR4
63
64
65 UPDATE actor.org_unit SET email = 'br1@example.com', phone = '(555) 555-0271' WHERE shortname = 'BR1';
66 UPDATE actor.org_unit SET email = 'br2@example.com', phone = '(555) 555-0272' WHERE shortname = 'BR2';
67 UPDATE actor.org_unit SET email = 'br3@example.com', phone = '(555) 555-0273' WHERE shortname = 'BR3';
68 UPDATE actor.org_unit SET email = 'br4@example.com', phone = '(555) 555-0274' WHERE shortname = 'BR4';