-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.sql
More file actions
55 lines (40 loc) · 1.9 KB
/
screen.sql
File metadata and controls
55 lines (40 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use ETORN;
CREATE TABLE template(
id INT(6) UNSIGNED PRIMARY KEY,
name VARCHAR(50) NOT NULL,
layout TEXT
);
CREATE TABLE section (
id INT(6) UNSIGNED PRIMARY KEY,
id_store int(11)
);
INSERT INTO section (id,id_store)
VALUES ('1','4'),('2','1'),('3','3'),('4','2'),('5','2');
INSERT INTO section (id,id_store)
VALUES ('6','4'),('7','1'),('8','3'),('9','2'),('10','2'),('11','4'),('12','1'),('13','3');
INSERT INTO template (id,name,layout)
VALUES ('1','plantilla1','{"name":"pantalla1","cols": [{"width": 12,"rows": [{"id": 1 },{ "cols": [ { "width": 6,"id": 2 },{ "width": 6,"rows": [ { "id": 3 },{ "id": 4 } ] } ] },{ "id": 5 }] } ]}');
CREATE TABLE turnScreen(
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
layout TEXT
);
INSERT INTO turnScreen (name,layout)
VALUES ('pantalla1','{"name":"plantilla2","cols":[{"width":12,"rows":[{"id":6},{"id":7},{"cols":[{"width":6,"id":8},{"width":6,"id":9}]}]}]}');
CREATE TABLE LAYOUTS (
ID INTEGER PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(50) NOT NULL,
DESCRIPTION VARCHAR(50) NOT NULL DEFAULT "",
LAYOUT TEXT NOT NULL,
TYPE VARCHAR(15) NOT NULL
);
INSERT INTO LAYOUTS (NAME,LAYOUT,TYPE)
VALUES
('Pantalla2','{"height":"100","cols":[{"width":12,"height":"100","rows":[{"height":"100","cols":[{"height":"100","width":6,"id":1},{"height":"100","width":6,"rows":[{"height":"50","width":6,"id":1},{"height":"50","width":6,"id":1}]}]}]}]}','TEMPLATE'),
('Pantalla3','{"height":"100","cols":[{"width":12,"height":"100","rows":[{"height":"100","cols":[{"height":"100","width":6,"id":1},{"height":"100","width":6,"id":1}]}]}]}','TEMPLATE'),
('Pantalla4','{"height":"100","cols":[{"width":12,"height":"100","rows":[{"height":"50","width":6,"id":1},{"height":"50","cols":[{"height":"100","width":6,"id":1},{"height":"100","width":6,"id":1}]}]}]}','TEMPLATE');
/*
('Pantalla2','','TEMPLATE');
('TurnScreen','','TURN');
('TotemScreen','','TOTEM');
*/