From b199a5769bd501315f84a642e590dc2104cea1c7 Mon Sep 17 00:00:00 2001 From: "kilian (dks-laptop)" Date: Sun, 15 Dec 2019 10:28:33 +0100 Subject: [PATCH] database fulla and schema splitted --- dev/db/dumpcompanyschema.sh | 20 + dev/db/dumppg.sh | 12 + dev/db/potlu_db.pg.data.sql | 1829 +++++++++ dev/db/potlu_db.pg.full.sql | 4565 +++++++++++++++++++++++ dev/db/potlu_db.pg.schema.sql | 2554 +++++++++++++ dev/db/potlu_db.portanova.pg.data.sql | 1641 ++++++++ dev/db/potlu_db.portanova.pg.full.sql | 3319 ++++++++++++++++ dev/db/potlu_db.portanova.pg.schema.sql | 1604 ++++++++ dev/db/potlu_db.public.pg.data.sql | 165 + dev/db/potlu_db.public.pg.full.sql | 1067 ++++++ dev/db/potlu_db.public.pg.schema.sql | 834 +++++ 11 files changed, 17610 insertions(+) create mode 100644 dev/db/dumpcompanyschema.sh create mode 100644 dev/db/dumppg.sh create mode 100644 dev/db/potlu_db.pg.data.sql create mode 100644 dev/db/potlu_db.pg.full.sql create mode 100644 dev/db/potlu_db.pg.schema.sql create mode 100644 dev/db/potlu_db.portanova.pg.data.sql create mode 100644 dev/db/potlu_db.portanova.pg.full.sql create mode 100644 dev/db/potlu_db.portanova.pg.schema.sql create mode 100644 dev/db/potlu_db.public.pg.data.sql create mode 100644 dev/db/potlu_db.public.pg.full.sql create mode 100644 dev/db/potlu_db.public.pg.schema.sql diff --git a/dev/db/dumpcompanyschema.sh b/dev/db/dumpcompanyschema.sh new file mode 100644 index 00000000..964f34fd --- /dev/null +++ b/dev/db/dumpcompanyschema.sh @@ -0,0 +1,20 @@ +#!/bin/bash +CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +DBHOST="localhost" +DBNAME="potlu_db" +DBUSER="potlu_user" +#export PGPASSWORD="r2btTTRfuJz4whez" +#echo ${CALLDIR} +if [[ $# -eq 0 ]] +then + echo "No args" + exit 0 +fi +echo "export ${DBHOST} ${DBNAME} ${DBSCHEMA}" +export PGPASSWORD="r2btTTRfuJz4whez" +DBSCHEMA=$1 +pg_dump -h ${DBHOST} -U ${DBUSER} -n ${DBSCHEMA} -w ${DBNAME} > ${CALLDIR}'/'${DBNAME}'.'${DBSCHEMA}'.pg.full.sql' +pg_dump -h ${DBHOST} -U ${DBUSER} -n ${DBSCHEMA} -w -O -x -s ${DBNAME} > ${CALLDIR}'/'${DBNAME}'.'${DBSCHEMA}'.pg.schema.sql' +pg_dump -h ${DBHOST} -U ${DBUSER} -n ${DBSCHEMA} -w --column-inserts -O -x -a ${DBNAME} > ${CALLDIR}'/'${DBNAME}'.'${DBSCHEMA}'.pg.data.sql' +export PGPASSWORD="" + diff --git a/dev/db/dumppg.sh b/dev/db/dumppg.sh new file mode 100644 index 00000000..f9d0c184 --- /dev/null +++ b/dev/db/dumppg.sh @@ -0,0 +1,12 @@ +#!/bin/bash +CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +DBHOST="localhost" +DBNAME="potlu_db" +DBUSER="potlu_user" +export PGPASSWORD="r2btTTRfuJz4whez" +echo ${CALLDIR} + +pg_dump -h ${DBHOST} -U ${DBUSER} -w ${DBNAME} > ${CALLDIR}'/'${DBNAME}'.pg.full.sql' +pg_dump -h ${DBHOST} -U ${DBUSER} -w -O -x -s ${DBNAME} > ${CALLDIR}'/'${DBNAME}'.pg.schema.sql' +pg_dump -h ${DBHOST} -U ${DBUSER} -w --column-inserts -O -x -a ${DBNAME} > ${CALLDIR}'/'${DBNAME}'.pg.data.sql' +export PGPASSWORD="" diff --git a/dev/db/potlu_db.pg.data.sql b/dev/db/potlu_db.pg.data.sql new file mode 100644 index 00000000..3fd4ff07 --- /dev/null +++ b/dev/db/potlu_db.pg.data.sql @@ -0,0 +1,1829 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: demo; Owner: - +-- + +INSERT INTO demo.staff (id, staffident, surname, prename, pincde, fingerprint, stations, id_user) VALUES (1, NULL, 'Saffran', 'Kilian', NULL, NULL, NULL, NULL); + + +-- +-- Data for Name: stations; Type: TABLE DATA; Schema: demo; Owner: - +-- + + + +-- +-- Data for Name: timetrackuser; Type: TABLE DATA; Schema: demo; Owner: - +-- + +INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (1, 1, '2019-10-01 08:05:00', '2019-10-01 17:07:00'); +INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (3, 1, '2019-10-03 14:01:00', '2019-10-03 17:11:00'); +INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (4, 1, '2019-10-03 08:05:00', '2019-10-03 12:07:00'); +INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (2, 1, '2019-10-02 08:06:00', '2019-10-02 16:05:00'); +INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (5, 1, '2019-10-04 17:05:00', '2019-10-05 01:04:00'); + + +-- +-- Data for Name: defaultweekworkplan; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: defaultworkplan; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (1, 'Période 1 2020', '2019-12-30', '2020-02-23'); + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (1, 'A100', 'NISTRI', 'ANGELA', 'serveuse', '1987-03-27', '2015-06-22', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (4, 'A101', 'JOURDAN', 'JOSIAN', 'serveuse', '1981-01-29', '2015-04-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (5, 'A102', 'ARENGA', 'TERESA', 'serveuse', '1981-06-15', '2015-03-10', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (6, 'A103', 'BARROSO', 'MARIA', 'serveuse', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (7, 'A104', 'STIPA', 'CRISTIAN', 'serveur', '1975-08-08', '2015-11-09', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (15, '5558', 'DEDJA', 'CLAIDIO', 'Barman', '1994-02-24', '2014-11-15', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (16, '7595', 'PUGLIESE', 'GIUSEPPE', 'serveur/Barman', '1995-11-05', '2015-10-08', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (8, 'A105', 'LIBERTI', 'RICCARDO', 'serveur', '1990-06-19', '2016-02-13', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (11, 'A106', 'ARMOCIDA', 'Domenico', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (12, 'A107', 'MORTASSI', 'KARIM', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (13, 'A108', 'IRIA', 'FABIO', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (14, 'A109', 'SERGIO', 'SERGIO', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (18, 'A200', NULL, NULL, 'Barman', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (20, 'A110', 'QUATTRONE', 'DEMETRIO', 'Cuisinier', '1950-06-27', '2015-12-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (24, 'A111', 'RAMOS DA SILVA', 'JOHNY', 'cuisinier', '1966-08-25', '2005-05-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (25, 'A112', 'VICINI', 'DAVIDE', NULL, NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (26, 'A113', 'LAMA', 'ANGELO', 'commis de cuisine', '1992-11-20', '2008-07-10', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (30, 'A114', 'ILIC', 'JULIEN', 'apprenti', '1995-04-22', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (31, 'A115', 'SOMNEZ', 'TUNAHAN', NULL, NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (36, 'A117', 'DA LUZ', 'CANDIDA', 'plongeus', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (37, 'A118', 'CRISCIONE', 'EMANUELE', 'resp. de réception', '1981-09-18', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (41, 'A119', 'SONMEZ', 'TUNAHAN', 'apprenti', '1998-06-15', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (42, 'A120', 'IRIA', 'SILVA FABIO', 'apprenti', '1988-06-29', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (43, 'A121', 'MULLER', 'RICA', 'secrétaire de direction', '1966-12-02', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (44, 'A122', 'BRUCCOLERI', 'SARAH', 'attachée de direction', '1984-11-01', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (45, '100', 'PRESTI', 'ADRIANO', 'gérant', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (2, '5020', 'MATIAS', 'RAPHAEL', 'serveur', '1975-01-26', '2005-04-19', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (3, '6600', 'ALIF', 'DIDIER', 'serveur', '1968-04-14', '2007-08-14', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (9, '5502', 'COPPOLA', 'CHRISTIAN', 'serveur', '1990-11-25', '2016-01-18', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (21, '8775', 'ZAKLAN', 'ZORAN', 'cuisinier', '1959-05-25', '2005-01-08', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (22, '5695', 'ELKAOUI', 'MOURAD', 'cuisinier', '1973-02-12', '2014-04-15', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (23, '5503', 'CORONEL', 'SILVINO ROSA', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (27, '7120', 'MELO', 'IVO TIAGO', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (28, '7600', 'PREZZIOSA', 'MATTEO', 'pizzaiolo', '1959-03-26', '2012-10-03', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (29, '5250', 'BOUALI', 'AMAR', 'aide-pâtissier/commis de cuisine', '1980-02-20', '2015-06-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (32, '5480', 'COIMBRA ABRANTES', ' MARIA', 'commis de cuisine', '1969-09-24', '2006-10-23', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (33, '5540', 'DE BRITO', 'Djela', 'commis de cuisine', '1975-01-15', '1995-07-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (34, '7591', 'PEREIRA GOMES', 'ANTONIA', 'plongeuse', '1987-04-29', '1992-03-15', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (35, '5600', 'DOS SANTOS', 'Alcinda', 'plongeuse', '1960-12-26', '2011-07-05', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (38, '7980', 'SCHMITGEN', 'TANUCCIA', 'Hôtesse d''accueil/serveuse', '1964-01-20', '2010-10-04', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (39, '2701', 'KIEFFER-WEILER', 'LILIANNE', 'hôtesse d''accueil', '1958-04-21', '2015-07-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (40, '8725', 'YAKOBSON', 'YULIYA', 'hôtesse d''accueil', '1974-04-02', '2011-10-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (10, '8501', 'TAVERNA', 'Greta', 'serveuse', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (17, '5280', 'BULAKU', 'ENVER', 'concierge/technicien', '1971-02-08', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (19, '1172', 'BUCHICCHIO', 'DONATO ANTONIO', ' chef cuisinier', '1970-10-23', '2000-01-01', NULL); + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffperiodbase; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (39, 39, '2015-07-01', 64.8750000000000000, 15); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (40, 40, '2011-10-01', 86.5000000000000000, 20); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (11, 11, '2000-01-01', 129.7500000000000000, 30); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (43, 43, '2000-01-01', 129.7500000000000000, 30); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (6, 6, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (10, 10, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (12, 12, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (13, 13, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (14, 14, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (17, 17, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (19, 19, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (25, 25, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (30, 30, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (31, 31, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (36, 36, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (37, 37, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (41, 41, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (42, 42, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (44, 44, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (45, 45, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (1, 1, '2015-06-22', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (2, 2, '2005-04-19', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (3, 3, '2007-08-14', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (4, 4, '2015-04-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (5, 5, '2015-03-10', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (7, 7, '2015-11-09', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (8, 8, '2016-02-13', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (9, 9, '2016-01-18', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (15, 15, '2014-11-15', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (16, 16, '2015-10-08', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (18, 18, '2016-05-30', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (20, 20, '2015-12-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (21, 21, '2005-01-08', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (22, 22, '2014-04-15', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (23, 23, '2013-01-07', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (24, 24, '2005-05-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (26, 26, '2008-07-10', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (27, 27, '2013-01-07', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (28, 28, '2012-10-03', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (29, 29, '2015-06-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (32, 32, '2006-10-23', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (33, 33, '1995-07-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (34, 34, '1992-03-15', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (35, 35, '2011-07-05', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (38, 38, '2010-10-04', 173.0000000000000000, 40); + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1817, 34, '2017-07-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1847, 37, '2017-07-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2405, 20, '2017-06-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1767, 8, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1768, 8, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1769, 8, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1770, 8, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1771, 8, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1772, 8, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1773, 8, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1774, 8, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1775, 8, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1776, 8, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1777, 8, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1778, 8, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1779, 8, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1780, 8, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1781, 8, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1782, 8, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1783, 8, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1784, 8, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1785, 8, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1786, 8, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1787, 8, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1788, 8, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1789, 8, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1790, 8, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1791, 8, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1792, 8, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1793, 8, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1794, 8, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1795, 8, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1796, 8, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1797, 8, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1798, 8, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1799, 8, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1800, 8, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1801, 8, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1802, 8, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1803, 8, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1804, 8, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1805, 8, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1806, 8, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1807, 8, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1808, 8, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1809, 8, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1810, 8, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1811, 8, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1812, 34, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1813, 34, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1814, 34, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1815, 34, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1816, 34, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1818, 34, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1819, 34, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1820, 34, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1821, 34, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1822, 34, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1823, 34, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1824, 34, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1825, 34, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1826, 34, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1827, 34, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1828, 34, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1829, 34, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1830, 34, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1831, 34, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1832, 34, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1833, 34, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1834, 34, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1835, 34, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1836, 34, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1837, 34, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1838, 34, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1839, 34, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1840, 34, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1841, 34, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1842, 34, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1843, 34, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1844, 34, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1845, 34, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1846, 34, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1848, 37, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1849, 37, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1850, 37, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1851, 37, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1852, 37, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1853, 36, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1854, 36, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1855, 36, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1856, 36, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1857, 36, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1858, 36, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1859, 36, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1860, 36, '2017-06-05', '11:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1861, 36, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1862, 36, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1863, 36, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1864, 36, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1865, 36, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1866, 36, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1867, 36, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1868, 36, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1869, 36, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1870, 36, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1871, 36, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1872, 36, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1873, 36, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1874, 36, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1875, 36, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1876, 36, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1877, 36, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1878, 36, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1879, 36, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1880, 36, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1881, 36, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1882, 36, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1883, 36, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1884, 36, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1885, 36, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1886, 36, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1887, 25, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1888, 25, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1889, 25, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1890, 25, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1891, 25, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1892, 25, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1893, 25, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1894, 25, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1895, 25, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1896, 25, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1897, 25, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1898, 25, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1899, 25, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1900, 25, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1901, 25, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1902, 25, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1903, 25, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1904, 25, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1905, 25, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1906, 25, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1907, 25, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1908, 25, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1909, 25, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1910, 25, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1911, 25, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1912, 25, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1913, 25, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1914, 25, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1915, 25, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1916, 25, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1917, 25, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1918, 25, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1919, 25, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1920, 33, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1921, 33, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1922, 33, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1923, 33, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1924, 33, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1925, 33, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1926, 33, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1927, 33, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1928, 33, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1929, 33, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1930, 33, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1931, 33, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1932, 33, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1933, 33, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1934, 33, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1935, 33, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1936, 33, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1937, 33, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1938, 33, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1939, 33, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1940, 33, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1941, 33, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1942, 33, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1943, 33, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1944, 33, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1945, 33, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1946, 33, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1947, 33, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1948, 33, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1949, 33, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1950, 33, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1951, 33, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1952, 33, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1953, 33, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1954, 33, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1955, 33, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1956, 33, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1957, 33, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1958, 33, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1959, 33, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1960, 33, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1961, 33, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1962, 33, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1963, 11, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1964, 11, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1965, 11, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1966, 11, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1967, 11, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1968, 11, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1969, 11, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1970, 11, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1971, 11, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1972, 11, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1973, 11, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1974, 11, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1975, 11, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1976, 11, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1977, 11, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1978, 11, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1979, 11, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1980, 11, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1981, 11, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1982, 11, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1983, 11, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1984, 11, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1985, 11, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1986, 11, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1987, 11, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1988, 11, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1989, 11, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1990, 11, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1991, 11, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1992, 11, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1993, 11, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1994, 11, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1995, 11, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1996, 11, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1997, 11, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1998, 11, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1999, 11, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2000, 11, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2001, 11, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2002, 11, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2003, 11, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2004, 11, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2005, 11, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2006, 29, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2007, 29, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2008, 29, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2009, 29, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2010, 29, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2011, 29, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2012, 29, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2013, 29, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2014, 29, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2015, 29, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2016, 29, '2017-07-06', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2017, 29, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2018, 29, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2019, 29, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2020, 29, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2021, 29, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2022, 29, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2023, 29, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2024, 29, '2017-07-07', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2025, 29, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2026, 29, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2027, 29, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2028, 29, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2029, 29, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2030, 29, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2031, 29, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2032, 29, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2033, 29, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2034, 29, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2035, 29, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2036, 29, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2037, 29, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2038, 29, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2039, 29, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2040, 29, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2041, 29, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2042, 29, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2043, 29, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2044, 29, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2045, 32, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2046, 32, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2047, 32, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2048, 32, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2049, 32, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2050, 32, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2051, 32, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2052, 32, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2053, 32, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2054, 32, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2055, 32, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2056, 32, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2057, 32, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2058, 32, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2059, 32, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2060, 32, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2061, 32, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2062, 32, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2063, 32, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2064, 32, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2065, 32, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2066, 32, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2067, 32, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2068, 32, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2069, 32, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2070, 32, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2071, 32, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2072, 32, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2073, 15, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2074, 15, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2075, 15, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2076, 15, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2077, 15, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2078, 15, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2079, 15, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2080, 15, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2081, 15, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2082, 15, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2083, 15, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2084, 15, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2085, 15, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2086, 15, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2087, 15, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2088, 15, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2089, 15, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2090, 15, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2091, 15, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2092, 15, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2093, 15, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2094, 15, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2095, 15, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2096, 15, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2097, 15, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2098, 15, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2099, 15, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2100, 15, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2101, 15, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2102, 15, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2103, 15, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2104, 24, '2017-07-12', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2105, 24, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2106, 24, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2107, 24, '2017-07-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2108, 24, '2017-07-16', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2109, 24, '2017-07-31', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2110, 24, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2111, 24, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2112, 24, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2113, 24, '2017-08-03', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2114, 24, '2017-07-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2115, 24, '2017-06-21', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2116, 24, '2017-06-17', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2117, 24, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2118, 24, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2119, 24, '2017-08-01', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2120, 24, '2017-06-29', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2121, 24, '2017-06-28', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2122, 24, '2017-06-16', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2123, 24, '2017-07-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2124, 24, '2017-06-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2125, 24, '2017-06-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2126, 24, '2017-07-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2127, 24, '2017-07-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2128, 24, '2017-08-04', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2129, 24, '2017-08-02', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2130, 24, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2131, 24, '2017-07-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2132, 24, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2133, 24, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2134, 24, '2017-07-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2135, 24, '2017-07-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2136, 24, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2137, 24, '2017-06-18', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2138, 24, '2017-06-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2139, 24, '2017-06-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2140, 24, '2017-06-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2141, 24, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2142, 24, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2143, 24, '2017-06-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2144, 1, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2145, 1, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2146, 1, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2147, 1, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2148, 1, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2149, 1, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2150, 1, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2151, 1, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2152, 1, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2153, 1, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2154, 1, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2155, 1, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2156, 1, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2157, 1, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2158, 1, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2159, 1, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2160, 1, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2161, 1, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2162, 1, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2163, 1, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2164, 1, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2165, 1, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2166, 1, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2167, 1, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2168, 1, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2169, 1, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2170, 1, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2171, 1, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2172, 1, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2173, 1, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2174, 26, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2175, 26, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2176, 26, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2177, 26, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2178, 26, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2179, 26, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2180, 26, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2181, 26, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2182, 26, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2183, 26, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2184, 26, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2185, 26, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2186, 26, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2187, 26, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2188, 26, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2189, 26, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2190, 26, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2191, 26, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2192, 26, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2193, 26, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2194, 26, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2195, 26, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2196, 26, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2197, 26, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2198, 26, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2199, 26, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2200, 26, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2201, 26, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2202, 26, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2203, 26, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2204, 26, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2205, 26, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2206, 26, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2207, 26, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2208, 26, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2209, 26, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2210, 26, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2211, 26, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2212, 30, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2213, 30, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2214, 30, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2215, 30, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2216, 30, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2217, 30, '2017-06-25', '10:30:00', '14:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2218, 30, '2017-07-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2219, 30, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2220, 30, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2221, 30, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2222, 30, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2223, 30, '2017-07-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2224, 30, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2225, 30, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2226, 30, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2227, 30, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2228, 30, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2229, 30, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2230, 30, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2231, 30, '2017-07-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2232, 28, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2233, 28, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2234, 28, '2017-06-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2235, 28, '2017-06-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2236, 28, '2017-06-26', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2237, 28, '2017-06-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2238, 28, '2017-07-27', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2239, 28, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2240, 28, '2017-07-24', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2241, 28, '2017-07-22', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2242, 28, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2243, 28, '2017-07-13', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2244, 28, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2245, 28, '2017-07-26', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2246, 28, '2017-07-19', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2247, 28, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2248, 28, '2017-07-25', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2249, 28, '2017-06-27', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2250, 28, '2017-07-30', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2251, 28, '2017-07-21', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2252, 28, '2017-06-20', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2253, 28, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2254, 28, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2255, 28, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2256, 28, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2257, 28, '2017-06-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2258, 28, '2017-07-15', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2259, 28, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2260, 28, '2017-07-29', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2261, 28, '2017-07-20', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2262, 28, '2017-07-28', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2263, 28, '2017-07-16', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2264, 28, '2017-07-23', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2265, 28, '2017-07-12', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2266, 28, '2017-07-14', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2267, 28, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2268, 19, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2269, 19, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2270, 19, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2271, 19, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2272, 19, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2273, 19, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2274, 19, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2275, 19, '2017-06-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2276, 19, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2277, 19, '2017-06-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2278, 19, '2017-07-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2279, 19, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2280, 19, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2281, 19, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2282, 19, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2283, 19, '2017-06-21', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2284, 19, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2285, 19, '2017-06-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2286, 19, '2017-07-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2287, 19, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2288, 19, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2289, 19, '2017-06-23', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2290, 19, '2017-06-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2291, 19, '2017-06-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2292, 19, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2293, 35, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2294, 35, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2295, 35, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2296, 35, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2297, 35, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2298, 35, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2299, 35, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2300, 35, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2301, 35, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2302, 35, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2303, 35, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2304, 35, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2305, 35, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2306, 35, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2307, 35, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2308, 35, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2309, 35, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2310, 35, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2311, 35, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2312, 35, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2313, 35, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2314, 35, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2315, 35, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2316, 35, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2317, 35, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2318, 35, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2319, 35, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2320, 35, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2321, 35, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2322, 35, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2323, 35, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2324, 35, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2325, 35, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2326, 4, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2327, 4, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2328, 4, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2329, 4, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2330, 4, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2331, 4, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2332, 4, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2333, 4, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2334, 4, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2335, 4, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2336, 4, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2337, 4, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2338, 4, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2339, 4, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2340, 4, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2341, 4, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2342, 4, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2343, 4, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2344, 4, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2345, 4, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2346, 4, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2347, 4, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2348, 4, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2349, 4, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2350, 4, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2351, 4, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2352, 4, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2353, 4, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2354, 4, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2355, 4, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2356, 4, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2357, 4, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2358, 4, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2359, 4, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2360, 4, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2361, 4, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2362, 4, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2363, 4, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2364, 4, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2365, 4, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2366, 4, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2367, 4, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2368, 4, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2369, 4, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2370, 4, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2371, 20, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2372, 20, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2373, 20, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2374, 20, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2375, 20, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2376, 20, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2377, 20, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2378, 20, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2379, 20, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2380, 20, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2381, 20, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2382, 20, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2383, 20, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2384, 20, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2385, 20, '2017-06-14', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2386, 20, '2017-06-15', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2387, 20, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2388, 20, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2389, 20, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2390, 20, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2391, 20, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2392, 20, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2393, 20, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2394, 20, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2395, 20, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2396, 20, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2397, 20, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2398, 20, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2399, 20, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2400, 20, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2401, 20, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2402, 20, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2403, 20, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2404, 20, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2406, 20, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2407, 20, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2408, 20, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2409, 20, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2410, 20, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2411, 20, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2412, 20, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2413, 20, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2414, 20, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2415, 20, '2017-06-16', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2416, 16, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2417, 16, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2418, 16, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2419, 16, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2420, 16, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2421, 16, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2422, 16, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2423, 16, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2424, 16, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2425, 16, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2426, 16, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2427, 16, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2428, 16, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2429, 16, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2430, 16, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2431, 16, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2432, 16, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2433, 16, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2434, 16, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2435, 16, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2436, 16, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2437, 16, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2438, 16, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2439, 16, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2440, 16, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2441, 16, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2442, 16, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2443, 16, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2444, 16, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2445, 16, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2446, 16, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2447, 16, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2448, 16, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2449, 16, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2450, 16, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2451, 16, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2452, 16, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2453, 16, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2454, 16, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2455, 16, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2456, 16, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2457, 16, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2458, 16, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2459, 16, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2460, 16, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2461, 43, '2017-07-11', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2462, 43, '2017-07-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2463, 43, '2017-06-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2464, 43, '2017-06-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2465, 43, '2017-06-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2466, 43, '2017-06-22', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2467, 43, '2017-06-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2468, 43, '2017-07-25', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2469, 43, '2017-07-10', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2470, 43, '2017-08-02', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2471, 43, '2017-08-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2472, 43, '2017-07-18', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2473, 43, '2017-07-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2474, 43, '2017-07-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2475, 43, '2017-07-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2476, 43, '2017-07-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2477, 43, '2017-07-24', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2478, 43, '2017-06-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2479, 43, '2017-06-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2480, 43, '2017-07-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2481, 43, '2017-08-01', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2482, 43, '2017-06-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2483, 43, '2017-06-29', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2484, 43, '2017-06-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2485, 43, '2017-06-16', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2486, 43, '2017-06-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2487, 43, '2017-07-17', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2488, 43, '2017-06-15', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2489, 43, '2017-07-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2490, 43, '2017-07-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2491, 43, '2017-07-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2492, 43, '2017-06-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2493, 43, '2017-07-05', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2494, 43, '2017-07-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2495, 43, '2017-07-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2496, 43, '2017-07-31', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2497, 43, '2017-07-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2498, 43, '2017-07-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2499, 43, '2017-06-30', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2500, 43, '2017-08-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2501, 43, '2017-06-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2502, 17, '2017-06-22', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2503, 17, '2017-06-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2504, 17, '2017-06-09', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2505, 17, '2017-06-08', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2506, 17, '2017-06-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2507, 17, '2017-07-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2508, 17, '2017-07-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2509, 17, '2017-07-10', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2510, 17, '2017-07-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2511, 17, '2017-08-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2512, 17, '2017-06-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2513, 17, '2017-07-17', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2514, 17, '2017-06-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2515, 17, '2017-06-16', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2516, 17, '2017-08-01', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2517, 17, '2017-06-23', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2518, 17, '2017-06-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2519, 17, '2017-06-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2520, 17, '2017-07-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2521, 17, '2017-07-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2522, 17, '2017-07-31', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2523, 17, '2017-07-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2524, 17, '2017-07-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2525, 17, '2017-06-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2526, 17, '2017-07-11', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2527, 17, '2017-07-24', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2528, 17, '2017-07-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2529, 17, '2017-07-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2530, 17, '2017-07-18', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2531, 17, '2017-08-02', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2532, 17, '2017-07-25', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2533, 17, '2017-06-15', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2534, 17, '2017-07-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2535, 17, '2017-06-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2536, 17, '2017-06-29', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2537, 17, '2017-06-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2538, 17, '2017-07-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2539, 17, '2017-06-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2540, 17, '2017-08-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2541, 17, '2017-06-30', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2542, 17, '2017-06-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2543, 17, '2017-07-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2544, 17, '2017-07-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2545, 17, '2017-06-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2546, 17, '2017-07-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2547, 2, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2548, 2, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2549, 2, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2550, 2, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2551, 2, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2552, 2, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2553, 2, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2554, 2, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2555, 2, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2556, 2, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2557, 2, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2558, 2, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2559, 2, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2560, 2, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2561, 2, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2562, 2, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2563, 2, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2564, 2, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2565, 2, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2566, 2, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2567, 2, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2568, 2, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2569, 2, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2570, 2, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2571, 2, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2572, 2, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2573, 2, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2574, 2, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2575, 2, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2576, 2, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2577, 2, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2578, 2, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2579, 2, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2580, 2, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2581, 2, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2582, 2, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2583, 2, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2584, 2, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2585, 2, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2586, 2, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2587, 2, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2588, 2, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2589, 2, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2590, 2, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2591, 2, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2592, 7, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2593, 7, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2594, 7, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2595, 7, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2596, 7, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2597, 7, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2598, 7, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2599, 7, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2600, 7, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2601, 7, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2602, 7, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2603, 7, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2604, 7, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2605, 7, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2606, 7, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2607, 7, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2608, 7, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2609, 7, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2610, 7, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2611, 7, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2612, 7, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2613, 7, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2614, 7, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2615, 7, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2616, 7, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2617, 7, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2618, 7, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2619, 7, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2620, 7, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2621, 7, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2622, 7, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2623, 7, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2624, 7, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2625, 7, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2626, 7, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2627, 7, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2628, 7, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2629, 7, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2630, 7, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2631, 7, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2632, 7, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2633, 7, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2634, 7, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2635, 7, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2636, 7, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2637, 9, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2638, 9, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2639, 9, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2640, 9, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2641, 9, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2642, 9, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2643, 9, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2644, 9, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2645, 9, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2646, 9, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2647, 9, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2648, 9, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2649, 9, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2650, 9, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2651, 9, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2652, 9, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2653, 9, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2654, 9, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2655, 9, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2656, 9, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2657, 9, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2658, 9, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2659, 9, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2660, 9, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2661, 9, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2662, 9, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2663, 9, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2664, 9, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2665, 9, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2666, 9, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2667, 9, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2668, 9, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2669, 9, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2670, 9, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2671, 9, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2672, 9, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2673, 9, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2674, 9, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2675, 9, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2676, 9, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2677, 9, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2678, 9, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2679, 9, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2680, 9, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2681, 9, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2682, NULL, '2017-06-23', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2683, NULL, '2017-06-16', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2684, NULL, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2685, NULL, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2686, NULL, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2687, NULL, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2688, NULL, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2689, NULL, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2690, NULL, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2691, NULL, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2692, NULL, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2693, NULL, '2017-06-09', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2694, NULL, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2695, NULL, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2696, NULL, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2697, NULL, '2017-08-04', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2698, NULL, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2699, NULL, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2700, NULL, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2701, NULL, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2702, NULL, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2703, NULL, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2704, NULL, '2017-07-07', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2705, NULL, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2706, NULL, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2707, NULL, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2708, NULL, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2709, NULL, '2017-07-21', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2710, NULL, '2017-07-14', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2711, NULL, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2712, NULL, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2713, NULL, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2714, NULL, '2017-07-28', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2715, NULL, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2716, NULL, '2017-06-30', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2717, NULL, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2718, NULL, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2719, NULL, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2720, NULL, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2721, NULL, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2722, NULL, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2723, NULL, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2724, NULL, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2725, NULL, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2726, NULL, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2727, 13, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2728, 13, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2729, 13, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2730, 13, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2731, 13, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2732, 13, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2733, 13, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2734, 13, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2735, 13, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2736, 13, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2737, 13, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2738, 13, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2739, 13, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2740, 13, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2741, 13, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2742, 13, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2743, 13, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2744, 13, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2745, 13, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2746, 13, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2747, 13, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2748, 13, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2749, 13, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2750, 13, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2751, 13, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2752, 13, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2753, 13, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2754, 13, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2755, 13, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2756, 31, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2757, 31, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2758, 31, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2759, 31, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2760, 31, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2761, 31, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2762, 31, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2763, 31, '2017-06-09', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2764, 31, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2765, 31, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2766, 31, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2767, 31, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2768, 31, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2769, 31, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2770, 31, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2771, 31, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2772, 31, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2773, 31, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2774, 31, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2775, 31, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2776, 31, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2777, 31, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2778, 31, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2779, 31, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2780, 31, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2781, 12, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2782, 12, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2783, 12, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2784, 12, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2785, 12, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2786, 12, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2787, 12, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2788, 12, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2789, 12, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2790, 12, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2791, 12, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2792, 12, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2793, 12, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2794, 12, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2795, 12, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2796, 12, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2797, 12, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2798, 12, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2799, 12, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2800, 12, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2801, 12, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2802, 12, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2803, 12, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2804, 12, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2805, 12, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2806, 12, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2807, 12, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2808, 12, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2809, 12, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2810, 12, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2811, 12, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2812, 12, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2813, 12, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2814, 12, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2815, 12, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2816, 12, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2817, 12, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2818, 12, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2819, 12, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2820, 12, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2821, 12, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2822, 12, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2823, 12, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2824, 12, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2825, 12, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2826, 12, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2827, 12, '2017-06-10', '10:30:00', '15:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2828, 12, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2829, 12, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2830, 12, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2831, 12, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2832, 12, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2833, 12, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2834, 12, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2835, 23, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2836, 23, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2837, 23, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2838, 23, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2839, 23, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2840, 23, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2841, 23, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2842, 23, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2843, 23, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2844, 23, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2845, 23, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2846, 23, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2847, 23, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2848, 23, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2849, 23, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2850, 23, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2851, 23, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2852, 23, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2853, 23, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2854, 23, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2855, 23, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2856, 23, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2857, 23, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2858, 23, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2859, 23, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2860, 23, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2861, 23, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2862, 23, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2863, 23, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2864, 23, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2865, 23, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2866, 23, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2867, 23, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2868, 23, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2869, 23, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2870, 23, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2871, 23, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2872, 23, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2873, 23, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2874, 21, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2875, 21, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2876, 21, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2877, 21, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2878, 21, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2879, 21, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2880, 21, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2881, 21, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2882, 21, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2883, 21, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2884, 21, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2885, 21, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2886, 21, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2887, 21, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2888, 21, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2889, 21, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2890, 21, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2891, 21, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2892, 21, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2893, 21, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2894, 21, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2895, 21, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2896, 21, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2897, 21, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2898, 21, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2899, 21, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2900, 21, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2901, 21, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2902, 21, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2903, 21, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2904, 21, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2905, 21, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2906, 21, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2907, 21, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2908, 21, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2909, 21, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2910, 21, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2911, 21, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2912, 10, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2913, 10, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2914, 10, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2915, 10, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2916, 10, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2917, 10, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2918, 10, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2919, 10, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2920, 10, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2921, 10, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2922, 10, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2923, 10, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2924, 10, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2925, 10, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2926, 10, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2927, 10, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2928, 10, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2929, 10, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2930, 10, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2931, 10, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2932, 10, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2933, 10, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2934, 10, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2935, 10, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2936, 10, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2937, 10, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2938, 10, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2939, 10, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2940, 10, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2941, 10, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2942, 10, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2943, 10, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2944, 10, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2945, 10, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2946, 10, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2947, 10, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2948, 10, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2949, 10, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2950, 10, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2951, 10, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2952, 10, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2953, 10, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2954, 10, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2955, 10, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2956, 10, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2957, 5, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2958, 5, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2959, 5, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2960, 5, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2961, 5, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2962, 5, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2963, 5, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2964, 5, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2965, 5, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2966, 5, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2967, 5, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2968, 5, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2969, 5, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2970, 5, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2971, 5, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2972, 5, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2973, 5, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2974, 5, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2975, 5, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2976, 5, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2977, 5, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2978, 5, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2979, 5, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2980, 5, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2981, 5, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2982, 5, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2983, 5, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2984, 5, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2985, 5, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2986, 5, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2987, 5, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2988, 5, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2989, 5, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2990, 5, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2991, 5, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2992, 5, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2993, 5, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2994, 5, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2995, 5, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2996, 5, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2997, 5, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2998, 5, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2999, 5, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3000, 5, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3001, 5, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3002, 44, '2017-07-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3003, 44, '2017-07-20', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3004, 44, '2017-07-31', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3005, 44, '2017-07-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3006, 44, '2017-08-03', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3007, 44, '2017-06-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3008, 44, '2017-06-30', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3009, 44, '2017-07-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3010, 44, '2017-07-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3011, 44, '2017-07-05', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3012, 44, '2017-07-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3013, 44, '2017-06-29', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3014, 44, '2017-06-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3015, 44, '2017-06-16', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3016, 44, '2017-07-17', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3017, 44, '2017-07-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3018, 44, '2017-06-15', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3019, 44, '2017-06-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3020, 44, '2017-06-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3021, 44, '2017-07-07', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3022, 44, '2017-08-01', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3023, 44, '2017-06-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3024, 44, '2017-07-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3025, 44, '2017-07-24', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3026, 44, '2017-06-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3027, 44, '2017-07-25', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3028, 44, '2017-07-10', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3029, 44, '2017-08-02', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3030, 44, '2017-08-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3031, 44, '2017-07-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3032, 44, '2017-07-18', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3033, 44, '2017-07-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3034, 44, '2017-06-08', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3035, 44, '2017-06-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3036, 44, '2017-06-09', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3037, 44, '2017-06-22', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3038, 44, '2017-07-11', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3039, 44, '2017-07-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3040, 44, '2017-06-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3041, 44, '2017-06-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3042, 22, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3043, 22, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3044, 22, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3045, 22, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3046, 22, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3047, 22, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3048, 22, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3049, 22, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3050, 22, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3051, 22, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3052, 22, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3053, 22, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3054, 22, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3055, 22, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3056, 22, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3057, 22, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3058, 22, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3059, 22, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3060, 22, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3061, 22, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3062, 22, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3063, 22, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3064, 22, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3065, 22, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3066, 22, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3067, 22, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3068, 22, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3069, 22, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3070, 22, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3071, 22, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3072, 22, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3073, 22, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3074, 22, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3075, 22, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3076, 22, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3077, 22, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3078, 22, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3079, 22, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3080, 22, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3081, 22, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3082, 22, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3083, 22, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3084, 3, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3085, 3, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3086, 3, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3087, 3, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3088, 3, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3089, 3, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3090, 3, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3091, 3, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3092, 3, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3093, 3, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3094, 3, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3095, 3, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3096, 3, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3097, 3, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3098, 3, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3099, 3, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3100, 3, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3101, 3, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3102, 3, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3103, 3, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3104, 3, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3105, 3, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3106, 3, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3107, 3, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3108, 3, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3109, 3, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3110, 3, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3111, 3, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3112, 3, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3113, 3, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3114, 3, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3115, 3, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3116, 3, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3117, 3, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + + +-- +-- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (1, 'normal', true, NULL, NULL); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (5, 'congé extra', true, true, '#e26b0a'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (2, 'congé', true, true, '#fcd5b4'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (4, 'congé maladie', true, true, '#f2dcdb'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (3, 'training', true, NULL, '#b7dee8'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (6, 'jour ferié', true, NULL, '#92d050'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (7, 'libre jours', NULL, NULL, '#0070c0'); + + +-- +-- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (1, 'superadmin', NULL, 'SuperAdmin'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (2, 'admin', NULL, 'Admin'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (3, 'company', NULL, 'Entreprise'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (4, 'site', NULL, 'Site'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (5, 'user', true, 'Utilisateur'); + + +-- +-- Data for Name: apps; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (7, 'staff', 'Employé(e)s', 'Employé(e)s', 1, 'group.svg', 4, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (8, 'timetrackers', 'Pointeuses', 'Pointeuses', NULL, 'cube.svg', 7, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (10, 'sites', 'Sites', 'Sites', NULL, 'cube.svg', 6, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (11, 'workplans', 'Plans de travail', 'Plans (modèles)', 1, 'cube.svg', 8, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (9, 'planning', 'Planning', 'POT', 1, 'cube.svg', 5, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (4, 'profile', 'Profil', 'mes coordonnées', 1, 'user.svg', 9, 'global'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (6, 'companies', 'Entreprise', 'entreprise', 1, 'company.svg', 10, 'global'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (5, 'users', 'Utilisateurs', 'autres utilisateurs', 1, 'group.svg', 11, 'global'); + + +-- +-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email) VALUES (1, 'DKS s.à r.l.', '4, rue Principale', '3770', 'Tétange', 'Luxembourg', NULL, NULL, NULL, 'portanova', NULL, NULL, NULL); + + +-- +-- Data for Name: maillayouts; Type: TABLE DATA; Schema: public; Owner: - +-- + + + +-- +-- Data for Name: mailtemplates; Type: TABLE DATA; Schema: public; Owner: - +-- + + + +-- +-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess) VALUES (1, '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec', '2019-10-10 17:12:11.934747', NULL, 'ksaffran@dks.lu', NULL, NULL, NULL); + + +-- +-- Data for Name: members; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.members (id, surname, prename, phone, id_user, id_company, job) VALUES (1, 'Saffran', 'Kilian', NULL, 1, 1, NULL); + + +-- +-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (111, 'uWpnqxhEFJt2MZxMoLSz4ZAZoc3ZJnu3aKhq8oVD', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:213c:73ba:ffa7:842b', '2019-12-05 19:16:43.969105'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (112, 'mUmGFzD4kPLyhHfJO9TDOGfCtsVAEefRYrotRRo1', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:7946:65e2:f587:8b74', '2019-12-06 07:02:23.094765'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (113, 'HaDg0Eh9nIk7lftrHDtQpaKiLWL66VoEWRKMmSLz', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '::1', '2019-12-09 11:33:13.202044'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (114, 'aSli1lR9B0ETjICf7IFjVxhphLd8dhRdZ2mRd4RE', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362', '::1', '2019-12-10 15:55:53.526432'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (122, 'Sp2D9CvtdjQHaxLPkEXgqSMSveIJwQde56I5y3oC', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:d970:312a:d5d:db83', '2019-12-12 07:06:51.913155'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (123, 'klCMzztihKleI4E0zhnmNMrlL8sAUIj5TLHjb0si', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36', '::1', '2019-12-13 08:27:53.789037'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (93, '5P7159lXg8xY83Iu7eZC3hj3Oi6x29jXOhPKg0yn', 1, 'Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36', '::1', '2019-12-04 14:58:48.993651'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (98, '9UisAitYaoxdqtBaWUI37R04CiBlFxcp0STuCOZRU', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '::1', '2019-12-05 07:34:07.997426'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (99, 'v6wZ65qozoWn5P32q4wg16224TcOAM1VJnLFj1UJ', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '192.168.178.23', '2019-12-05 07:35:01.756219'); + + +-- +-- Data for Name: useringroups; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.useringroups (id, id_user, id_group) VALUES (1, 1, 1); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - +-- + +SELECT pg_catalog.setval('demo.staff_id_seq', 1, true); + + +-- +-- Name: stations_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - +-- + +SELECT pg_catalog.setval('demo.stations_id_seq', 1, false); + + +-- +-- Name: timetrackuser_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - +-- + +SELECT pg_catalog.setval('demo.timetrackuser_id_seq', 5, true); + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.defaultweekworkplan_id_seq', 1, false); + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.defaultworkplan_id_seq', 1, false); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 1, true); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 1, false); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 45, true); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3117, true); + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); + + +-- +-- Name: apps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.apps_id_seq', 11, true); + + +-- +-- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.companies_id_seq', 1, true); + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.maillayouts_id_seq', 1, false); + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.mailtemplates_id_seq', 1, false); + + +-- +-- Name: members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.members_id_seq', 1, false); + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.sessions_id_seq', 123, true); + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.useringroups_id_seq', 1, true); + + +-- +-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.users_id_seq', 1, false); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.pg.full.sql b/dev/db/potlu_db.pg.full.sql new file mode 100644 index 00000000..f92056c0 --- /dev/null +++ b/dev/db/potlu_db.pg.full.sql @@ -0,0 +1,4565 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: demo; Type: SCHEMA; Schema: -; Owner: potlu_user +-- + +CREATE SCHEMA demo; + + +ALTER SCHEMA demo OWNER TO potlu_user; + +-- +-- Name: portanova; Type: SCHEMA; Schema: -; Owner: potlu_user +-- + +CREATE SCHEMA portanova; + + +ALTER SCHEMA portanova OWNER TO potlu_user; + +-- +-- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + iduser int4; + newidsession text := null; +begin + select id into iduser from public.users where lower(username)=lower(vusername) and userpassword = vpassword and "blocked" is null; + if (iduser is not null) then + delete from public.sessions where id_user= iduser and remote_addr= vremoteaddr and user_agent= vuseragent; + insert into public.sessions (id_user,idsession,remote_addr,user_agent) VALUES( iduser,public.random_string(40), vremoteaddr,vuseragent) returning idsession into newidsession; + end if; + return newidsession; +end; +$$; + + +ALTER FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) OWNER TO potlu_user; + +-- +-- Name: getdates(date, integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getdates(startdate date, days integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(startdate + s*'1day'::interval) as daydate from generate_series(0,days-1) s ; + END; +$$; + + +ALTER FUNCTION public.getdates(startdate date, days integer) OWNER TO potlu_user; + +-- +-- Name: getdateslist(date, integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getdateslist(startdate date, days integer) RETURNS text + LANGUAGE plpgsql + AS $$ + declare + ret text; + begin + select string_agg(to_char(getdates,'YYYY-MM-DD'),',') into ret from getdates(startdate,days); + return ret; + END; +$$; + + +ALTER FUNCTION public.getdateslist(startdate date, days integer) OWNER TO potlu_user; + +-- +-- Name: getmondays(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getmondays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as mondays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=1; + END; +$$; + + +ALTER FUNCTION public.getmondays(vyear integer) OWNER TO potlu_user; + +-- +-- Name: getsession(text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id integer, username text, usergroups text, userschemata text) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select se.idsession,us.id,us.username,string_agg(distinct(aug.usergroup),',') as usergroups ,co.schemata as userschemata from sessions se +join users us on (us.id=se.id_user) +left join useringroups uig on (us.id=uig.id_user) +left join usergroups aug on (aug.id=uig.id_group) +left join members mb on (mb.id_user=us.id) +left join companies co on (co.id=mb.id_company) +where se.idsession= vidsession +and se.remote_addr= vremoteaddr +and se.user_agent= vuseragent and us.blocked is null group by se.id,us.id,mb.id,co.id; + END; +$$; + + +ALTER FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) OWNER TO potlu_user; + +-- +-- Name: getsundays(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getsundays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=7; + END; +$$; + + +ALTER FUNCTION public.getsundays(vyear integer) OWNER TO potlu_user; + +-- +-- Name: getweeks(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getweeks(vyear integer) RETURNS TABLE(cw integer, mondays date, sundays date) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select extract('week' from daydate)::int4 as cw,date(daydate - interval '3 days') as mondays , date(daydate + interval '3 days') as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=4; + END; +$$; + + +ALTER FUNCTION public.getweeks(vyear integer) OWNER TO potlu_user; + +-- +-- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.random_string(vlength integer) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + randstr text := null; +BEGIN +SELECT string_agg (substr('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', ceil (random() * 62)::integer, 1), '') into randstr +FROM generate_series(1, vlength); +return randstr; +end; +$$; + + +ALTER FUNCTION public.random_string(vlength integer) OWNER TO potlu_user; + +-- +-- Name: trg_update_basemonthhours(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_basemonthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_basemonthhours() OWNER TO potlu_user; + +-- +-- Name: trg_update_modified(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_modified() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.modified = Current_timestamp; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_modified() OWNER TO potlu_user; + +-- +-- Name: trg_update_monthhours(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_monthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_monthhours() OWNER TO potlu_user; + +-- +-- Name: trg_update_monthlyhours(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_monthlyhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_monthlyhours() OWNER TO potlu_user; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: staff; Type: TABLE; Schema: demo; Owner: potlu_user +-- + +CREATE TABLE demo.staff ( + id integer NOT NULL, + staffident text, + surname text, + prename text, + pincde text, + fingerprint text, + stations json, + id_user integer +); + + +ALTER TABLE demo.staff OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user +-- + +CREATE SEQUENCE demo.staff_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE demo.staff_id_seq OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: potlu_user +-- + +ALTER SEQUENCE demo.staff_id_seq OWNED BY demo.staff.id; + + +-- +-- Name: stations; Type: TABLE; Schema: demo; Owner: potlu_user +-- + +CREATE TABLE demo.stations ( + id integer NOT NULL, + station text, + address text, + plz text, + city text, + country text, + installdate date, + isactive boolean, + hostname text +); + + +ALTER TABLE demo.stations OWNER TO potlu_user; + +-- +-- Name: stations_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user +-- + +CREATE SEQUENCE demo.stations_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE demo.stations_id_seq OWNER TO potlu_user; + +-- +-- Name: stations_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: potlu_user +-- + +ALTER SEQUENCE demo.stations_id_seq OWNED BY demo.stations.id; + + +-- +-- Name: timetrackuser; Type: TABLE; Schema: demo; Owner: potlu_user +-- + +CREATE TABLE demo.timetrackuser ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone +); + + +ALTER TABLE demo.timetrackuser OWNER TO potlu_user; + +-- +-- Name: timetrackuser_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user +-- + +CREATE SEQUENCE demo.timetrackuser_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE demo.timetrackuser_id_seq OWNER TO potlu_user; + +-- +-- Name: timetrackuser_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: potlu_user +-- + +ALTER SEQUENCE demo.timetrackuser_id_seq OWNED BY demo.timetrackuser.id; + + +-- +-- Name: defaultweekworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.defaultweekworkplan ( + id integer NOT NULL, + id_staff integer, + startdate date, + mon json, + tue json, + wed json, + thu json, + fri json, + sat json, + sun json +); + + +ALTER TABLE portanova.defaultweekworkplan OWNER TO potlu_user; + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.defaultweekworkplan_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.defaultweekworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.defaultweekworkplan_id_seq OWNED BY portanova.defaultweekworkplan.id; + + +-- +-- Name: defaultworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.defaultworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + plannedtimes json, + vacancytimes json, + presencetimes json +); + + +ALTER TABLE portanova.defaultworkplan OWNER TO potlu_user; + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.defaultworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.defaultworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.defaultworkplan_id_seq OWNED BY portanova.defaultworkplan.id; + + +-- +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +ALTER TABLE portanova.reportperiod OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.reportperiod_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.reportperiod_id_seq OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +ALTER TABLE portanova.sites OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.sites_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.sites_id_seq OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +ALTER TABLE portanova.staff OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staff_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staff_id_seq OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staff_id_seq OWNED BY portanova.staff.id; + + +-- +-- Name: staffgroups; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +ALTER TABLE portanova.staffgroups OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffgroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffgroups_id_seq OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffgroups_id_seq OWNED BY portanova.staffgroups.id; + + +-- +-- Name: staffperiodbase; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffperiodbase ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric +); + + +ALTER TABLE portanova.staffperiodbase OWNER TO potlu_user; + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffperiodbase_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffperiodbase_id_seq OWNER TO potlu_user; + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffperiodbase.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +ALTER TABLE portanova.stafftimetracks OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.stafftimetracks_id_seq OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +ALTER TABLE portanova.staffvacancy OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffvacancy_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffvacancy_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +ALTER TABLE portanova.staffvacancyyear OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffvacancyyear_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffvacancyyear_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +ALTER TABLE portanova.staffworkplan OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM portanova.reportperiod; + + +ALTER TABLE portanova.vw_reportperiodlist OWNER TO potlu_user; + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM portanova.staff; + + +ALTER TABLE portanova.vw_stafflist OWNER TO potlu_user; + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE portanova.vw_staffplanned_dayweektotals OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE portanova.vw_staffworkplan_weekly OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS calweek, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_start1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (portanova.vw_staffworkplan_weekly sp_dwt + LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +ALTER TABLE portanova.vw_staffworkplanlist OWNER TO potlu_user; + +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +ALTER TABLE portanova.workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM portanova.workplans; + + +ALTER TABLE portanova.vw_workplanlist OWNER TO potlu_user; + +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM portanova.workplans; + + +ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM portanova.workplans; + + +ALTER TABLE portanova.vw_workplansdata OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.workplans_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.workplans_id_seq OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +ALTER TABLE portanova.worktypes OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.worktypes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.worktypes_id_seq OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; + + +-- +-- Name: apps; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.apps ( + id integer NOT NULL, + app text NOT NULL, + description text, + name text, + id_usergroup integer, + icon text, + sort integer, + menutype text +); + + +ALTER TABLE public.apps OWNER TO potlu_user; + +-- +-- Name: apps_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.apps_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.apps_id_seq OWNER TO potlu_user; + +-- +-- Name: apps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.apps_id_seq OWNED BY public.apps.id; + + +-- +-- Name: companies; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.companies ( + id integer NOT NULL, + company text, + address text, + zip text, + city text, + country text, + tradetype text, + comregister text, + vatnumber text, + schemata text, + validated boolean, + schemata2 json, + email text +); + + +ALTER TABLE public.companies OWNER TO potlu_user; + +-- +-- Name: companies_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.companies_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.companies_id_seq OWNER TO potlu_user; + +-- +-- Name: companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.companies_id_seq OWNED BY public.companies.id; + + +-- +-- Name: maillayouts; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.maillayouts ( + id integer NOT NULL, + layoutname text, + mailtemplate text +); + + +ALTER TABLE public.maillayouts OWNER TO potlu_user; + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.maillayouts_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.maillayouts_id_seq OWNER TO potlu_user; + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.maillayouts_id_seq OWNED BY public.maillayouts.id; + + +-- +-- Name: mailtemplates; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.mailtemplates ( + id integer NOT NULL, + templatename text DEFAULT NULL::character varying, + emailtext text, + emaildatasql text, + mailfrom text, + mailsubject text DEFAULT NULL::character varying, + id_maillayout integer +); + + +ALTER TABLE public.mailtemplates OWNER TO potlu_user; + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.mailtemplates_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mailtemplates_id_seq OWNER TO potlu_user; + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.mailtemplates_id_seq OWNED BY public.mailtemplates.id; + + +-- +-- Name: members; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.members ( + id integer NOT NULL, + surname text, + prename text, + phone text, + id_user bigint, + id_company integer, + job text +); + + +ALTER TABLE public.members OWNER TO potlu_user; + +-- +-- Name: members_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.members_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.members_id_seq OWNER TO potlu_user; + +-- +-- Name: members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.members_id_seq OWNED BY public.members.id; + + +-- +-- Name: sessions; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.sessions ( + id bigint NOT NULL, + idsession text NOT NULL, + id_user bigint, + user_agent text, + remote_addr text, + created timestamp without time zone DEFAULT now() +); + + +ALTER TABLE public.sessions OWNER TO potlu_user; + +-- +-- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.sessions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.sessions_id_seq OWNER TO potlu_user; + +-- +-- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; + + +-- +-- Name: usergroups; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.usergroups ( + id integer NOT NULL, + usergroup text NOT NULL, + isdefault boolean, + groupname text +); + + +ALTER TABLE public.usergroups OWNER TO potlu_user; + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.usergroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.usergroups_id_seq OWNER TO potlu_user; + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.usergroups_id_seq OWNED BY public.usergroups.id; + + +-- +-- Name: useringroups; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.useringroups ( + id integer NOT NULL, + id_user bigint, + id_group bigint +); + + +ALTER TABLE public.useringroups OWNER TO potlu_user; + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.useringroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.useringroups_id_seq OWNER TO potlu_user; + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.useringroups_id_seq OWNED BY public.useringroups.id; + + +-- +-- Name: users; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.users ( + id integer NOT NULL, + userpassword text, + created timestamp without time zone DEFAULT now(), + blocked boolean, + username text, + regcode text, + vcode text, + schemaaccess json +); + + +ALTER TABLE public.users OWNER TO potlu_user; + +-- +-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.users_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.users_id_seq OWNER TO potlu_user; + +-- +-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; + + +-- +-- Name: vw_companydata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_companydata AS + SELECT companies.id, + companies.company, + companies.address, + companies.zip, + companies.city, + companies.country, + companies.tradetype, + companies.comregister, + companies.vatnumber, + companies.schemata AS link, + companies.validated + FROM public.companies; + + +ALTER TABLE public.vw_companydata OWNER TO potlu_user; + +-- +-- Name: vw_companylist; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_companylist AS + SELECT co.id, + co.company, + co.address, + co.zip, + co.city, + co.country, + ((((((co.address || '\n'::text) || co.zip) || ' '::text) || co.city) || ' '::text) || co.country) AS dspaddress, + co.schemata + FROM public.companies co; + + +ALTER TABLE public.vw_companylist OWNER TO potlu_user; + +-- +-- Name: vw_memberdata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_memberdata AS + SELECT members.id, + members.surname, + members.prename, + members.phone, + members.id_user, + members.id_company, + members.job + FROM public.members; + + +ALTER TABLE public.vw_memberdata OWNER TO potlu_user; + +-- +-- Name: vw_userdata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_userdata AS + SELECT users.id, + users.username + FROM public.users; + + +ALTER TABLE public.vw_userdata OWNER TO potlu_user; + +-- +-- Name: vw_userlist; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_userlist AS +SELECT + NULL::integer AS id, + NULL::integer AS id_member, + NULL::text AS username, + NULL::text AS prename, + NULL::text AS surname, + NULL::boolean AS blocked, + NULL::text AS group_ids, + NULL::integer AS id_company, + NULL::text AS company; + + +ALTER TABLE public.vw_userlist OWNER TO potlu_user; + +-- +-- Name: staff id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.staff ALTER COLUMN id SET DEFAULT nextval('demo.staff_id_seq'::regclass); + + +-- +-- Name: stations id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.stations_id_seq'::regclass); + + +-- +-- Name: timetrackuser id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); + + +-- +-- Name: defaultweekworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultweekworkplan_id_seq'::regclass); + + +-- +-- Name: defaultworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultworkplan_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); + + +-- +-- Name: staffperiodbase id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffperiodbase ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); + + +-- +-- Name: apps id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); + + +-- +-- Name: companies id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); + + +-- +-- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); + + +-- +-- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); + + +-- +-- Name: members id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass); + + +-- +-- Name: sessions id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); + + +-- +-- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); + + +-- +-- Name: useringroups id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups ALTER COLUMN id SET DEFAULT nextval('public.useringroups_id_seq'::regclass); + + +-- +-- Name: users id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.staff (id, staffident, surname, prename, pincde, fingerprint, stations, id_user) FROM stdin; +1 \N Saffran Kilian \N \N \N \N +\. + + +-- +-- Data for Name: stations; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.stations (id, station, address, plz, city, country, installdate, isactive, hostname) FROM stdin; +\. + + +-- +-- Data for Name: timetrackuser; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.timetrackuser (id, id_staff, stamp_in, stamp_out) FROM stdin; +1 1 2019-10-01 08:05:00 2019-10-01 17:07:00 +3 1 2019-10-03 14:01:00 2019-10-03 17:11:00 +4 1 2019-10-03 08:05:00 2019-10-03 12:07:00 +2 1 2019-10-02 08:06:00 2019-10-02 16:05:00 +5 1 2019-10-04 17:05:00 2019-10-05 01:04:00 +\. + + +-- +-- Data for Name: defaultweekworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.defaultweekworkplan (id, id_staff, startdate, mon, tue, wed, thu, fri, sat, sun) FROM stdin; +\. + + +-- +-- Data for Name: defaultworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.defaultworkplan (id, id_staff, daydate, plannedtimes, vacancytimes, presencetimes) FROM stdin; +\. + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.reportperiod (id, periodname, startdate, enddate) FROM stdin; +1 Période 1 2020 2019-12-30 2020-02-23 +\. + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.sites (id, sitename, address, zip, city, country, id_timetracker, created, modified, timeclockhost) FROM stdin; +\. + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) FROM stdin; +1 A100 NISTRI ANGELA serveuse 1987-03-27 2015-06-22 \N +4 A101 JOURDAN JOSIAN serveuse 1981-01-29 2015-04-01 \N +5 A102 ARENGA TERESA serveuse 1981-06-15 2015-03-10 \N +6 A103 BARROSO MARIA serveuse \N 2000-01-01 \N +7 A104 STIPA CRISTIAN serveur 1975-08-08 2015-11-09 \N +15 5558 DEDJA CLAIDIO Barman 1994-02-24 2014-11-15 \N +16 7595 PUGLIESE GIUSEPPE serveur/Barman 1995-11-05 2015-10-08 \N +8 A105 LIBERTI RICCARDO serveur 1990-06-19 2016-02-13 \N +11 A106 ARMOCIDA Domenico serveur \N 2000-01-01 \N +12 A107 MORTASSI KARIM serveur \N 2000-01-01 \N +13 A108 IRIA FABIO serveur \N 2000-01-01 \N +14 A109 SERGIO SERGIO serveur \N 2000-01-01 \N +18 A200 \N \N Barman \N 2000-01-01 \N +20 A110 QUATTRONE DEMETRIO Cuisinier 1950-06-27 2015-12-01 \N +24 A111 RAMOS DA SILVA JOHNY cuisinier 1966-08-25 2005-05-01 \N +25 A112 VICINI DAVIDE \N \N 2000-01-01 \N +26 A113 LAMA ANGELO commis de cuisine 1992-11-20 2008-07-10 \N +30 A114 ILIC JULIEN apprenti 1995-04-22 2000-01-01 \N +31 A115 SOMNEZ TUNAHAN \N \N 2000-01-01 \N +36 A117 DA LUZ CANDIDA plongeus \N 2000-01-01 \N +37 A118 CRISCIONE EMANUELE resp. de réception 1981-09-18 2000-01-01 \N +41 A119 SONMEZ TUNAHAN apprenti 1998-06-15 2000-01-01 \N +42 A120 IRIA SILVA FABIO apprenti 1988-06-29 2000-01-01 \N +43 A121 MULLER RICA secrétaire de direction 1966-12-02 2000-01-01 \N +44 A122 BRUCCOLERI SARAH attachée de direction 1984-11-01 2000-01-01 \N +45 100 PRESTI ADRIANO gérant \N 2000-01-01 \N +2 5020 MATIAS RAPHAEL serveur 1975-01-26 2005-04-19 \N +3 6600 ALIF DIDIER serveur 1968-04-14 2007-08-14 \N +9 5502 COPPOLA CHRISTIAN serveur 1990-11-25 2016-01-18 \N +21 8775 ZAKLAN ZORAN cuisinier 1959-05-25 2005-01-08 \N +22 5695 ELKAOUI MOURAD cuisinier 1973-02-12 2014-04-15 \N +23 5503 CORONEL SILVINO ROSA aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N +27 7120 MELO IVO TIAGO aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N +28 7600 PREZZIOSA MATTEO pizzaiolo 1959-03-26 2012-10-03 \N +29 5250 BOUALI AMAR aide-pâtissier/commis de cuisine 1980-02-20 2015-06-01 \N +32 5480 COIMBRA ABRANTES MARIA commis de cuisine 1969-09-24 2006-10-23 \N +33 5540 DE BRITO Djela commis de cuisine 1975-01-15 1995-07-01 \N +34 7591 PEREIRA GOMES ANTONIA plongeuse 1987-04-29 1992-03-15 \N +35 5600 DOS SANTOS Alcinda plongeuse 1960-12-26 2011-07-05 \N +38 7980 SCHMITGEN TANUCCIA Hôtesse d'accueil/serveuse 1964-01-20 2010-10-04 \N +39 2701 KIEFFER-WEILER LILIANNE hôtesse d'accueil 1958-04-21 2015-07-01 \N +40 8725 YAKOBSON YULIYA hôtesse d'accueil 1974-04-02 2011-10-01 \N +10 8501 TAVERNA Greta serveuse \N 2000-01-01 \N +17 5280 BULAKU ENVER concierge/technicien 1971-02-08 2000-01-01 \N +19 1172 BUCHICCHIO DONATO ANTONIO chef cuisinier 1970-10-23 2000-01-01 \N +\. + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffgroups (id, groupname, groupcolor) FROM stdin; +\. + + +-- +-- Data for Name: staffperiodbase; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) FROM stdin; +39 39 2015-07-01 64.8750000000000000 15 +40 40 2011-10-01 86.5000000000000000 20 +11 11 2000-01-01 129.7500000000000000 30 +43 43 2000-01-01 129.7500000000000000 30 +6 6 2000-01-01 173.0000000000000000 40 +10 10 2000-01-01 173.0000000000000000 40 +12 12 2000-01-01 173.0000000000000000 40 +13 13 2000-01-01 173.0000000000000000 40 +14 14 2000-01-01 173.0000000000000000 40 +17 17 2000-01-01 173.0000000000000000 40 +19 19 2000-01-01 173.0000000000000000 40 +25 25 2000-01-01 173.0000000000000000 40 +30 30 2000-01-01 173.0000000000000000 40 +31 31 2000-01-01 173.0000000000000000 40 +36 36 2000-01-01 173.0000000000000000 40 +37 37 2000-01-01 173.0000000000000000 40 +41 41 2000-01-01 173.0000000000000000 40 +42 42 2000-01-01 173.0000000000000000 40 +44 44 2000-01-01 173.0000000000000000 40 +45 45 2000-01-01 173.0000000000000000 40 +1 1 2015-06-22 173.0000000000000000 40 +2 2 2005-04-19 173.0000000000000000 40 +3 3 2007-08-14 173.0000000000000000 40 +4 4 2015-04-01 173.0000000000000000 40 +5 5 2015-03-10 173.0000000000000000 40 +7 7 2015-11-09 173.0000000000000000 40 +8 8 2016-02-13 173.0000000000000000 40 +9 9 2016-01-18 173.0000000000000000 40 +15 15 2014-11-15 173.0000000000000000 40 +16 16 2015-10-08 173.0000000000000000 40 +18 18 2016-05-30 173.0000000000000000 40 +20 20 2015-12-01 173.0000000000000000 40 +21 21 2005-01-08 173.0000000000000000 40 +22 22 2014-04-15 173.0000000000000000 40 +23 23 2013-01-07 173.0000000000000000 40 +24 24 2005-05-01 173.0000000000000000 40 +26 26 2008-07-10 173.0000000000000000 40 +27 27 2013-01-07 173.0000000000000000 40 +28 28 2012-10-03 173.0000000000000000 40 +29 29 2015-06-01 173.0000000000000000 40 +32 32 2006-10-23 173.0000000000000000 40 +33 33 1995-07-01 173.0000000000000000 40 +34 34 1992-03-15 173.0000000000000000 40 +35 35 2011-07-05 173.0000000000000000 40 +38 38 2010-10-04 173.0000000000000000 40 +\. + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, created, modified) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffvacancy (id, id_staff, startdate, enddate, vacancytype, dayhours, note, validated) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffvacancyyear (id, id_staff, vyear, hours, days) FROM stdin; +\. + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) FROM stdin; +1817 34 2017-07-07 \N \N \N \N \N \N \N +1847 37 2017-07-15 \N \N \N \N \N \N \N +2405 20 2017-06-17 \N \N \N \N \N \N \N +1767 8 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1768 8 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1769 8 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1770 8 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1771 8 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1772 8 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1773 8 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1774 8 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1775 8 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1776 8 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1777 8 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1778 8 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1779 8 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1780 8 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1781 8 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1782 8 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1783 8 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1784 8 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1785 8 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1786 8 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1787 8 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1788 8 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1789 8 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1790 8 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1791 8 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1792 8 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1793 8 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1794 8 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1795 8 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1796 8 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1797 8 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1798 8 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1799 8 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1800 8 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1801 8 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1802 8 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1803 8 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1804 8 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1805 8 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1806 8 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1807 8 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1808 8 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1809 8 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1810 8 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1811 8 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1812 34 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1813 34 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1814 34 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1815 34 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1816 34 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1818 34 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1819 34 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1820 34 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1821 34 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1822 34 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1823 34 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1824 34 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1825 34 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1826 34 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1827 34 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1828 34 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1829 34 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1830 34 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1831 34 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1832 34 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1833 34 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1834 34 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1835 34 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1836 34 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1837 34 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1838 34 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1839 34 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1840 34 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1841 34 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1842 34 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1843 34 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1844 34 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1845 34 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1846 34 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1848 37 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +1849 37 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +1850 37 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +1851 37 2017-06-10 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +1852 37 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +1853 36 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1854 36 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1855 36 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1856 36 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1857 36 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1858 36 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1859 36 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1860 36 2017-06-05 11:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1861 36 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1862 36 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1863 36 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1864 36 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1865 36 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1866 36 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1867 36 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1868 36 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1869 36 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1870 36 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1871 36 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1872 36 2017-06-08 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N +1873 36 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1874 36 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1875 36 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1876 36 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1877 36 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1878 36 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1879 36 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1880 36 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1881 36 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1882 36 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1883 36 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1884 36 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1885 36 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1886 36 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1887 25 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1888 25 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1889 25 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1890 25 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1891 25 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1892 25 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1893 25 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1894 25 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1895 25 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1896 25 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1897 25 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1898 25 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1899 25 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1900 25 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1901 25 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1902 25 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1903 25 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1904 25 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1905 25 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1906 25 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1907 25 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1908 25 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1909 25 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1910 25 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1911 25 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1912 25 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1913 25 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1914 25 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1915 25 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1916 25 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1917 25 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1918 25 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1919 25 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1920 33 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1921 33 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1922 33 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1923 33 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1924 33 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1925 33 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1926 33 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1927 33 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1928 33 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1929 33 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1930 33 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1931 33 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1932 33 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1933 33 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1934 33 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1935 33 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1936 33 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1937 33 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1938 33 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1939 33 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1940 33 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1941 33 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1942 33 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1943 33 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1944 33 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1945 33 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1946 33 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1947 33 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1948 33 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1949 33 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1950 33 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1951 33 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1952 33 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1953 33 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1954 33 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1955 33 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1956 33 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1957 33 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1958 33 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1959 33 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1960 33 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1961 33 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1962 33 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1963 11 2017-06-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1964 11 2017-06-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1965 11 2017-07-12 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1966 11 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1967 11 2017-07-20 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1968 11 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1969 11 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1970 11 2017-07-27 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1971 11 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1972 11 2017-06-08 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1973 11 2017-06-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1974 11 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1975 11 2017-06-22 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1976 11 2017-08-04 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1977 11 2017-07-26 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1978 11 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1979 11 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1980 11 2017-07-13 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1981 11 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1982 11 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1983 11 2017-06-14 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1984 11 2017-07-07 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1985 11 2017-06-29 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1986 11 2017-06-28 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1987 11 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1988 11 2017-06-15 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1989 11 2017-07-21 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1990 11 2017-07-14 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1991 11 2017-06-07 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1992 11 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1993 11 2017-07-28 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1994 11 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1995 11 2017-08-03 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1996 11 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1997 11 2017-06-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1998 11 2017-06-21 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1999 11 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2000 11 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2001 11 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2002 11 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2003 11 2017-08-02 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +2004 11 2017-07-19 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +2005 11 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2006 29 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2007 29 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2008 29 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2009 29 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2010 29 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2011 29 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2012 29 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2013 29 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2014 29 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2015 29 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2016 29 2017-07-06 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2017 29 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2018 29 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2019 29 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2020 29 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2021 29 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2022 29 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2023 29 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2024 29 2017-07-07 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2025 29 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2026 29 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2027 29 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2028 29 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2029 29 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2030 29 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2031 29 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2032 29 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2033 29 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2034 29 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2035 29 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2036 29 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2037 29 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2038 29 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2039 29 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2040 29 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2041 29 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2042 29 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2043 29 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2044 29 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2045 32 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2046 32 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2047 32 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2048 32 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2049 32 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2050 32 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2051 32 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2052 32 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2053 32 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2054 32 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2055 32 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2056 32 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2057 32 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2058 32 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2059 32 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2060 32 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2061 32 2017-06-05 10:30:00 14:30:00 17:30:00 21:30:00 01:00:00 \N \N +2062 32 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2063 32 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2064 32 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2065 32 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2066 32 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2067 32 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2068 32 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2069 32 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2070 32 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2071 32 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2072 32 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2073 15 2017-08-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2074 15 2017-06-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2075 15 2017-06-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2076 15 2017-07-29 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2077 15 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2078 15 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2079 15 2017-07-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2080 15 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2081 15 2017-06-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2082 15 2017-06-15 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2083 15 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2084 15 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2085 15 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2086 15 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2087 15 2017-06-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2088 15 2017-07-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2089 15 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2090 15 2017-08-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2091 15 2017-08-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2092 15 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2093 15 2017-07-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2094 15 2017-07-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2095 15 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2096 15 2017-06-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2097 15 2017-06-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2098 15 2017-06-08 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2099 15 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2100 15 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2101 15 2017-06-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2102 15 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2103 15 2017-07-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2104 24 2017-07-12 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2105 24 2017-06-07 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N +2106 24 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2107 24 2017-07-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2108 24 2017-07-16 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2109 24 2017-07-31 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2110 24 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2111 24 2017-07-04 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2112 24 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2113 24 2017-08-03 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2114 24 2017-07-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2115 24 2017-06-21 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2116 24 2017-06-17 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N +2117 24 2017-06-14 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2118 24 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2119 24 2017-08-01 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2120 24 2017-06-29 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2121 24 2017-06-28 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2122 24 2017-06-16 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N +2123 24 2017-07-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2124 24 2017-06-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2125 24 2017-06-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2126 24 2017-07-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2127 24 2017-07-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2128 24 2017-08-04 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2129 24 2017-08-02 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2130 24 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2131 24 2017-07-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2132 24 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2133 24 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2134 24 2017-07-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2135 24 2017-07-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2136 24 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2137 24 2017-06-18 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N +2138 24 2017-06-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2139 24 2017-06-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2140 24 2017-06-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2141 24 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2142 24 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2143 24 2017-06-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2144 1 2017-07-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2145 1 2017-06-18 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2146 1 2017-06-10 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2147 1 2017-06-13 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2148 1 2017-07-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2149 1 2017-06-11 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2150 1 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2151 1 2017-08-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2152 1 2017-07-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2153 1 2017-07-26 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2154 1 2017-07-19 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2155 1 2017-08-05 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2156 1 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2157 1 2017-08-06 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2158 1 2017-07-22 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2159 1 2017-06-14 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2160 1 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2161 1 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2162 1 2017-08-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2163 1 2017-06-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2164 1 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2165 1 2017-07-30 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2166 1 2017-07-12 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2167 1 2017-06-07 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2168 1 2017-07-23 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2169 1 2017-07-29 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2170 1 2017-07-16 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2171 1 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2172 1 2017-07-15 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2173 1 2017-06-17 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2174 26 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2175 26 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2176 26 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2177 26 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2178 26 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2179 26 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2180 26 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2181 26 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2182 26 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2183 26 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2184 26 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2185 26 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2186 26 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2187 26 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2188 26 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2189 26 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2190 26 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2191 26 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2192 26 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2193 26 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2194 26 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2195 26 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2196 26 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2197 26 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2198 26 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2199 26 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2200 26 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2201 26 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2202 26 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2203 26 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2204 26 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2205 26 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2206 26 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2207 26 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2208 26 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2209 26 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2210 26 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2211 26 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2212 30 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2213 30 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2214 30 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2215 30 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2216 30 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2217 30 2017-06-25 10:30:00 14:30:00 \N \N 01:00:00 \N \N +2218 30 2017-07-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2219 30 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2220 30 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2221 30 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2222 30 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2223 30 2017-07-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2224 30 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2225 30 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2226 30 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2227 30 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2228 30 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2229 30 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2230 30 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2231 30 2017-07-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2232 28 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2233 28 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2234 28 2017-06-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2235 28 2017-06-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2236 28 2017-06-26 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2237 28 2017-06-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2238 28 2017-07-27 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2239 28 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2240 28 2017-07-24 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2241 28 2017-07-22 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2242 28 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2243 28 2017-07-13 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2244 28 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2245 28 2017-07-26 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2246 28 2017-07-19 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2247 28 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2248 28 2017-07-25 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2249 28 2017-06-27 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2250 28 2017-07-30 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2251 28 2017-07-21 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2252 28 2017-06-20 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2253 28 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2254 28 2017-06-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2255 28 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2256 28 2017-07-04 11:00:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2257 28 2017-06-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2258 28 2017-07-15 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2259 28 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2260 28 2017-07-29 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2261 28 2017-07-20 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2262 28 2017-07-28 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2263 28 2017-07-16 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2264 28 2017-07-23 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2265 28 2017-07-12 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2266 28 2017-07-14 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2267 28 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2268 19 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2269 19 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2270 19 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2271 19 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2272 19 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2273 19 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2274 19 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2275 19 2017-06-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2276 19 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2277 19 2017-06-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2278 19 2017-07-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2279 19 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2280 19 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2281 19 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2282 19 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2283 19 2017-06-21 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2284 19 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2285 19 2017-06-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2286 19 2017-07-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2287 19 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2288 19 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2289 19 2017-06-23 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2290 19 2017-06-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2291 19 2017-06-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2292 19 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2293 35 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2294 35 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2295 35 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2296 35 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2297 35 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2298 35 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2299 35 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2300 35 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2301 35 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2302 35 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2303 35 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2304 35 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2305 35 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2306 35 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2307 35 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2308 35 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2309 35 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2310 35 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2311 35 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2312 35 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2313 35 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2314 35 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2315 35 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2316 35 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2317 35 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2318 35 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2319 35 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2320 35 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2321 35 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2322 35 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2323 35 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2324 35 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2325 35 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2326 4 2017-08-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2327 4 2017-06-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2328 4 2017-07-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2329 4 2017-08-02 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2330 4 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2331 4 2017-06-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2332 4 2017-06-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2333 4 2017-07-28 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2334 4 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2335 4 2017-06-30 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2336 4 2017-08-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2337 4 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2338 4 2017-06-21 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2339 4 2017-07-02 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2340 4 2017-06-07 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2341 4 2017-07-14 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2342 4 2017-07-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2343 4 2017-06-28 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2344 4 2017-06-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2345 4 2017-07-21 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2346 4 2017-07-30 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2347 4 2017-06-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2348 4 2017-07-07 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2349 4 2017-06-14 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2350 4 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2351 4 2017-07-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2352 4 2017-07-09 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2353 4 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2354 4 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2355 4 2017-08-04 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2356 4 2017-07-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2357 4 2017-06-09 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2358 4 2017-06-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2359 4 2017-06-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2360 4 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2361 4 2017-07-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2362 4 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2363 4 2017-07-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2364 4 2017-07-16 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2365 4 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2366 4 2017-07-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2367 4 2017-07-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2368 4 2017-07-23 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2369 4 2017-06-16 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2370 4 2017-06-23 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2371 20 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2372 20 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2373 20 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2374 20 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2375 20 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2376 20 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2377 20 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2378 20 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2379 20 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2380 20 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2381 20 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2382 20 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2383 20 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2384 20 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2385 20 2017-06-14 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2386 20 2017-06-15 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2387 20 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2388 20 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2389 20 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2390 20 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2391 20 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2392 20 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2393 20 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2394 20 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2395 20 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2396 20 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2397 20 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2398 20 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2399 20 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2400 20 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2401 20 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2402 20 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2403 20 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2404 20 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2406 20 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2407 20 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2408 20 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2409 20 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2410 20 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2411 20 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2412 20 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2413 20 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2414 20 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2415 20 2017-06-16 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2416 16 2017-06-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2417 16 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2418 16 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2419 16 2017-06-13 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2420 16 2017-06-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2421 16 2017-07-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2422 16 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2423 16 2017-06-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2424 16 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2425 16 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2426 16 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2427 16 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2428 16 2017-08-01 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2429 16 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2430 16 2017-06-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2431 16 2017-06-12 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2432 16 2017-07-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2433 16 2017-06-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2434 16 2017-06-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2435 16 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2436 16 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2437 16 2017-07-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2438 16 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2439 16 2017-07-31 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2440 16 2017-06-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2441 16 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2442 16 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2443 16 2017-07-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2444 16 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2445 16 2017-07-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2446 16 2017-07-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2447 16 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2448 16 2017-07-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2449 16 2017-07-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2450 16 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2451 16 2017-06-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2452 16 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2453 16 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2454 16 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2455 16 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2456 16 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2457 16 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2458 16 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2459 16 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2460 16 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2461 43 2017-07-11 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2462 43 2017-07-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2463 43 2017-06-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2464 43 2017-06-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2465 43 2017-06-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2466 43 2017-06-22 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2467 43 2017-06-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2468 43 2017-07-25 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2469 43 2017-07-10 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2470 43 2017-08-02 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2471 43 2017-08-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2472 43 2017-07-18 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2473 43 2017-07-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2474 43 2017-07-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2475 43 2017-07-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2476 43 2017-07-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2477 43 2017-07-24 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2478 43 2017-06-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2479 43 2017-06-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2480 43 2017-07-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2481 43 2017-08-01 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2482 43 2017-06-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2483 43 2017-06-29 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2484 43 2017-06-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2485 43 2017-06-16 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2486 43 2017-06-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2487 43 2017-07-17 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2488 43 2017-06-15 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2489 43 2017-07-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2490 43 2017-07-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2491 43 2017-07-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2492 43 2017-06-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2493 43 2017-07-05 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2494 43 2017-07-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2495 43 2017-07-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2496 43 2017-07-31 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2497 43 2017-07-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2498 43 2017-07-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2499 43 2017-06-30 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2500 43 2017-08-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2501 43 2017-06-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2502 17 2017-06-22 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2503 17 2017-06-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2504 17 2017-06-09 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2505 17 2017-06-08 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2506 17 2017-06-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2507 17 2017-07-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2508 17 2017-07-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2509 17 2017-07-10 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2510 17 2017-07-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2511 17 2017-08-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2512 17 2017-06-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2513 17 2017-07-17 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2514 17 2017-06-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2515 17 2017-06-16 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2516 17 2017-08-01 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2517 17 2017-06-23 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2518 17 2017-06-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2519 17 2017-06-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2520 17 2017-07-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2521 17 2017-07-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2522 17 2017-07-31 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2523 17 2017-07-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2524 17 2017-07-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2525 17 2017-06-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2526 17 2017-07-11 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2527 17 2017-07-24 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2528 17 2017-07-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2529 17 2017-07-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2530 17 2017-07-18 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2531 17 2017-08-02 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2532 17 2017-07-25 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2533 17 2017-06-15 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2534 17 2017-07-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2535 17 2017-06-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2536 17 2017-06-29 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2537 17 2017-06-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2538 17 2017-07-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2539 17 2017-06-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2540 17 2017-08-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2541 17 2017-06-30 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2542 17 2017-06-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2543 17 2017-07-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2544 17 2017-07-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2545 17 2017-06-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2546 17 2017-07-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2547 2 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2548 2 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2549 2 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2550 2 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2551 2 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2552 2 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2553 2 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2554 2 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2555 2 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2556 2 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2557 2 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2558 2 2017-07-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2559 2 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2560 2 2017-07-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2561 2 2017-06-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2562 2 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2563 2 2017-06-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2564 2 2017-06-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2565 2 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2566 2 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2567 2 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2568 2 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2569 2 2017-07-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2570 2 2017-06-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2571 2 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2572 2 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2573 2 2017-06-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2574 2 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2575 2 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2576 2 2017-06-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2577 2 2017-07-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2578 2 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2579 2 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2580 2 2017-08-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2581 2 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2582 2 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2583 2 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2584 2 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2585 2 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2586 2 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2587 2 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2588 2 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2589 2 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2590 2 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2591 2 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2592 7 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2593 7 2017-07-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2594 7 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2595 7 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2596 7 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2597 7 2017-06-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2598 7 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2599 7 2017-06-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2600 7 2017-07-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2601 7 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2602 7 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2603 7 2017-07-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2604 7 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2605 7 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2606 7 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2607 7 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2608 7 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2609 7 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2610 7 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2611 7 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2612 7 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2613 7 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2614 7 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2615 7 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2616 7 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2617 7 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2618 7 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2619 7 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2620 7 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2621 7 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2622 7 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2623 7 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2624 7 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2625 7 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2626 7 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2627 7 2017-08-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2628 7 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2629 7 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2630 7 2017-07-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2631 7 2017-06-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2632 7 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2633 7 2017-06-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2634 7 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2635 7 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2636 7 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2637 9 2017-06-24 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2638 9 2017-06-25 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2639 9 2017-07-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2640 9 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2641 9 2017-06-18 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2642 9 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2643 9 2017-08-06 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2644 9 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2645 9 2017-07-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2646 9 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2647 9 2017-07-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2648 9 2017-07-30 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2649 9 2017-07-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2650 9 2017-07-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2651 9 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2652 9 2017-07-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2653 9 2017-07-29 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2654 9 2017-06-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2655 9 2017-07-15 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2656 9 2017-07-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2657 9 2017-07-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2658 9 2017-06-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2659 9 2017-06-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2660 9 2017-07-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2661 9 2017-06-10 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2662 9 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2663 9 2017-08-05 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2664 9 2017-07-09 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2665 9 2017-07-08 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2666 9 2017-07-22 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2667 9 2017-06-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2668 9 2017-08-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2669 9 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2670 9 2017-06-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2671 9 2017-06-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2672 9 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2673 9 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2674 9 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2675 9 2017-08-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2676 9 2017-06-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2677 9 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2678 9 2017-07-16 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2679 9 2017-06-17 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2680 9 2017-07-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2681 9 2017-07-23 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2682 \N 2017-06-23 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2683 \N 2017-06-16 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2684 \N 2017-07-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2685 \N 2017-07-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2686 \N 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2687 \N 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2688 \N 2017-07-20 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2689 \N 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2690 \N 2017-07-27 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2691 \N 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2692 \N 2017-06-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2693 \N 2017-06-09 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2694 \N 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2695 \N 2017-06-22 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2696 \N 2017-07-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2697 \N 2017-08-04 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2698 \N 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2699 \N 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2700 \N 2017-07-13 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2701 \N 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2702 \N 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2703 \N 2017-06-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2704 \N 2017-07-07 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2705 \N 2017-06-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2706 \N 2017-06-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2707 \N 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2708 \N 2017-06-15 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2709 \N 2017-07-21 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2710 \N 2017-07-14 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2711 \N 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2712 \N 2017-07-06 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2713 \N 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2714 \N 2017-07-28 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2715 \N 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2716 \N 2017-06-30 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2717 \N 2017-08-03 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2718 \N 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2719 \N 2017-06-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2720 \N 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2721 \N 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2722 \N 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2723 \N 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2724 \N 2017-08-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2725 \N 2017-07-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2726 \N 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2727 13 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2728 13 2017-06-11 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2729 13 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2730 13 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2731 13 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2732 13 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2733 13 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2734 13 2017-07-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2735 13 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2736 13 2017-08-06 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2737 13 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2738 13 2017-06-25 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2739 13 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2740 13 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2741 13 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2742 13 2017-07-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2743 13 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2744 13 2017-07-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2745 13 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2746 13 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2747 13 2017-07-02 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2748 13 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2749 13 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2750 13 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2751 13 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2752 13 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2753 13 2017-07-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2754 13 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2755 13 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2756 31 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2757 31 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2758 31 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2759 31 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2760 31 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2761 31 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2762 31 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2763 31 2017-06-09 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2764 31 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2765 31 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2766 31 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2767 31 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2768 31 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2769 31 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2770 31 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2771 31 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2772 31 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2773 31 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2774 31 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2775 31 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2776 31 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2777 31 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2778 31 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2779 31 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2780 31 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2781 12 2017-07-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2782 12 2017-07-14 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2783 12 2017-07-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2784 12 2017-06-30 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2785 12 2017-08-03 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2786 12 2017-07-15 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2787 12 2017-07-29 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2788 12 2017-07-28 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2789 12 2017-06-06 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2790 12 2017-07-07 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2791 12 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2792 12 2017-07-21 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2793 12 2017-06-15 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2794 12 2017-06-29 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2795 12 2017-07-18 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2796 12 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2797 12 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2798 12 2017-07-25 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2799 12 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2800 12 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2801 12 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2802 12 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2803 12 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2804 12 2017-07-11 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2805 12 2017-06-24 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2806 12 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2807 12 2017-07-04 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2808 12 2017-06-17 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2809 12 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2810 12 2017-07-20 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2811 12 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2812 12 2017-06-23 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2813 12 2017-08-01 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2814 12 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2815 12 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2816 12 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2817 12 2017-06-16 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2818 12 2017-06-20 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2819 12 2017-08-04 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2820 12 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2821 12 2017-06-27 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2822 12 2017-07-22 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2823 12 2017-07-08 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2824 12 2017-08-05 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2825 12 2017-07-13 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2826 12 2017-07-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2827 12 2017-06-10 10:30:00 15:30:00 17:30:00 21:45:00 01:00:00 \N \N +2828 12 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2829 12 2017-07-27 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2830 12 2017-07-01 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2831 12 2017-06-22 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2832 12 2017-06-08 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2833 12 2017-06-09 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2834 12 2017-06-13 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2835 23 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2836 23 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2837 23 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2838 23 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2839 23 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2840 23 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2841 23 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2842 23 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2843 23 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2844 23 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2845 23 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2846 23 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2847 23 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2848 23 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2849 23 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2850 23 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2851 23 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2852 23 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2853 23 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2854 23 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2855 23 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2856 23 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2857 23 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2858 23 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2859 23 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2860 23 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2861 23 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2862 23 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2863 23 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2864 23 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2865 23 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2866 23 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2867 23 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2868 23 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2869 23 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2870 23 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2871 23 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2872 23 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2873 23 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2874 21 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2875 21 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2876 21 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2877 21 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2878 21 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2879 21 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2880 21 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2881 21 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2882 21 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2883 21 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2884 21 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2885 21 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2886 21 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2887 21 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2888 21 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2889 21 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2890 21 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2891 21 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2892 21 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2893 21 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2894 21 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2895 21 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2896 21 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2897 21 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2898 21 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2899 21 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2900 21 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2901 21 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2902 21 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2903 21 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2904 21 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2905 21 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2906 21 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2907 21 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2908 21 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2909 21 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2910 21 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2911 21 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2912 10 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2913 10 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2914 10 2017-07-06 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2915 10 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2916 10 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2917 10 2017-07-02 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2918 10 2017-08-03 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2919 10 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2920 10 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2921 10 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2922 10 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2923 10 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2924 10 2017-06-29 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2925 10 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2926 10 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2927 10 2017-07-30 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2928 10 2017-06-15 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2929 10 2017-06-11 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2930 10 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2931 10 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2932 10 2017-08-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2933 10 2017-06-25 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2934 10 2017-06-18 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2935 10 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2936 10 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2937 10 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2938 10 2017-07-23 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2939 10 2017-07-16 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2940 10 2017-07-20 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2941 10 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2942 10 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2943 10 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2944 10 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2945 10 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2946 10 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2947 10 2017-07-09 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2948 10 2017-08-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2949 10 2017-07-13 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2950 10 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2951 10 2017-07-27 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2952 10 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2953 10 2017-06-08 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2954 10 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2955 10 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2956 10 2017-06-22 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2957 5 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2958 5 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2959 5 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2960 5 2017-07-20 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2961 5 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2962 5 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2963 5 2017-06-16 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2964 5 2017-06-23 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2965 5 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2966 5 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2967 5 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2968 5 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2969 5 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2970 5 2017-07-13 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2971 5 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2972 5 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2973 5 2017-08-04 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2974 5 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2975 5 2017-06-22 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2976 5 2017-06-08 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2977 5 2017-06-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2978 5 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2979 5 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2980 5 2017-07-27 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2981 5 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2982 5 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2983 5 2017-08-03 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2984 5 2017-06-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2985 5 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2986 5 2017-07-28 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2987 5 2017-07-06 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2988 5 2017-07-14 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2989 5 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2990 5 2017-06-15 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2991 5 2017-07-21 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2992 5 2017-06-29 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2993 5 2017-07-07 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2994 5 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2995 5 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2996 5 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2997 5 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2998 5 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2999 5 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +3000 5 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +3001 5 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +3002 44 2017-07-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3003 44 2017-07-20 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3004 44 2017-07-31 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3005 44 2017-07-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3006 44 2017-08-03 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3007 44 2017-06-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3008 44 2017-06-30 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3009 44 2017-07-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3010 44 2017-07-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3011 44 2017-07-05 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3012 44 2017-07-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3013 44 2017-06-29 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3014 44 2017-06-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3015 44 2017-06-16 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3016 44 2017-07-17 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3017 44 2017-07-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3018 44 2017-06-15 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3019 44 2017-06-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3020 44 2017-06-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3021 44 2017-07-07 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3022 44 2017-08-01 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3023 44 2017-06-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3024 44 2017-07-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3025 44 2017-07-24 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3026 44 2017-06-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3027 44 2017-07-25 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3028 44 2017-07-10 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3029 44 2017-08-02 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3030 44 2017-08-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3031 44 2017-07-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3032 44 2017-07-18 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3033 44 2017-07-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3034 44 2017-06-08 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3035 44 2017-06-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3036 44 2017-06-09 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3037 44 2017-06-22 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3038 44 2017-07-11 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3039 44 2017-07-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3040 44 2017-06-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3041 44 2017-06-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3042 22 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3043 22 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3044 22 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3045 22 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3046 22 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3047 22 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3048 22 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3049 22 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3050 22 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3051 22 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3052 22 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3053 22 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3054 22 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3055 22 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3056 22 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3057 22 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3058 22 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3059 22 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3060 22 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3061 22 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3062 22 2017-06-06 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N +3063 22 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3064 22 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3065 22 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3066 22 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3067 22 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3068 22 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +3069 22 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3070 22 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3071 22 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3072 22 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3073 22 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3074 22 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3075 22 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3076 22 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3077 22 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3078 22 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3079 22 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3080 22 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3081 22 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3082 22 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3083 22 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3084 3 2017-07-07 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3085 3 2017-06-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3086 3 2017-06-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3087 3 2017-06-23 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3088 3 2017-06-16 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3089 3 2017-06-29 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3090 3 2017-07-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3091 3 2017-06-15 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3092 3 2017-07-06 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3093 3 2017-07-31 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3094 3 2017-07-28 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3095 3 2017-07-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3096 3 2017-06-17 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3097 3 2017-06-30 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3098 3 2017-08-03 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3099 3 2017-07-02 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3100 3 2017-06-25 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3101 3 2017-06-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3102 3 2017-06-10 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3103 3 2017-06-18 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3104 3 2017-06-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3105 3 2017-06-09 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3106 3 2017-06-08 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3107 3 2017-06-24 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3108 3 2017-06-22 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3109 3 2017-07-01 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3110 3 2017-06-11 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3111 3 2017-07-03 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3112 3 2017-08-04 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3113 3 2017-07-10 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3114 3 2017-08-05 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3115 3 2017-07-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3116 3 2017-07-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3117 3 2017-08-06 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +\. + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; +1 Standard 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +\. + + +-- +-- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) FROM stdin; +1 normal t \N \N +5 congé extra t t #e26b0a +2 congé t t #fcd5b4 +4 congé maladie t t #f2dcdb +3 training t \N #b7dee8 +6 jour ferié t \N #92d050 +7 libre jours \N \N #0070c0 +\. + + +-- +-- Data for Name: apps; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) FROM stdin; +7 staff Employé(e)s Employé(e)s 1 group.svg 4 schema +8 timetrackers Pointeuses Pointeuses \N cube.svg 7 schema +10 sites Sites Sites \N cube.svg 6 schema +11 workplans Plans de travail Plans (modèles) 1 cube.svg 8 schema +9 planning Planning POT 1 cube.svg 5 schema +4 profile Profil mes coordonnées 1 user.svg 9 global +6 companies Entreprise entreprise 1 company.svg 10 global +5 users Utilisateurs autres utilisateurs 1 group.svg 11 global +\. + + +-- +-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email) FROM stdin; +1 DKS s.à r.l. 4, rue Principale 3770 Tétange Luxembourg \N \N \N portanova \N \N \N +\. + + +-- +-- Data for Name: maillayouts; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.maillayouts (id, layoutname, mailtemplate) FROM stdin; +\. + + +-- +-- Data for Name: mailtemplates; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.mailtemplates (id, templatename, emailtext, emaildatasql, mailfrom, mailsubject, id_maillayout) FROM stdin; +\. + + +-- +-- Data for Name: members; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.members (id, surname, prename, phone, id_user, id_company, job) FROM stdin; +1 Saffran Kilian \N 1 1 \N +\. + + +-- +-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.sessions (id, idsession, id_user, user_agent, remote_addr, created) FROM stdin; +111 uWpnqxhEFJt2MZxMoLSz4ZAZoc3ZJnu3aKhq8oVD 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:213c:73ba:ffa7:842b 2019-12-05 19:16:43.969105 +112 mUmGFzD4kPLyhHfJO9TDOGfCtsVAEefRYrotRRo1 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:7946:65e2:f587:8b74 2019-12-06 07:02:23.094765 +113 HaDg0Eh9nIk7lftrHDtQpaKiLWL66VoEWRKMmSLz 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-09 11:33:13.202044 +114 aSli1lR9B0ETjICf7IFjVxhphLd8dhRdZ2mRd4RE 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362 ::1 2019-12-10 15:55:53.526432 +122 Sp2D9CvtdjQHaxLPkEXgqSMSveIJwQde56I5y3oC 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:d970:312a:d5d:db83 2019-12-12 07:06:51.913155 +123 klCMzztihKleI4E0zhnmNMrlL8sAUIj5TLHjb0si 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 ::1 2019-12-13 08:27:53.789037 +93 5P7159lXg8xY83Iu7eZC3hj3Oi6x29jXOhPKg0yn 1 Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36 ::1 2019-12-04 14:58:48.993651 +98 9UisAitYaoxdqtBaWUI37R04CiBlFxcp0STuCOZRU 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-05 07:34:07.997426 +99 v6wZ65qozoWn5P32q4wg16224TcOAM1VJnLFj1UJ 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 192.168.178.23 2019-12-05 07:35:01.756219 +\. + + +-- +-- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.usergroups (id, usergroup, isdefault, groupname) FROM stdin; +1 superadmin \N SuperAdmin +2 admin \N Admin +3 company \N Entreprise +4 site \N Site +5 user t Utilisateur +\. + + +-- +-- Data for Name: useringroups; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.useringroups (id, id_user, id_group) FROM stdin; +1 1 1 +\. + + +-- +-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess) FROM stdin; +1 0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec 2019-10-10 17:12:11.934747 \N ksaffran@dks.lu \N \N \N +\. + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- + +SELECT pg_catalog.setval('demo.staff_id_seq', 1, true); + + +-- +-- Name: stations_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- + +SELECT pg_catalog.setval('demo.stations_id_seq', 1, false); + + +-- +-- Name: timetrackuser_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- + +SELECT pg_catalog.setval('demo.timetrackuser_id_seq', 5, true); + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.defaultweekworkplan_id_seq', 1, false); + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.defaultworkplan_id_seq', 1, false); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 1, true); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 1, false); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 45, true); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3117, true); + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); + + +-- +-- Name: apps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.apps_id_seq', 11, true); + + +-- +-- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.companies_id_seq', 1, true); + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.maillayouts_id_seq', 1, false); + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.mailtemplates_id_seq', 1, false); + + +-- +-- Name: members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.members_id_seq', 1, false); + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.sessions_id_seq', 123, true); + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.useringroups_id_seq', 1, true); + + +-- +-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.users_id_seq', 1, false); + + +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); + + +-- +-- Name: stations stations_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.stations + ADD CONSTRAINT stations_pkey PRIMARY KEY (id); + + +-- +-- Name: timetrackuser timetrackuser_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.timetrackuser + ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); + + +-- +-- Name: defaultweekworkplan defaultweekworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan + ADD CONSTRAINT defaultweekworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: defaultworkplan defaultworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultworkplan + ADD CONSTRAINT defaultworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); + + +-- +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); + + +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); + + +-- +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); + + +-- +-- Name: staffperiodbase staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffperiodbase + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); + + +-- +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); + + +-- +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffworkplan + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); + + +-- +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.worktypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); + + +-- +-- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_pkey PRIMARY KEY (id); + + +-- +-- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.companies + ADD CONSTRAINT company_pkey PRIMARY KEY (id); + + +-- +-- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.maillayouts + ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); + + +-- +-- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); + + +-- +-- Name: members members_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_pkey PRIMARY KEY (id); + + +-- +-- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT uniq_username UNIQUE (username); + + +-- +-- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.usergroups + ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); + + +-- +-- Name: useringroups useringroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_pkey PRIMARY KEY (id); + + +-- +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_pkey PRIMARY KEY (id); + + +-- +-- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); + + +-- +-- Name: vw_userlist _RETURN; Type: RULE; Schema: public; Owner: potlu_user +-- + +CREATE OR REPLACE VIEW public.vw_userlist AS + SELECT us.id, + mb.id AS id_member, + COALESCE(us.username, ''::text) AS username, + mb.prename, + mb.surname, + us.blocked, + string_agg(ug.groupname, ','::text) AS group_ids, + co.id AS id_company, + co.company + FROM ((((public.users us + LEFT JOIN public.members mb ON ((us.id = mb.id_user))) + LEFT JOIN public.useringroups uig ON ((us.id = uig.id_user))) + JOIN public.usergroups ug ON ((uig.id_group = ug.id))) + LEFT JOIN public.companies co ON ((mb.id_company = co.id))) + GROUP BY us.id, mb.id, co.id + ORDER BY mb.surname, mb.prename; + + +-- +-- Name: staffperiodbase trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- + +CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffperiodbase FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); + + +-- +-- Name: apps apps_usergroups_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_usergroups_fk FOREIGN KEY (id_usergroup) REFERENCES public.usergroups(id); + + +-- +-- Name: mailtemplates mailtemplates_maillayouts_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_maillayouts_fk FOREIGN KEY (id_maillayout) REFERENCES public.maillayouts(id); + + +-- +-- Name: members members_users_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_users_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: useringroups useringroups_idgroup_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_idgroup_fkey FOREIGN KEY (id_group) REFERENCES public.usergroups(id); + + +-- +-- Name: useringroups useringroups_iduser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_iduser_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: sessions usersession_users_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_users_fk FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.pg.schema.sql b/dev/db/potlu_db.pg.schema.sql new file mode 100644 index 00000000..f6c8ed80 --- /dev/null +++ b/dev/db/potlu_db.pg.schema.sql @@ -0,0 +1,2554 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: demo; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA demo; + + +-- +-- Name: portanova; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA portanova; + + +-- +-- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + iduser int4; + newidsession text := null; +begin + select id into iduser from public.users where lower(username)=lower(vusername) and userpassword = vpassword and "blocked" is null; + if (iduser is not null) then + delete from public.sessions where id_user= iduser and remote_addr= vremoteaddr and user_agent= vuseragent; + insert into public.sessions (id_user,idsession,remote_addr,user_agent) VALUES( iduser,public.random_string(40), vremoteaddr,vuseragent) returning idsession into newidsession; + end if; + return newidsession; +end; +$$; + + +-- +-- Name: getdates(date, integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getdates(startdate date, days integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(startdate + s*'1day'::interval) as daydate from generate_series(0,days-1) s ; + END; +$$; + + +-- +-- Name: getdateslist(date, integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getdateslist(startdate date, days integer) RETURNS text + LANGUAGE plpgsql + AS $$ + declare + ret text; + begin + select string_agg(to_char(getdates,'YYYY-MM-DD'),',') into ret from getdates(startdate,days); + return ret; + END; +$$; + + +-- +-- Name: getmondays(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getmondays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as mondays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=1; + END; +$$; + + +-- +-- Name: getsession(text, text, text); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id integer, username text, usergroups text, userschemata text) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select se.idsession,us.id,us.username,string_agg(distinct(aug.usergroup),',') as usergroups ,co.schemata as userschemata from sessions se +join users us on (us.id=se.id_user) +left join useringroups uig on (us.id=uig.id_user) +left join usergroups aug on (aug.id=uig.id_group) +left join members mb on (mb.id_user=us.id) +left join companies co on (co.id=mb.id_company) +where se.idsession= vidsession +and se.remote_addr= vremoteaddr +and se.user_agent= vuseragent and us.blocked is null group by se.id,us.id,mb.id,co.id; + END; +$$; + + +-- +-- Name: getsundays(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getsundays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=7; + END; +$$; + + +-- +-- Name: getweeks(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getweeks(vyear integer) RETURNS TABLE(cw integer, mondays date, sundays date) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select extract('week' from daydate)::int4 as cw,date(daydate - interval '3 days') as mondays , date(daydate + interval '3 days') as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=4; + END; +$$; + + +-- +-- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.random_string(vlength integer) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + randstr text := null; +BEGIN +SELECT string_agg (substr('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', ceil (random() * 62)::integer, 1), '') into randstr +FROM generate_series(1, vlength); +return randstr; +end; +$$; + + +-- +-- Name: trg_update_basemonthhours(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_basemonthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +-- +-- Name: trg_update_modified(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_modified() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.modified = Current_timestamp; + + RETURN NEW; + END; +$$; + + +-- +-- Name: trg_update_monthhours(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_monthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +-- +-- Name: trg_update_monthlyhours(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_monthlyhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: staff; Type: TABLE; Schema: demo; Owner: - +-- + +CREATE TABLE demo.staff ( + id integer NOT NULL, + staffident text, + surname text, + prename text, + pincde text, + fingerprint text, + stations json, + id_user integer +); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: demo; Owner: - +-- + +CREATE SEQUENCE demo.staff_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: - +-- + +ALTER SEQUENCE demo.staff_id_seq OWNED BY demo.staff.id; + + +-- +-- Name: stations; Type: TABLE; Schema: demo; Owner: - +-- + +CREATE TABLE demo.stations ( + id integer NOT NULL, + station text, + address text, + plz text, + city text, + country text, + installdate date, + isactive boolean, + hostname text +); + + +-- +-- Name: stations_id_seq; Type: SEQUENCE; Schema: demo; Owner: - +-- + +CREATE SEQUENCE demo.stations_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: stations_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: - +-- + +ALTER SEQUENCE demo.stations_id_seq OWNED BY demo.stations.id; + + +-- +-- Name: timetrackuser; Type: TABLE; Schema: demo; Owner: - +-- + +CREATE TABLE demo.timetrackuser ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone +); + + +-- +-- Name: timetrackuser_id_seq; Type: SEQUENCE; Schema: demo; Owner: - +-- + +CREATE SEQUENCE demo.timetrackuser_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: timetrackuser_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: - +-- + +ALTER SEQUENCE demo.timetrackuser_id_seq OWNED BY demo.timetrackuser.id; + + +-- +-- Name: defaultweekworkplan; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.defaultweekworkplan ( + id integer NOT NULL, + id_staff integer, + startdate date, + mon json, + tue json, + wed json, + thu json, + fri json, + sat json, + sun json +); + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.defaultweekworkplan_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.defaultweekworkplan_id_seq OWNED BY portanova.defaultweekworkplan.id; + + +-- +-- Name: defaultworkplan; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.defaultworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + plannedtimes json, + vacancytimes json, + presencetimes json +); + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.defaultworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.defaultworkplan_id_seq OWNED BY portanova.defaultworkplan.id; + + +-- +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.reportperiod_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.sites_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staff_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staff_id_seq OWNED BY portanova.staff.id; + + +-- +-- Name: staffgroups; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffgroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffgroups_id_seq OWNED BY portanova.staffgroups.id; + + +-- +-- Name: staffperiodbase; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffperiodbase ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric +); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffperiodbase_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffperiodbase.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffvacancy_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffvacancyyear_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM portanova.reportperiod; + + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM portanova.staff; + + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS calweek, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_start1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (portanova.vw_staffworkplan_weekly sp_dwt + LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM portanova.workplans; + + +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM portanova.workplans; + + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM portanova.workplans; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.workplans_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.worktypes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; + + +-- +-- Name: apps; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.apps ( + id integer NOT NULL, + app text NOT NULL, + description text, + name text, + id_usergroup integer, + icon text, + sort integer, + menutype text +); + + +-- +-- Name: apps_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.apps_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: apps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.apps_id_seq OWNED BY public.apps.id; + + +-- +-- Name: companies; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.companies ( + id integer NOT NULL, + company text, + address text, + zip text, + city text, + country text, + tradetype text, + comregister text, + vatnumber text, + schemata text, + validated boolean, + schemata2 json, + email text +); + + +-- +-- Name: companies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.companies_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.companies_id_seq OWNED BY public.companies.id; + + +-- +-- Name: maillayouts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.maillayouts ( + id integer NOT NULL, + layoutname text, + mailtemplate text +); + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.maillayouts_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.maillayouts_id_seq OWNED BY public.maillayouts.id; + + +-- +-- Name: mailtemplates; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.mailtemplates ( + id integer NOT NULL, + templatename text DEFAULT NULL::character varying, + emailtext text, + emaildatasql text, + mailfrom text, + mailsubject text DEFAULT NULL::character varying, + id_maillayout integer +); + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.mailtemplates_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.mailtemplates_id_seq OWNED BY public.mailtemplates.id; + + +-- +-- Name: members; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.members ( + id integer NOT NULL, + surname text, + prename text, + phone text, + id_user bigint, + id_company integer, + job text +); + + +-- +-- Name: members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.members_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.members_id_seq OWNED BY public.members.id; + + +-- +-- Name: sessions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.sessions ( + id bigint NOT NULL, + idsession text NOT NULL, + id_user bigint, + user_agent text, + remote_addr text, + created timestamp without time zone DEFAULT now() +); + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.sessions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; + + +-- +-- Name: usergroups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.usergroups ( + id integer NOT NULL, + usergroup text NOT NULL, + isdefault boolean, + groupname text +); + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.usergroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.usergroups_id_seq OWNED BY public.usergroups.id; + + +-- +-- Name: useringroups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.useringroups ( + id integer NOT NULL, + id_user bigint, + id_group bigint +); + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.useringroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.useringroups_id_seq OWNED BY public.useringroups.id; + + +-- +-- Name: users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.users ( + id integer NOT NULL, + userpassword text, + created timestamp without time zone DEFAULT now(), + blocked boolean, + username text, + regcode text, + vcode text, + schemaaccess json +); + + +-- +-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.users_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; + + +-- +-- Name: vw_companydata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_companydata AS + SELECT companies.id, + companies.company, + companies.address, + companies.zip, + companies.city, + companies.country, + companies.tradetype, + companies.comregister, + companies.vatnumber, + companies.schemata AS link, + companies.validated + FROM public.companies; + + +-- +-- Name: vw_companylist; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_companylist AS + SELECT co.id, + co.company, + co.address, + co.zip, + co.city, + co.country, + ((((((co.address || '\n'::text) || co.zip) || ' '::text) || co.city) || ' '::text) || co.country) AS dspaddress, + co.schemata + FROM public.companies co; + + +-- +-- Name: vw_memberdata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_memberdata AS + SELECT members.id, + members.surname, + members.prename, + members.phone, + members.id_user, + members.id_company, + members.job + FROM public.members; + + +-- +-- Name: vw_userdata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_userdata AS + SELECT users.id, + users.username + FROM public.users; + + +-- +-- Name: vw_userlist; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_userlist AS +SELECT + NULL::integer AS id, + NULL::integer AS id_member, + NULL::text AS username, + NULL::text AS prename, + NULL::text AS surname, + NULL::boolean AS blocked, + NULL::text AS group_ids, + NULL::integer AS id_company, + NULL::text AS company; + + +-- +-- Name: staff id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staff ALTER COLUMN id SET DEFAULT nextval('demo.staff_id_seq'::regclass); + + +-- +-- Name: stations id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.stations_id_seq'::regclass); + + +-- +-- Name: timetrackuser id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); + + +-- +-- Name: defaultweekworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultweekworkplan_id_seq'::regclass); + + +-- +-- Name: defaultworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultworkplan_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); + + +-- +-- Name: staffperiodbase id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffperiodbase ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); + + +-- +-- Name: apps id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); + + +-- +-- Name: companies id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); + + +-- +-- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); + + +-- +-- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); + + +-- +-- Name: members id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass); + + +-- +-- Name: sessions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); + + +-- +-- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); + + +-- +-- Name: useringroups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups ALTER COLUMN id SET DEFAULT nextval('public.useringroups_id_seq'::regclass); + + +-- +-- Name: users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); + + +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); + + +-- +-- Name: stations stations_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.stations + ADD CONSTRAINT stations_pkey PRIMARY KEY (id); + + +-- +-- Name: timetrackuser timetrackuser_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.timetrackuser + ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); + + +-- +-- Name: defaultweekworkplan defaultweekworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan + ADD CONSTRAINT defaultweekworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: defaultworkplan defaultworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultworkplan + ADD CONSTRAINT defaultworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); + + +-- +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); + + +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); + + +-- +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); + + +-- +-- Name: staffperiodbase staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffperiodbase + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); + + +-- +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); + + +-- +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffworkplan + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); + + +-- +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.worktypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); + + +-- +-- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_pkey PRIMARY KEY (id); + + +-- +-- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.companies + ADD CONSTRAINT company_pkey PRIMARY KEY (id); + + +-- +-- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.maillayouts + ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); + + +-- +-- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); + + +-- +-- Name: members members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_pkey PRIMARY KEY (id); + + +-- +-- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT uniq_username UNIQUE (username); + + +-- +-- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.usergroups + ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); + + +-- +-- Name: useringroups useringroups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_pkey PRIMARY KEY (id); + + +-- +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_pkey PRIMARY KEY (id); + + +-- +-- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); + + +-- +-- Name: vw_userlist _RETURN; Type: RULE; Schema: public; Owner: - +-- + +CREATE OR REPLACE VIEW public.vw_userlist AS + SELECT us.id, + mb.id AS id_member, + COALESCE(us.username, ''::text) AS username, + mb.prename, + mb.surname, + us.blocked, + string_agg(ug.groupname, ','::text) AS group_ids, + co.id AS id_company, + co.company + FROM ((((public.users us + LEFT JOIN public.members mb ON ((us.id = mb.id_user))) + LEFT JOIN public.useringroups uig ON ((us.id = uig.id_user))) + JOIN public.usergroups ug ON ((uig.id_group = ug.id))) + LEFT JOIN public.companies co ON ((mb.id_company = co.id))) + GROUP BY us.id, mb.id, co.id + ORDER BY mb.surname, mb.prename; + + +-- +-- Name: staffperiodbase trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: - +-- + +CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffperiodbase FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); + + +-- +-- Name: apps apps_usergroups_fk; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_usergroups_fk FOREIGN KEY (id_usergroup) REFERENCES public.usergroups(id); + + +-- +-- Name: mailtemplates mailtemplates_maillayouts_fk; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_maillayouts_fk FOREIGN KEY (id_maillayout) REFERENCES public.maillayouts(id); + + +-- +-- Name: members members_users_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_users_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: useringroups useringroups_idgroup_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_idgroup_fkey FOREIGN KEY (id_group) REFERENCES public.usergroups(id); + + +-- +-- Name: useringroups useringroups_iduser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_iduser_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: sessions usersession_users_fk; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_users_fk FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.portanova.pg.data.sql b/dev/db/potlu_db.portanova.pg.data.sql new file mode 100644 index 00000000..68d29b76 --- /dev/null +++ b/dev/db/potlu_db.portanova.pg.data.sql @@ -0,0 +1,1641 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Data for Name: defaultweekworkplan; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: defaultworkplan; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (1, 'Période 1 2020', '2019-12-30', '2020-02-23'); + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (1, 'A100', 'NISTRI', 'ANGELA', 'serveuse', '1987-03-27', '2015-06-22', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (4, 'A101', 'JOURDAN', 'JOSIAN', 'serveuse', '1981-01-29', '2015-04-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (5, 'A102', 'ARENGA', 'TERESA', 'serveuse', '1981-06-15', '2015-03-10', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (6, 'A103', 'BARROSO', 'MARIA', 'serveuse', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (7, 'A104', 'STIPA', 'CRISTIAN', 'serveur', '1975-08-08', '2015-11-09', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (15, '5558', 'DEDJA', 'CLAIDIO', 'Barman', '1994-02-24', '2014-11-15', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (16, '7595', 'PUGLIESE', 'GIUSEPPE', 'serveur/Barman', '1995-11-05', '2015-10-08', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (8, 'A105', 'LIBERTI', 'RICCARDO', 'serveur', '1990-06-19', '2016-02-13', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (11, 'A106', 'ARMOCIDA', 'Domenico', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (12, 'A107', 'MORTASSI', 'KARIM', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (13, 'A108', 'IRIA', 'FABIO', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (14, 'A109', 'SERGIO', 'SERGIO', 'serveur', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (18, 'A200', NULL, NULL, 'Barman', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (20, 'A110', 'QUATTRONE', 'DEMETRIO', 'Cuisinier', '1950-06-27', '2015-12-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (24, 'A111', 'RAMOS DA SILVA', 'JOHNY', 'cuisinier', '1966-08-25', '2005-05-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (25, 'A112', 'VICINI', 'DAVIDE', NULL, NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (26, 'A113', 'LAMA', 'ANGELO', 'commis de cuisine', '1992-11-20', '2008-07-10', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (30, 'A114', 'ILIC', 'JULIEN', 'apprenti', '1995-04-22', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (31, 'A115', 'SOMNEZ', 'TUNAHAN', NULL, NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (36, 'A117', 'DA LUZ', 'CANDIDA', 'plongeus', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (37, 'A118', 'CRISCIONE', 'EMANUELE', 'resp. de réception', '1981-09-18', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (41, 'A119', 'SONMEZ', 'TUNAHAN', 'apprenti', '1998-06-15', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (42, 'A120', 'IRIA', 'SILVA FABIO', 'apprenti', '1988-06-29', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (43, 'A121', 'MULLER', 'RICA', 'secrétaire de direction', '1966-12-02', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (44, 'A122', 'BRUCCOLERI', 'SARAH', 'attachée de direction', '1984-11-01', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (45, '100', 'PRESTI', 'ADRIANO', 'gérant', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (2, '5020', 'MATIAS', 'RAPHAEL', 'serveur', '1975-01-26', '2005-04-19', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (3, '6600', 'ALIF', 'DIDIER', 'serveur', '1968-04-14', '2007-08-14', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (9, '5502', 'COPPOLA', 'CHRISTIAN', 'serveur', '1990-11-25', '2016-01-18', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (21, '8775', 'ZAKLAN', 'ZORAN', 'cuisinier', '1959-05-25', '2005-01-08', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (22, '5695', 'ELKAOUI', 'MOURAD', 'cuisinier', '1973-02-12', '2014-04-15', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (23, '5503', 'CORONEL', 'SILVINO ROSA', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (27, '7120', 'MELO', 'IVO TIAGO', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (28, '7600', 'PREZZIOSA', 'MATTEO', 'pizzaiolo', '1959-03-26', '2012-10-03', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (29, '5250', 'BOUALI', 'AMAR', 'aide-pâtissier/commis de cuisine', '1980-02-20', '2015-06-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (32, '5480', 'COIMBRA ABRANTES', ' MARIA', 'commis de cuisine', '1969-09-24', '2006-10-23', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (33, '5540', 'DE BRITO', 'Djela', 'commis de cuisine', '1975-01-15', '1995-07-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (34, '7591', 'PEREIRA GOMES', 'ANTONIA', 'plongeuse', '1987-04-29', '1992-03-15', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (35, '5600', 'DOS SANTOS', 'Alcinda', 'plongeuse', '1960-12-26', '2011-07-05', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (38, '7980', 'SCHMITGEN', 'TANUCCIA', 'Hôtesse d''accueil/serveuse', '1964-01-20', '2010-10-04', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (39, '2701', 'KIEFFER-WEILER', 'LILIANNE', 'hôtesse d''accueil', '1958-04-21', '2015-07-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (40, '8725', 'YAKOBSON', 'YULIYA', 'hôtesse d''accueil', '1974-04-02', '2011-10-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (10, '8501', 'TAVERNA', 'Greta', 'serveuse', NULL, '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (17, '5280', 'BULAKU', 'ENVER', 'concierge/technicien', '1971-02-08', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (19, '1172', 'BUCHICCHIO', 'DONATO ANTONIO', ' chef cuisinier', '1970-10-23', '2000-01-01', NULL); + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffperiodbase; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (39, 39, '2015-07-01', 64.8750000000000000, 15); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (40, 40, '2011-10-01', 86.5000000000000000, 20); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (11, 11, '2000-01-01', 129.7500000000000000, 30); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (43, 43, '2000-01-01', 129.7500000000000000, 30); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (6, 6, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (10, 10, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (12, 12, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (13, 13, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (14, 14, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (17, 17, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (19, 19, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (25, 25, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (30, 30, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (31, 31, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (36, 36, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (37, 37, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (41, 41, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (42, 42, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (44, 44, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (45, 45, '2000-01-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (1, 1, '2015-06-22', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (2, 2, '2005-04-19', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (3, 3, '2007-08-14', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (4, 4, '2015-04-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (5, 5, '2015-03-10', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (7, 7, '2015-11-09', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (8, 8, '2016-02-13', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (9, 9, '2016-01-18', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (15, 15, '2014-11-15', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (16, 16, '2015-10-08', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (18, 18, '2016-05-30', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (20, 20, '2015-12-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (21, 21, '2005-01-08', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (22, 22, '2014-04-15', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (23, 23, '2013-01-07', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (24, 24, '2005-05-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (26, 26, '2008-07-10', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (27, 27, '2013-01-07', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (28, 28, '2012-10-03', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (29, 29, '2015-06-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (32, 32, '2006-10-23', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (33, 33, '1995-07-01', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (34, 34, '1992-03-15', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (35, 35, '2011-07-05', 173.0000000000000000, 40); +INSERT INTO portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) VALUES (38, 38, '2010-10-04', 173.0000000000000000, 40); + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1817, 34, '2017-07-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1847, 37, '2017-07-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2405, 20, '2017-06-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1767, 8, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1768, 8, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1769, 8, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1770, 8, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1771, 8, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1772, 8, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1773, 8, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1774, 8, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1775, 8, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1776, 8, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1777, 8, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1778, 8, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1779, 8, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1780, 8, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1781, 8, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1782, 8, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1783, 8, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1784, 8, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1785, 8, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1786, 8, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1787, 8, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1788, 8, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1789, 8, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1790, 8, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1791, 8, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1792, 8, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1793, 8, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1794, 8, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1795, 8, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1796, 8, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1797, 8, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1798, 8, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1799, 8, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1800, 8, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1801, 8, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1802, 8, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1803, 8, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1804, 8, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1805, 8, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1806, 8, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1807, 8, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1808, 8, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1809, 8, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1810, 8, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1811, 8, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1812, 34, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1813, 34, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1814, 34, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1815, 34, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1816, 34, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1818, 34, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1819, 34, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1820, 34, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1821, 34, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1822, 34, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1823, 34, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1824, 34, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1825, 34, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1826, 34, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1827, 34, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1828, 34, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1829, 34, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1830, 34, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1831, 34, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1832, 34, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1833, 34, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1834, 34, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1835, 34, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1836, 34, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1837, 34, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1838, 34, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1839, 34, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1840, 34, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1841, 34, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1842, 34, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1843, 34, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1844, 34, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1845, 34, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1846, 34, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1848, 37, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1849, 37, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1850, 37, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1851, 37, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1852, 37, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1853, 36, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1854, 36, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1855, 36, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1856, 36, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1857, 36, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1858, 36, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1859, 36, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1860, 36, '2017-06-05', '11:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1861, 36, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1862, 36, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1863, 36, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1864, 36, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1865, 36, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1866, 36, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1867, 36, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1868, 36, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1869, 36, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1870, 36, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1871, 36, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1872, 36, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1873, 36, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1874, 36, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1875, 36, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1876, 36, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1877, 36, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1878, 36, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1879, 36, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1880, 36, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1881, 36, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1882, 36, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1883, 36, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1884, 36, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1885, 36, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1886, 36, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1887, 25, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1888, 25, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1889, 25, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1890, 25, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1891, 25, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1892, 25, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1893, 25, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1894, 25, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1895, 25, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1896, 25, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1897, 25, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1898, 25, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1899, 25, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1900, 25, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1901, 25, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1902, 25, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1903, 25, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1904, 25, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1905, 25, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1906, 25, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1907, 25, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1908, 25, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1909, 25, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1910, 25, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1911, 25, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1912, 25, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1913, 25, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1914, 25, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1915, 25, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1916, 25, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1917, 25, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1918, 25, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1919, 25, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1920, 33, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1921, 33, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1922, 33, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1923, 33, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1924, 33, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1925, 33, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1926, 33, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1927, 33, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1928, 33, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1929, 33, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1930, 33, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1931, 33, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1932, 33, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1933, 33, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1934, 33, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1935, 33, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1936, 33, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1937, 33, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1938, 33, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1939, 33, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1940, 33, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1941, 33, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1942, 33, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1943, 33, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1944, 33, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1945, 33, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1946, 33, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1947, 33, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1948, 33, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1949, 33, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1950, 33, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1951, 33, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1952, 33, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1953, 33, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1954, 33, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1955, 33, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1956, 33, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1957, 33, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1958, 33, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1959, 33, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1960, 33, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1961, 33, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1962, 33, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1963, 11, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1964, 11, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1965, 11, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1966, 11, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1967, 11, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1968, 11, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1969, 11, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1970, 11, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1971, 11, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1972, 11, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1973, 11, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1974, 11, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1975, 11, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1976, 11, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1977, 11, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1978, 11, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1979, 11, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1980, 11, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1981, 11, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1982, 11, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1983, 11, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1984, 11, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1985, 11, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1986, 11, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1987, 11, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1988, 11, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1989, 11, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1990, 11, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1991, 11, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1992, 11, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1993, 11, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1994, 11, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1995, 11, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1996, 11, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1997, 11, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1998, 11, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1999, 11, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2000, 11, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2001, 11, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2002, 11, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2003, 11, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2004, 11, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2005, 11, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2006, 29, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2007, 29, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2008, 29, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2009, 29, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2010, 29, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2011, 29, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2012, 29, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2013, 29, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2014, 29, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2015, 29, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2016, 29, '2017-07-06', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2017, 29, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2018, 29, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2019, 29, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2020, 29, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2021, 29, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2022, 29, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2023, 29, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2024, 29, '2017-07-07', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2025, 29, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2026, 29, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2027, 29, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2028, 29, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2029, 29, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2030, 29, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2031, 29, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2032, 29, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2033, 29, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2034, 29, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2035, 29, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2036, 29, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2037, 29, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2038, 29, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2039, 29, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2040, 29, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2041, 29, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2042, 29, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2043, 29, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2044, 29, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2045, 32, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2046, 32, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2047, 32, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2048, 32, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2049, 32, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2050, 32, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2051, 32, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2052, 32, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2053, 32, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2054, 32, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2055, 32, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2056, 32, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2057, 32, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2058, 32, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2059, 32, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2060, 32, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2061, 32, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2062, 32, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2063, 32, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2064, 32, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2065, 32, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2066, 32, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2067, 32, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2068, 32, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2069, 32, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2070, 32, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2071, 32, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2072, 32, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2073, 15, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2074, 15, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2075, 15, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2076, 15, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2077, 15, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2078, 15, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2079, 15, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2080, 15, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2081, 15, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2082, 15, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2083, 15, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2084, 15, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2085, 15, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2086, 15, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2087, 15, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2088, 15, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2089, 15, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2090, 15, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2091, 15, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2092, 15, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2093, 15, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2094, 15, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2095, 15, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2096, 15, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2097, 15, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2098, 15, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2099, 15, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2100, 15, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2101, 15, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2102, 15, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2103, 15, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2104, 24, '2017-07-12', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2105, 24, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2106, 24, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2107, 24, '2017-07-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2108, 24, '2017-07-16', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2109, 24, '2017-07-31', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2110, 24, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2111, 24, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2112, 24, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2113, 24, '2017-08-03', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2114, 24, '2017-07-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2115, 24, '2017-06-21', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2116, 24, '2017-06-17', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2117, 24, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2118, 24, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2119, 24, '2017-08-01', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2120, 24, '2017-06-29', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2121, 24, '2017-06-28', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2122, 24, '2017-06-16', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2123, 24, '2017-07-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2124, 24, '2017-06-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2125, 24, '2017-06-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2126, 24, '2017-07-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2127, 24, '2017-07-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2128, 24, '2017-08-04', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2129, 24, '2017-08-02', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2130, 24, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2131, 24, '2017-07-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2132, 24, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2133, 24, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2134, 24, '2017-07-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2135, 24, '2017-07-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2136, 24, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2137, 24, '2017-06-18', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2138, 24, '2017-06-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2139, 24, '2017-06-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2140, 24, '2017-06-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2141, 24, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2142, 24, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2143, 24, '2017-06-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2144, 1, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2145, 1, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2146, 1, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2147, 1, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2148, 1, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2149, 1, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2150, 1, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2151, 1, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2152, 1, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2153, 1, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2154, 1, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2155, 1, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2156, 1, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2157, 1, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2158, 1, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2159, 1, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2160, 1, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2161, 1, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2162, 1, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2163, 1, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2164, 1, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2165, 1, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2166, 1, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2167, 1, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2168, 1, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2169, 1, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2170, 1, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2171, 1, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2172, 1, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2173, 1, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2174, 26, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2175, 26, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2176, 26, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2177, 26, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2178, 26, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2179, 26, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2180, 26, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2181, 26, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2182, 26, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2183, 26, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2184, 26, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2185, 26, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2186, 26, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2187, 26, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2188, 26, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2189, 26, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2190, 26, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2191, 26, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2192, 26, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2193, 26, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2194, 26, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2195, 26, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2196, 26, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2197, 26, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2198, 26, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2199, 26, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2200, 26, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2201, 26, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2202, 26, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2203, 26, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2204, 26, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2205, 26, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2206, 26, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2207, 26, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2208, 26, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2209, 26, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2210, 26, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2211, 26, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2212, 30, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2213, 30, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2214, 30, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2215, 30, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2216, 30, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2217, 30, '2017-06-25', '10:30:00', '14:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2218, 30, '2017-07-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2219, 30, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2220, 30, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2221, 30, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2222, 30, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2223, 30, '2017-07-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2224, 30, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2225, 30, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2226, 30, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2227, 30, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2228, 30, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2229, 30, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2230, 30, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2231, 30, '2017-07-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2232, 28, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2233, 28, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2234, 28, '2017-06-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2235, 28, '2017-06-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2236, 28, '2017-06-26', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2237, 28, '2017-06-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2238, 28, '2017-07-27', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2239, 28, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2240, 28, '2017-07-24', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2241, 28, '2017-07-22', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2242, 28, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2243, 28, '2017-07-13', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2244, 28, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2245, 28, '2017-07-26', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2246, 28, '2017-07-19', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2247, 28, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2248, 28, '2017-07-25', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2249, 28, '2017-06-27', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2250, 28, '2017-07-30', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2251, 28, '2017-07-21', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2252, 28, '2017-06-20', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2253, 28, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2254, 28, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2255, 28, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2256, 28, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2257, 28, '2017-06-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2258, 28, '2017-07-15', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2259, 28, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2260, 28, '2017-07-29', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2261, 28, '2017-07-20', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2262, 28, '2017-07-28', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2263, 28, '2017-07-16', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2264, 28, '2017-07-23', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2265, 28, '2017-07-12', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2266, 28, '2017-07-14', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2267, 28, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2268, 19, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2269, 19, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2270, 19, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2271, 19, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2272, 19, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2273, 19, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2274, 19, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2275, 19, '2017-06-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2276, 19, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2277, 19, '2017-06-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2278, 19, '2017-07-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2279, 19, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2280, 19, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2281, 19, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2282, 19, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2283, 19, '2017-06-21', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2284, 19, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2285, 19, '2017-06-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2286, 19, '2017-07-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2287, 19, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2288, 19, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2289, 19, '2017-06-23', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2290, 19, '2017-06-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2291, 19, '2017-06-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2292, 19, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2293, 35, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2294, 35, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2295, 35, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2296, 35, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2297, 35, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2298, 35, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2299, 35, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2300, 35, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2301, 35, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2302, 35, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2303, 35, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2304, 35, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2305, 35, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2306, 35, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2307, 35, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2308, 35, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2309, 35, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2310, 35, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2311, 35, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2312, 35, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2313, 35, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2314, 35, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2315, 35, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2316, 35, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2317, 35, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2318, 35, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2319, 35, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2320, 35, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2321, 35, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2322, 35, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2323, 35, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2324, 35, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2325, 35, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2326, 4, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2327, 4, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2328, 4, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2329, 4, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2330, 4, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2331, 4, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2332, 4, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2333, 4, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2334, 4, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2335, 4, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2336, 4, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2337, 4, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2338, 4, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2339, 4, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2340, 4, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2341, 4, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2342, 4, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2343, 4, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2344, 4, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2345, 4, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2346, 4, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2347, 4, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2348, 4, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2349, 4, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2350, 4, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2351, 4, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2352, 4, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2353, 4, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2354, 4, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2355, 4, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2356, 4, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2357, 4, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2358, 4, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2359, 4, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2360, 4, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2361, 4, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2362, 4, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2363, 4, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2364, 4, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2365, 4, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2366, 4, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2367, 4, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2368, 4, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2369, 4, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2370, 4, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2371, 20, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2372, 20, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2373, 20, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2374, 20, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2375, 20, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2376, 20, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2377, 20, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2378, 20, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2379, 20, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2380, 20, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2381, 20, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2382, 20, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2383, 20, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2384, 20, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2385, 20, '2017-06-14', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2386, 20, '2017-06-15', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2387, 20, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2388, 20, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2389, 20, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2390, 20, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2391, 20, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2392, 20, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2393, 20, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2394, 20, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2395, 20, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2396, 20, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2397, 20, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2398, 20, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2399, 20, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2400, 20, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2401, 20, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2402, 20, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2403, 20, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2404, 20, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2406, 20, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2407, 20, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2408, 20, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2409, 20, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2410, 20, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2411, 20, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2412, 20, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2413, 20, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2414, 20, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2415, 20, '2017-06-16', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2416, 16, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2417, 16, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2418, 16, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2419, 16, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2420, 16, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2421, 16, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2422, 16, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2423, 16, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2424, 16, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2425, 16, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2426, 16, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2427, 16, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2428, 16, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2429, 16, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2430, 16, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2431, 16, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2432, 16, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2433, 16, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2434, 16, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2435, 16, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2436, 16, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2437, 16, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2438, 16, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2439, 16, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2440, 16, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2441, 16, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2442, 16, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2443, 16, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2444, 16, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2445, 16, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2446, 16, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2447, 16, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2448, 16, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2449, 16, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2450, 16, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2451, 16, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2452, 16, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2453, 16, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2454, 16, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2455, 16, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2456, 16, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2457, 16, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2458, 16, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2459, 16, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2460, 16, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2461, 43, '2017-07-11', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2462, 43, '2017-07-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2463, 43, '2017-06-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2464, 43, '2017-06-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2465, 43, '2017-06-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2466, 43, '2017-06-22', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2467, 43, '2017-06-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2468, 43, '2017-07-25', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2469, 43, '2017-07-10', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2470, 43, '2017-08-02', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2471, 43, '2017-08-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2472, 43, '2017-07-18', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2473, 43, '2017-07-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2474, 43, '2017-07-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2475, 43, '2017-07-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2476, 43, '2017-07-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2477, 43, '2017-07-24', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2478, 43, '2017-06-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2479, 43, '2017-06-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2480, 43, '2017-07-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2481, 43, '2017-08-01', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2482, 43, '2017-06-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2483, 43, '2017-06-29', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2484, 43, '2017-06-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2485, 43, '2017-06-16', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2486, 43, '2017-06-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2487, 43, '2017-07-17', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2488, 43, '2017-06-15', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2489, 43, '2017-07-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2490, 43, '2017-07-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2491, 43, '2017-07-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2492, 43, '2017-06-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2493, 43, '2017-07-05', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2494, 43, '2017-07-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2495, 43, '2017-07-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2496, 43, '2017-07-31', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2497, 43, '2017-07-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2498, 43, '2017-07-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2499, 43, '2017-06-30', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2500, 43, '2017-08-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2501, 43, '2017-06-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2502, 17, '2017-06-22', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2503, 17, '2017-06-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2504, 17, '2017-06-09', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2505, 17, '2017-06-08', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2506, 17, '2017-06-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2507, 17, '2017-07-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2508, 17, '2017-07-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2509, 17, '2017-07-10', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2510, 17, '2017-07-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2511, 17, '2017-08-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2512, 17, '2017-06-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2513, 17, '2017-07-17', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2514, 17, '2017-06-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2515, 17, '2017-06-16', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2516, 17, '2017-08-01', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2517, 17, '2017-06-23', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2518, 17, '2017-06-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2519, 17, '2017-06-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2520, 17, '2017-07-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2521, 17, '2017-07-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2522, 17, '2017-07-31', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2523, 17, '2017-07-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2524, 17, '2017-07-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2525, 17, '2017-06-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2526, 17, '2017-07-11', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2527, 17, '2017-07-24', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2528, 17, '2017-07-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2529, 17, '2017-07-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2530, 17, '2017-07-18', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2531, 17, '2017-08-02', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2532, 17, '2017-07-25', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2533, 17, '2017-06-15', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2534, 17, '2017-07-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2535, 17, '2017-06-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2536, 17, '2017-06-29', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2537, 17, '2017-06-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2538, 17, '2017-07-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2539, 17, '2017-06-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2540, 17, '2017-08-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2541, 17, '2017-06-30', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2542, 17, '2017-06-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2543, 17, '2017-07-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2544, 17, '2017-07-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2545, 17, '2017-06-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2546, 17, '2017-07-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2547, 2, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2548, 2, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2549, 2, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2550, 2, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2551, 2, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2552, 2, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2553, 2, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2554, 2, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2555, 2, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2556, 2, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2557, 2, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2558, 2, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2559, 2, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2560, 2, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2561, 2, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2562, 2, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2563, 2, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2564, 2, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2565, 2, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2566, 2, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2567, 2, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2568, 2, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2569, 2, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2570, 2, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2571, 2, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2572, 2, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2573, 2, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2574, 2, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2575, 2, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2576, 2, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2577, 2, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2578, 2, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2579, 2, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2580, 2, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2581, 2, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2582, 2, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2583, 2, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2584, 2, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2585, 2, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2586, 2, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2587, 2, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2588, 2, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2589, 2, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2590, 2, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2591, 2, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2592, 7, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2593, 7, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2594, 7, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2595, 7, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2596, 7, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2597, 7, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2598, 7, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2599, 7, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2600, 7, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2601, 7, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2602, 7, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2603, 7, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2604, 7, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2605, 7, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2606, 7, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2607, 7, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2608, 7, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2609, 7, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2610, 7, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2611, 7, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2612, 7, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2613, 7, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2614, 7, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2615, 7, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2616, 7, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2617, 7, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2618, 7, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2619, 7, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2620, 7, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2621, 7, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2622, 7, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2623, 7, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2624, 7, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2625, 7, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2626, 7, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2627, 7, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2628, 7, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2629, 7, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2630, 7, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2631, 7, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2632, 7, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2633, 7, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2634, 7, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2635, 7, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2636, 7, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2637, 9, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2638, 9, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2639, 9, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2640, 9, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2641, 9, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2642, 9, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2643, 9, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2644, 9, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2645, 9, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2646, 9, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2647, 9, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2648, 9, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2649, 9, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2650, 9, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2651, 9, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2652, 9, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2653, 9, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2654, 9, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2655, 9, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2656, 9, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2657, 9, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2658, 9, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2659, 9, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2660, 9, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2661, 9, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2662, 9, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2663, 9, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2664, 9, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2665, 9, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2666, 9, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2667, 9, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2668, 9, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2669, 9, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2670, 9, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2671, 9, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2672, 9, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2673, 9, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2674, 9, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2675, 9, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2676, 9, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2677, 9, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2678, 9, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2679, 9, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2680, 9, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2681, 9, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2682, NULL, '2017-06-23', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2683, NULL, '2017-06-16', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2684, NULL, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2685, NULL, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2686, NULL, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2687, NULL, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2688, NULL, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2689, NULL, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2690, NULL, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2691, NULL, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2692, NULL, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2693, NULL, '2017-06-09', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2694, NULL, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2695, NULL, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2696, NULL, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2697, NULL, '2017-08-04', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2698, NULL, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2699, NULL, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2700, NULL, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2701, NULL, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2702, NULL, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2703, NULL, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2704, NULL, '2017-07-07', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2705, NULL, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2706, NULL, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2707, NULL, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2708, NULL, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2709, NULL, '2017-07-21', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2710, NULL, '2017-07-14', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2711, NULL, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2712, NULL, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2713, NULL, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2714, NULL, '2017-07-28', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2715, NULL, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2716, NULL, '2017-06-30', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2717, NULL, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2718, NULL, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2719, NULL, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2720, NULL, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2721, NULL, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2722, NULL, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2723, NULL, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2724, NULL, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2725, NULL, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2726, NULL, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2727, 13, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2728, 13, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2729, 13, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2730, 13, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2731, 13, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2732, 13, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2733, 13, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2734, 13, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2735, 13, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2736, 13, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2737, 13, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2738, 13, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2739, 13, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2740, 13, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2741, 13, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2742, 13, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2743, 13, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2744, 13, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2745, 13, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2746, 13, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2747, 13, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2748, 13, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2749, 13, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2750, 13, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2751, 13, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2752, 13, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2753, 13, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2754, 13, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2755, 13, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2756, 31, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2757, 31, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2758, 31, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2759, 31, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2760, 31, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2761, 31, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2762, 31, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2763, 31, '2017-06-09', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2764, 31, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2765, 31, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2766, 31, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2767, 31, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2768, 31, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2769, 31, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2770, 31, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2771, 31, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2772, 31, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2773, 31, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2774, 31, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2775, 31, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2776, 31, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2777, 31, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2778, 31, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2779, 31, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2780, 31, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2781, 12, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2782, 12, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2783, 12, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2784, 12, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2785, 12, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2786, 12, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2787, 12, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2788, 12, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2789, 12, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2790, 12, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2791, 12, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2792, 12, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2793, 12, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2794, 12, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2795, 12, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2796, 12, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2797, 12, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2798, 12, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2799, 12, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2800, 12, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2801, 12, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2802, 12, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2803, 12, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2804, 12, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2805, 12, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2806, 12, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2807, 12, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2808, 12, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2809, 12, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2810, 12, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2811, 12, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2812, 12, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2813, 12, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2814, 12, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2815, 12, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2816, 12, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2817, 12, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2818, 12, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2819, 12, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2820, 12, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2821, 12, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2822, 12, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2823, 12, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2824, 12, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2825, 12, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2826, 12, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2827, 12, '2017-06-10', '10:30:00', '15:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2828, 12, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2829, 12, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2830, 12, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2831, 12, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2832, 12, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2833, 12, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2834, 12, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2835, 23, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2836, 23, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2837, 23, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2838, 23, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2839, 23, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2840, 23, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2841, 23, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2842, 23, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2843, 23, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2844, 23, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2845, 23, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2846, 23, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2847, 23, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2848, 23, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2849, 23, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2850, 23, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2851, 23, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2852, 23, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2853, 23, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2854, 23, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2855, 23, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2856, 23, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2857, 23, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2858, 23, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2859, 23, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2860, 23, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2861, 23, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2862, 23, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2863, 23, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2864, 23, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2865, 23, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2866, 23, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2867, 23, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2868, 23, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2869, 23, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2870, 23, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2871, 23, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2872, 23, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2873, 23, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2874, 21, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2875, 21, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2876, 21, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2877, 21, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2878, 21, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2879, 21, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2880, 21, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2881, 21, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2882, 21, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2883, 21, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2884, 21, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2885, 21, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2886, 21, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2887, 21, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2888, 21, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2889, 21, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2890, 21, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2891, 21, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2892, 21, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2893, 21, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2894, 21, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2895, 21, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2896, 21, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2897, 21, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2898, 21, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2899, 21, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2900, 21, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2901, 21, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2902, 21, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2903, 21, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2904, 21, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2905, 21, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2906, 21, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2907, 21, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2908, 21, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2909, 21, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2910, 21, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2911, 21, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2912, 10, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2913, 10, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2914, 10, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2915, 10, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2916, 10, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2917, 10, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2918, 10, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2919, 10, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2920, 10, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2921, 10, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2922, 10, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2923, 10, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2924, 10, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2925, 10, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2926, 10, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2927, 10, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2928, 10, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2929, 10, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2930, 10, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2931, 10, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2932, 10, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2933, 10, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2934, 10, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2935, 10, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2936, 10, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2937, 10, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2938, 10, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2939, 10, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2940, 10, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2941, 10, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2942, 10, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2943, 10, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2944, 10, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2945, 10, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2946, 10, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2947, 10, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2948, 10, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2949, 10, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2950, 10, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2951, 10, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2952, 10, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2953, 10, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2954, 10, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2955, 10, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2956, 10, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2957, 5, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2958, 5, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2959, 5, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2960, 5, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2961, 5, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2962, 5, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2963, 5, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2964, 5, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2965, 5, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2966, 5, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2967, 5, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2968, 5, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2969, 5, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2970, 5, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2971, 5, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2972, 5, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2973, 5, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2974, 5, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2975, 5, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2976, 5, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2977, 5, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2978, 5, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2979, 5, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2980, 5, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2981, 5, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2982, 5, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2983, 5, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2984, 5, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2985, 5, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2986, 5, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2987, 5, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2988, 5, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2989, 5, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2990, 5, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2991, 5, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2992, 5, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2993, 5, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2994, 5, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2995, 5, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2996, 5, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2997, 5, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2998, 5, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2999, 5, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3000, 5, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3001, 5, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3002, 44, '2017-07-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3003, 44, '2017-07-20', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3004, 44, '2017-07-31', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3005, 44, '2017-07-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3006, 44, '2017-08-03', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3007, 44, '2017-06-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3008, 44, '2017-06-30', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3009, 44, '2017-07-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3010, 44, '2017-07-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3011, 44, '2017-07-05', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3012, 44, '2017-07-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3013, 44, '2017-06-29', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3014, 44, '2017-06-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3015, 44, '2017-06-16', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3016, 44, '2017-07-17', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3017, 44, '2017-07-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3018, 44, '2017-06-15', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3019, 44, '2017-06-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3020, 44, '2017-06-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3021, 44, '2017-07-07', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3022, 44, '2017-08-01', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3023, 44, '2017-06-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3024, 44, '2017-07-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3025, 44, '2017-07-24', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3026, 44, '2017-06-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3027, 44, '2017-07-25', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3028, 44, '2017-07-10', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3029, 44, '2017-08-02', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3030, 44, '2017-08-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3031, 44, '2017-07-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3032, 44, '2017-07-18', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3033, 44, '2017-07-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3034, 44, '2017-06-08', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3035, 44, '2017-06-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3036, 44, '2017-06-09', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3037, 44, '2017-06-22', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3038, 44, '2017-07-11', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3039, 44, '2017-07-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3040, 44, '2017-06-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3041, 44, '2017-06-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3042, 22, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3043, 22, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3044, 22, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3045, 22, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3046, 22, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3047, 22, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3048, 22, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3049, 22, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3050, 22, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3051, 22, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3052, 22, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3053, 22, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3054, 22, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3055, 22, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3056, 22, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3057, 22, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3058, 22, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3059, 22, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3060, 22, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3061, 22, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3062, 22, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3063, 22, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3064, 22, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3065, 22, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3066, 22, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3067, 22, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3068, 22, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3069, 22, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3070, 22, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3071, 22, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3072, 22, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3073, 22, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3074, 22, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3075, 22, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3076, 22, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3077, 22, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3078, 22, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3079, 22, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3080, 22, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3081, 22, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3082, 22, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3083, 22, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3084, 3, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3085, 3, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3086, 3, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3087, 3, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3088, 3, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3089, 3, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3090, 3, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3091, 3, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3092, 3, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3093, 3, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3094, 3, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3095, 3, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3096, 3, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3097, 3, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3098, 3, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3099, 3, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3100, 3, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3101, 3, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3102, 3, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3103, 3, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3104, 3, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3105, 3, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3106, 3, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3107, 3, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3108, 3, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3109, 3, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3110, 3, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3111, 3, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3112, 3, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3113, 3, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3114, 3, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3115, 3, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3116, 3, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3117, 3, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + + +-- +-- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (1, 'normal', true, NULL, NULL); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (5, 'congé extra', true, true, '#e26b0a'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (2, 'congé', true, true, '#fcd5b4'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (4, 'congé maladie', true, true, '#f2dcdb'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (3, 'training', true, NULL, '#b7dee8'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (6, 'jour ferié', true, NULL, '#92d050'); +INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (7, 'libre jours', NULL, NULL, '#0070c0'); + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.defaultweekworkplan_id_seq', 1, false); + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.defaultworkplan_id_seq', 1, false); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 1, true); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 1, false); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 45, true); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3117, true); + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.portanova.pg.full.sql b/dev/db/potlu_db.portanova.pg.full.sql new file mode 100644 index 00000000..33d18dd0 --- /dev/null +++ b/dev/db/potlu_db.portanova.pg.full.sql @@ -0,0 +1,3319 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: portanova; Type: SCHEMA; Schema: -; Owner: potlu_user +-- + +CREATE SCHEMA portanova; + + +ALTER SCHEMA portanova OWNER TO potlu_user; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: defaultweekworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.defaultweekworkplan ( + id integer NOT NULL, + id_staff integer, + startdate date, + mon json, + tue json, + wed json, + thu json, + fri json, + sat json, + sun json +); + + +ALTER TABLE portanova.defaultweekworkplan OWNER TO potlu_user; + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.defaultweekworkplan_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.defaultweekworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.defaultweekworkplan_id_seq OWNED BY portanova.defaultweekworkplan.id; + + +-- +-- Name: defaultworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.defaultworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + plannedtimes json, + vacancytimes json, + presencetimes json +); + + +ALTER TABLE portanova.defaultworkplan OWNER TO potlu_user; + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.defaultworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.defaultworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.defaultworkplan_id_seq OWNED BY portanova.defaultworkplan.id; + + +-- +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +ALTER TABLE portanova.reportperiod OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.reportperiod_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.reportperiod_id_seq OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +ALTER TABLE portanova.sites OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.sites_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.sites_id_seq OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +ALTER TABLE portanova.staff OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staff_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staff_id_seq OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staff_id_seq OWNED BY portanova.staff.id; + + +-- +-- Name: staffgroups; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +ALTER TABLE portanova.staffgroups OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffgroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffgroups_id_seq OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffgroups_id_seq OWNED BY portanova.staffgroups.id; + + +-- +-- Name: staffperiodbase; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffperiodbase ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric +); + + +ALTER TABLE portanova.staffperiodbase OWNER TO potlu_user; + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffperiodbase_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffperiodbase_id_seq OWNER TO potlu_user; + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffperiodbase.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +ALTER TABLE portanova.stafftimetracks OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.stafftimetracks_id_seq OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +ALTER TABLE portanova.staffvacancy OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffvacancy_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffvacancy_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +ALTER TABLE portanova.staffvacancyyear OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffvacancyyear_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffvacancyyear_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +ALTER TABLE portanova.staffworkplan OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM portanova.reportperiod; + + +ALTER TABLE portanova.vw_reportperiodlist OWNER TO potlu_user; + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM portanova.staff; + + +ALTER TABLE portanova.vw_stafflist OWNER TO potlu_user; + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE portanova.vw_staffplanned_dayweektotals OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE portanova.vw_staffworkplan_weekly OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS calweek, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_start1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (portanova.vw_staffworkplan_weekly sp_dwt + LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +ALTER TABLE portanova.vw_staffworkplanlist OWNER TO potlu_user; + +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +ALTER TABLE portanova.workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM portanova.workplans; + + +ALTER TABLE portanova.vw_workplanlist OWNER TO potlu_user; + +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM portanova.workplans; + + +ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM portanova.workplans; + + +ALTER TABLE portanova.vw_workplansdata OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.workplans_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.workplans_id_seq OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +ALTER TABLE portanova.worktypes OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.worktypes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.worktypes_id_seq OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; + + +-- +-- Name: defaultweekworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultweekworkplan_id_seq'::regclass); + + +-- +-- Name: defaultworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultworkplan_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); + + +-- +-- Name: staffperiodbase id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffperiodbase ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); + + +-- +-- Data for Name: defaultweekworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.defaultweekworkplan (id, id_staff, startdate, mon, tue, wed, thu, fri, sat, sun) FROM stdin; +\. + + +-- +-- Data for Name: defaultworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.defaultworkplan (id, id_staff, daydate, plannedtimes, vacancytimes, presencetimes) FROM stdin; +\. + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.reportperiod (id, periodname, startdate, enddate) FROM stdin; +1 Période 1 2020 2019-12-30 2020-02-23 +\. + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.sites (id, sitename, address, zip, city, country, id_timetracker, created, modified, timeclockhost) FROM stdin; +\. + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) FROM stdin; +1 A100 NISTRI ANGELA serveuse 1987-03-27 2015-06-22 \N +4 A101 JOURDAN JOSIAN serveuse 1981-01-29 2015-04-01 \N +5 A102 ARENGA TERESA serveuse 1981-06-15 2015-03-10 \N +6 A103 BARROSO MARIA serveuse \N 2000-01-01 \N +7 A104 STIPA CRISTIAN serveur 1975-08-08 2015-11-09 \N +15 5558 DEDJA CLAIDIO Barman 1994-02-24 2014-11-15 \N +16 7595 PUGLIESE GIUSEPPE serveur/Barman 1995-11-05 2015-10-08 \N +8 A105 LIBERTI RICCARDO serveur 1990-06-19 2016-02-13 \N +11 A106 ARMOCIDA Domenico serveur \N 2000-01-01 \N +12 A107 MORTASSI KARIM serveur \N 2000-01-01 \N +13 A108 IRIA FABIO serveur \N 2000-01-01 \N +14 A109 SERGIO SERGIO serveur \N 2000-01-01 \N +18 A200 \N \N Barman \N 2000-01-01 \N +20 A110 QUATTRONE DEMETRIO Cuisinier 1950-06-27 2015-12-01 \N +24 A111 RAMOS DA SILVA JOHNY cuisinier 1966-08-25 2005-05-01 \N +25 A112 VICINI DAVIDE \N \N 2000-01-01 \N +26 A113 LAMA ANGELO commis de cuisine 1992-11-20 2008-07-10 \N +30 A114 ILIC JULIEN apprenti 1995-04-22 2000-01-01 \N +31 A115 SOMNEZ TUNAHAN \N \N 2000-01-01 \N +36 A117 DA LUZ CANDIDA plongeus \N 2000-01-01 \N +37 A118 CRISCIONE EMANUELE resp. de réception 1981-09-18 2000-01-01 \N +41 A119 SONMEZ TUNAHAN apprenti 1998-06-15 2000-01-01 \N +42 A120 IRIA SILVA FABIO apprenti 1988-06-29 2000-01-01 \N +43 A121 MULLER RICA secrétaire de direction 1966-12-02 2000-01-01 \N +44 A122 BRUCCOLERI SARAH attachée de direction 1984-11-01 2000-01-01 \N +45 100 PRESTI ADRIANO gérant \N 2000-01-01 \N +2 5020 MATIAS RAPHAEL serveur 1975-01-26 2005-04-19 \N +3 6600 ALIF DIDIER serveur 1968-04-14 2007-08-14 \N +9 5502 COPPOLA CHRISTIAN serveur 1990-11-25 2016-01-18 \N +21 8775 ZAKLAN ZORAN cuisinier 1959-05-25 2005-01-08 \N +22 5695 ELKAOUI MOURAD cuisinier 1973-02-12 2014-04-15 \N +23 5503 CORONEL SILVINO ROSA aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N +27 7120 MELO IVO TIAGO aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N +28 7600 PREZZIOSA MATTEO pizzaiolo 1959-03-26 2012-10-03 \N +29 5250 BOUALI AMAR aide-pâtissier/commis de cuisine 1980-02-20 2015-06-01 \N +32 5480 COIMBRA ABRANTES MARIA commis de cuisine 1969-09-24 2006-10-23 \N +33 5540 DE BRITO Djela commis de cuisine 1975-01-15 1995-07-01 \N +34 7591 PEREIRA GOMES ANTONIA plongeuse 1987-04-29 1992-03-15 \N +35 5600 DOS SANTOS Alcinda plongeuse 1960-12-26 2011-07-05 \N +38 7980 SCHMITGEN TANUCCIA Hôtesse d'accueil/serveuse 1964-01-20 2010-10-04 \N +39 2701 KIEFFER-WEILER LILIANNE hôtesse d'accueil 1958-04-21 2015-07-01 \N +40 8725 YAKOBSON YULIYA hôtesse d'accueil 1974-04-02 2011-10-01 \N +10 8501 TAVERNA Greta serveuse \N 2000-01-01 \N +17 5280 BULAKU ENVER concierge/technicien 1971-02-08 2000-01-01 \N +19 1172 BUCHICCHIO DONATO ANTONIO chef cuisinier 1970-10-23 2000-01-01 \N +\. + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffgroups (id, groupname, groupcolor) FROM stdin; +\. + + +-- +-- Data for Name: staffperiodbase; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffperiodbase (id, id_staff, startdate, monthhours, weekhours) FROM stdin; +39 39 2015-07-01 64.8750000000000000 15 +40 40 2011-10-01 86.5000000000000000 20 +11 11 2000-01-01 129.7500000000000000 30 +43 43 2000-01-01 129.7500000000000000 30 +6 6 2000-01-01 173.0000000000000000 40 +10 10 2000-01-01 173.0000000000000000 40 +12 12 2000-01-01 173.0000000000000000 40 +13 13 2000-01-01 173.0000000000000000 40 +14 14 2000-01-01 173.0000000000000000 40 +17 17 2000-01-01 173.0000000000000000 40 +19 19 2000-01-01 173.0000000000000000 40 +25 25 2000-01-01 173.0000000000000000 40 +30 30 2000-01-01 173.0000000000000000 40 +31 31 2000-01-01 173.0000000000000000 40 +36 36 2000-01-01 173.0000000000000000 40 +37 37 2000-01-01 173.0000000000000000 40 +41 41 2000-01-01 173.0000000000000000 40 +42 42 2000-01-01 173.0000000000000000 40 +44 44 2000-01-01 173.0000000000000000 40 +45 45 2000-01-01 173.0000000000000000 40 +1 1 2015-06-22 173.0000000000000000 40 +2 2 2005-04-19 173.0000000000000000 40 +3 3 2007-08-14 173.0000000000000000 40 +4 4 2015-04-01 173.0000000000000000 40 +5 5 2015-03-10 173.0000000000000000 40 +7 7 2015-11-09 173.0000000000000000 40 +8 8 2016-02-13 173.0000000000000000 40 +9 9 2016-01-18 173.0000000000000000 40 +15 15 2014-11-15 173.0000000000000000 40 +16 16 2015-10-08 173.0000000000000000 40 +18 18 2016-05-30 173.0000000000000000 40 +20 20 2015-12-01 173.0000000000000000 40 +21 21 2005-01-08 173.0000000000000000 40 +22 22 2014-04-15 173.0000000000000000 40 +23 23 2013-01-07 173.0000000000000000 40 +24 24 2005-05-01 173.0000000000000000 40 +26 26 2008-07-10 173.0000000000000000 40 +27 27 2013-01-07 173.0000000000000000 40 +28 28 2012-10-03 173.0000000000000000 40 +29 29 2015-06-01 173.0000000000000000 40 +32 32 2006-10-23 173.0000000000000000 40 +33 33 1995-07-01 173.0000000000000000 40 +34 34 1992-03-15 173.0000000000000000 40 +35 35 2011-07-05 173.0000000000000000 40 +38 38 2010-10-04 173.0000000000000000 40 +\. + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, created, modified) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffvacancy (id, id_staff, startdate, enddate, vacancytype, dayhours, note, validated) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffvacancyyear (id, id_staff, vyear, hours, days) FROM stdin; +\. + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) FROM stdin; +1817 34 2017-07-07 \N \N \N \N \N \N \N +1847 37 2017-07-15 \N \N \N \N \N \N \N +2405 20 2017-06-17 \N \N \N \N \N \N \N +1767 8 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1768 8 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1769 8 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1770 8 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1771 8 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1772 8 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1773 8 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1774 8 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1775 8 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1776 8 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1777 8 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1778 8 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1779 8 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1780 8 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1781 8 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1782 8 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1783 8 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1784 8 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1785 8 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1786 8 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1787 8 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1788 8 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1789 8 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1790 8 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1791 8 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1792 8 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1793 8 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1794 8 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1795 8 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1796 8 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1797 8 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1798 8 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1799 8 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1800 8 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1801 8 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1802 8 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1803 8 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1804 8 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1805 8 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1806 8 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1807 8 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1808 8 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1809 8 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1810 8 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1811 8 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +1812 34 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1813 34 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1814 34 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1815 34 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1816 34 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1818 34 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1819 34 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1820 34 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1821 34 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1822 34 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1823 34 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1824 34 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1825 34 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1826 34 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1827 34 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1828 34 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1829 34 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1830 34 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1831 34 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1832 34 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1833 34 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1834 34 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1835 34 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1836 34 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1837 34 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1838 34 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1839 34 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1840 34 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1841 34 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1842 34 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1843 34 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1844 34 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1845 34 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1846 34 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1848 37 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +1849 37 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +1850 37 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +1851 37 2017-06-10 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +1852 37 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +1853 36 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1854 36 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1855 36 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1856 36 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1857 36 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1858 36 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1859 36 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1860 36 2017-06-05 11:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1861 36 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1862 36 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1863 36 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1864 36 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1865 36 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1866 36 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1867 36 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1868 36 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1869 36 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1870 36 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1871 36 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1872 36 2017-06-08 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N +1873 36 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1874 36 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1875 36 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1876 36 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1877 36 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1878 36 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1879 36 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1880 36 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1881 36 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1882 36 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1883 36 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1884 36 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1885 36 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1886 36 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1887 25 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1888 25 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1889 25 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1890 25 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1891 25 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1892 25 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1893 25 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1894 25 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1895 25 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1896 25 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1897 25 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1898 25 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1899 25 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1900 25 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1901 25 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1902 25 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1903 25 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1904 25 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1905 25 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1906 25 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1907 25 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1908 25 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1909 25 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1910 25 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1911 25 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1912 25 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1913 25 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1914 25 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1915 25 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1916 25 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1917 25 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1918 25 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1919 25 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1920 33 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1921 33 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1922 33 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1923 33 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1924 33 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1925 33 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1926 33 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1927 33 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1928 33 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1929 33 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1930 33 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1931 33 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1932 33 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1933 33 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1934 33 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1935 33 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1936 33 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1937 33 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1938 33 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1939 33 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1940 33 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1941 33 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1942 33 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1943 33 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1944 33 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1945 33 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1946 33 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1947 33 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1948 33 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1949 33 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1950 33 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1951 33 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1952 33 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1953 33 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1954 33 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1955 33 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1956 33 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1957 33 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1958 33 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1959 33 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1960 33 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1961 33 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1962 33 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +1963 11 2017-06-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1964 11 2017-06-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1965 11 2017-07-12 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1966 11 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1967 11 2017-07-20 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1968 11 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1969 11 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1970 11 2017-07-27 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1971 11 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1972 11 2017-06-08 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1973 11 2017-06-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1974 11 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1975 11 2017-06-22 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1976 11 2017-08-04 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1977 11 2017-07-26 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1978 11 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1979 11 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1980 11 2017-07-13 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1981 11 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1982 11 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1983 11 2017-06-14 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1984 11 2017-07-07 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1985 11 2017-06-29 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1986 11 2017-06-28 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1987 11 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1988 11 2017-06-15 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1989 11 2017-07-21 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1990 11 2017-07-14 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1991 11 2017-06-07 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1992 11 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1993 11 2017-07-28 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1994 11 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +1995 11 2017-08-03 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N +1996 11 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +1997 11 2017-06-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +1998 11 2017-06-21 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +1999 11 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2000 11 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2001 11 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2002 11 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2003 11 2017-08-02 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +2004 11 2017-07-19 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N +2005 11 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2006 29 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2007 29 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2008 29 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2009 29 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2010 29 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2011 29 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2012 29 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2013 29 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2014 29 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2015 29 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2016 29 2017-07-06 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2017 29 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2018 29 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2019 29 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2020 29 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2021 29 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2022 29 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2023 29 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2024 29 2017-07-07 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2025 29 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2026 29 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2027 29 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2028 29 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2029 29 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2030 29 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2031 29 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2032 29 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2033 29 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2034 29 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2035 29 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2036 29 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2037 29 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2038 29 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2039 29 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2040 29 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2041 29 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2042 29 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2043 29 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2044 29 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2045 32 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2046 32 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2047 32 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2048 32 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2049 32 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2050 32 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2051 32 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2052 32 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2053 32 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2054 32 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2055 32 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2056 32 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2057 32 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2058 32 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2059 32 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2060 32 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2061 32 2017-06-05 10:30:00 14:30:00 17:30:00 21:30:00 01:00:00 \N \N +2062 32 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2063 32 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2064 32 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2065 32 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2066 32 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2067 32 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2068 32 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2069 32 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2070 32 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2071 32 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2072 32 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2073 15 2017-08-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2074 15 2017-06-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2075 15 2017-06-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2076 15 2017-07-29 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2077 15 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2078 15 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2079 15 2017-07-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2080 15 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2081 15 2017-06-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2082 15 2017-06-15 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2083 15 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2084 15 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2085 15 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2086 15 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2087 15 2017-06-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2088 15 2017-07-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2089 15 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2090 15 2017-08-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2091 15 2017-08-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2092 15 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2093 15 2017-07-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2094 15 2017-07-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2095 15 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2096 15 2017-06-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2097 15 2017-06-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2098 15 2017-06-08 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2099 15 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2100 15 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2101 15 2017-06-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2102 15 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2103 15 2017-07-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2104 24 2017-07-12 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2105 24 2017-06-07 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N +2106 24 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2107 24 2017-07-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2108 24 2017-07-16 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2109 24 2017-07-31 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2110 24 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2111 24 2017-07-04 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2112 24 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2113 24 2017-08-03 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2114 24 2017-07-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2115 24 2017-06-21 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2116 24 2017-06-17 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N +2117 24 2017-06-14 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2118 24 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2119 24 2017-08-01 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2120 24 2017-06-29 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2121 24 2017-06-28 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2122 24 2017-06-16 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N +2123 24 2017-07-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2124 24 2017-06-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2125 24 2017-06-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2126 24 2017-07-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2127 24 2017-07-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2128 24 2017-08-04 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2129 24 2017-08-02 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2130 24 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2131 24 2017-07-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2132 24 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2133 24 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2134 24 2017-07-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2135 24 2017-07-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2136 24 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2137 24 2017-06-18 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N +2138 24 2017-06-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2139 24 2017-06-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2140 24 2017-06-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2141 24 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2142 24 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2143 24 2017-06-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2144 1 2017-07-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2145 1 2017-06-18 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2146 1 2017-06-10 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2147 1 2017-06-13 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2148 1 2017-07-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2149 1 2017-06-11 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2150 1 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2151 1 2017-08-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2152 1 2017-07-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2153 1 2017-07-26 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2154 1 2017-07-19 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2155 1 2017-08-05 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2156 1 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2157 1 2017-08-06 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2158 1 2017-07-22 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2159 1 2017-06-14 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2160 1 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2161 1 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2162 1 2017-08-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2163 1 2017-06-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2164 1 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2165 1 2017-07-30 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2166 1 2017-07-12 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2167 1 2017-06-07 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2168 1 2017-07-23 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2169 1 2017-07-29 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2170 1 2017-07-16 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N +2171 1 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2172 1 2017-07-15 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2173 1 2017-06-17 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N +2174 26 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2175 26 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2176 26 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2177 26 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2178 26 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2179 26 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2180 26 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2181 26 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2182 26 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2183 26 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2184 26 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2185 26 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2186 26 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2187 26 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2188 26 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2189 26 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2190 26 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2191 26 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2192 26 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2193 26 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2194 26 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2195 26 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2196 26 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2197 26 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2198 26 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2199 26 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2200 26 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2201 26 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2202 26 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2203 26 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2204 26 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2205 26 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2206 26 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2207 26 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2208 26 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2209 26 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2210 26 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2211 26 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2212 30 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2213 30 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2214 30 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2215 30 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2216 30 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2217 30 2017-06-25 10:30:00 14:30:00 \N \N 01:00:00 \N \N +2218 30 2017-07-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2219 30 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2220 30 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2221 30 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2222 30 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2223 30 2017-07-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2224 30 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2225 30 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2226 30 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2227 30 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2228 30 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2229 30 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2230 30 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2231 30 2017-07-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2232 28 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2233 28 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2234 28 2017-06-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2235 28 2017-06-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2236 28 2017-06-26 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2237 28 2017-06-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2238 28 2017-07-27 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2239 28 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2240 28 2017-07-24 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2241 28 2017-07-22 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2242 28 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2243 28 2017-07-13 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2244 28 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2245 28 2017-07-26 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2246 28 2017-07-19 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2247 28 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2248 28 2017-07-25 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2249 28 2017-06-27 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2250 28 2017-07-30 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2251 28 2017-07-21 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2252 28 2017-06-20 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2253 28 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2254 28 2017-06-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2255 28 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2256 28 2017-07-04 11:00:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2257 28 2017-06-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2258 28 2017-07-15 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2259 28 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2260 28 2017-07-29 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2261 28 2017-07-20 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2262 28 2017-07-28 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2263 28 2017-07-16 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2264 28 2017-07-23 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2265 28 2017-07-12 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2266 28 2017-07-14 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2267 28 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N +2268 19 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2269 19 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2270 19 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2271 19 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2272 19 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2273 19 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2274 19 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2275 19 2017-06-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2276 19 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2277 19 2017-06-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2278 19 2017-07-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2279 19 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2280 19 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2281 19 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2282 19 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2283 19 2017-06-21 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2284 19 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2285 19 2017-06-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2286 19 2017-07-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2287 19 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2288 19 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2289 19 2017-06-23 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2290 19 2017-06-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2291 19 2017-06-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2292 19 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2293 35 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2294 35 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2295 35 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2296 35 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2297 35 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2298 35 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2299 35 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2300 35 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2301 35 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2302 35 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2303 35 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2304 35 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2305 35 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2306 35 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2307 35 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2308 35 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2309 35 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2310 35 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2311 35 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2312 35 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2313 35 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2314 35 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2315 35 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2316 35 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2317 35 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2318 35 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2319 35 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2320 35 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2321 35 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2322 35 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2323 35 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2324 35 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2325 35 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2326 4 2017-08-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2327 4 2017-06-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2328 4 2017-07-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2329 4 2017-08-02 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2330 4 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2331 4 2017-06-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2332 4 2017-06-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2333 4 2017-07-28 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2334 4 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2335 4 2017-06-30 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2336 4 2017-08-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2337 4 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2338 4 2017-06-21 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2339 4 2017-07-02 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2340 4 2017-06-07 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2341 4 2017-07-14 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2342 4 2017-07-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2343 4 2017-06-28 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2344 4 2017-06-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2345 4 2017-07-21 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2346 4 2017-07-30 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2347 4 2017-06-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2348 4 2017-07-07 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2349 4 2017-06-14 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2350 4 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2351 4 2017-07-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2352 4 2017-07-09 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2353 4 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2354 4 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2355 4 2017-08-04 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2356 4 2017-07-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2357 4 2017-06-09 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2358 4 2017-06-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2359 4 2017-06-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2360 4 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2361 4 2017-07-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2362 4 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2363 4 2017-07-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2364 4 2017-07-16 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2365 4 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2366 4 2017-07-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2367 4 2017-07-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +2368 4 2017-07-23 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2369 4 2017-06-16 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2370 4 2017-06-23 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N +2371 20 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2372 20 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2373 20 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2374 20 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2375 20 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2376 20 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2377 20 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2378 20 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2379 20 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2380 20 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2381 20 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2382 20 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2383 20 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2384 20 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2385 20 2017-06-14 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2386 20 2017-06-15 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2387 20 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2388 20 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2389 20 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2390 20 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2391 20 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2392 20 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2393 20 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2394 20 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2395 20 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2396 20 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2397 20 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2398 20 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2399 20 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2400 20 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2401 20 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2402 20 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2403 20 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2404 20 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2406 20 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2407 20 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2408 20 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2409 20 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2410 20 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2411 20 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2412 20 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2413 20 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2414 20 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2415 20 2017-06-16 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2416 16 2017-06-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2417 16 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2418 16 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2419 16 2017-06-13 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2420 16 2017-06-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2421 16 2017-07-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2422 16 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2423 16 2017-06-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2424 16 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2425 16 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2426 16 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2427 16 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2428 16 2017-08-01 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2429 16 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2430 16 2017-06-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2431 16 2017-06-12 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2432 16 2017-07-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2433 16 2017-06-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2434 16 2017-06-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2435 16 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2436 16 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2437 16 2017-07-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2438 16 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2439 16 2017-07-31 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2440 16 2017-06-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2441 16 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2442 16 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2443 16 2017-07-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2444 16 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2445 16 2017-07-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2446 16 2017-07-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2447 16 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2448 16 2017-07-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2449 16 2017-07-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2450 16 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2451 16 2017-06-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2452 16 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2453 16 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2454 16 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2455 16 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2456 16 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2457 16 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2458 16 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2459 16 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2460 16 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2461 43 2017-07-11 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2462 43 2017-07-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2463 43 2017-06-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2464 43 2017-06-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2465 43 2017-06-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2466 43 2017-06-22 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2467 43 2017-06-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2468 43 2017-07-25 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2469 43 2017-07-10 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2470 43 2017-08-02 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2471 43 2017-08-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2472 43 2017-07-18 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2473 43 2017-07-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2474 43 2017-07-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2475 43 2017-07-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2476 43 2017-07-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2477 43 2017-07-24 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2478 43 2017-06-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2479 43 2017-06-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2480 43 2017-07-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2481 43 2017-08-01 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2482 43 2017-06-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2483 43 2017-06-29 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2484 43 2017-06-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2485 43 2017-06-16 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2486 43 2017-06-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2487 43 2017-07-17 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2488 43 2017-06-15 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2489 43 2017-07-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2490 43 2017-07-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2491 43 2017-07-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2492 43 2017-06-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2493 43 2017-07-05 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2494 43 2017-07-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2495 43 2017-07-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2496 43 2017-07-31 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2497 43 2017-07-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2498 43 2017-07-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2499 43 2017-06-30 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2500 43 2017-08-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2501 43 2017-06-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N +2502 17 2017-06-22 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2503 17 2017-06-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2504 17 2017-06-09 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2505 17 2017-06-08 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2506 17 2017-06-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2507 17 2017-07-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2508 17 2017-07-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2509 17 2017-07-10 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2510 17 2017-07-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2511 17 2017-08-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2512 17 2017-06-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2513 17 2017-07-17 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2514 17 2017-06-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2515 17 2017-06-16 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2516 17 2017-08-01 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2517 17 2017-06-23 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2518 17 2017-06-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2519 17 2017-06-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2520 17 2017-07-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2521 17 2017-07-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2522 17 2017-07-31 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2523 17 2017-07-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2524 17 2017-07-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2525 17 2017-06-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2526 17 2017-07-11 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2527 17 2017-07-24 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2528 17 2017-07-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2529 17 2017-07-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2530 17 2017-07-18 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2531 17 2017-08-02 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2532 17 2017-07-25 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2533 17 2017-06-15 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2534 17 2017-07-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2535 17 2017-06-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2536 17 2017-06-29 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2537 17 2017-06-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2538 17 2017-07-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2539 17 2017-06-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2540 17 2017-08-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2541 17 2017-06-30 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2542 17 2017-06-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2543 17 2017-07-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2544 17 2017-07-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2545 17 2017-06-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2546 17 2017-07-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N +2547 2 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2548 2 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2549 2 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2550 2 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2551 2 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2552 2 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2553 2 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2554 2 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2555 2 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2556 2 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2557 2 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2558 2 2017-07-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2559 2 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2560 2 2017-07-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2561 2 2017-06-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2562 2 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2563 2 2017-06-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2564 2 2017-06-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2565 2 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2566 2 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2567 2 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2568 2 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2569 2 2017-07-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2570 2 2017-06-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2571 2 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2572 2 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2573 2 2017-06-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2574 2 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2575 2 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2576 2 2017-06-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2577 2 2017-07-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2578 2 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2579 2 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2580 2 2017-08-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2581 2 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2582 2 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2583 2 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2584 2 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2585 2 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2586 2 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2587 2 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2588 2 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2589 2 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2590 2 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2591 2 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2592 7 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2593 7 2017-07-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2594 7 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2595 7 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2596 7 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2597 7 2017-06-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2598 7 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2599 7 2017-06-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2600 7 2017-07-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2601 7 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2602 7 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2603 7 2017-07-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2604 7 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2605 7 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2606 7 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2607 7 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2608 7 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2609 7 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2610 7 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2611 7 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2612 7 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2613 7 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2614 7 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2615 7 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2616 7 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2617 7 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2618 7 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2619 7 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2620 7 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2621 7 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2622 7 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2623 7 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2624 7 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2625 7 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2626 7 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2627 7 2017-08-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2628 7 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2629 7 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2630 7 2017-07-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2631 7 2017-06-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2632 7 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2633 7 2017-06-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2634 7 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2635 7 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2636 7 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2637 9 2017-06-24 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2638 9 2017-06-25 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2639 9 2017-07-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2640 9 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2641 9 2017-06-18 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2642 9 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2643 9 2017-08-06 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2644 9 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2645 9 2017-07-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2646 9 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2647 9 2017-07-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2648 9 2017-07-30 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2649 9 2017-07-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2650 9 2017-07-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2651 9 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2652 9 2017-07-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2653 9 2017-07-29 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2654 9 2017-06-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2655 9 2017-07-15 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2656 9 2017-07-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2657 9 2017-07-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2658 9 2017-06-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2659 9 2017-06-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2660 9 2017-07-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2661 9 2017-06-10 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2662 9 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2663 9 2017-08-05 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2664 9 2017-07-09 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2665 9 2017-07-08 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2666 9 2017-07-22 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2667 9 2017-06-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2668 9 2017-08-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2669 9 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2670 9 2017-06-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2671 9 2017-06-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2672 9 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2673 9 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2674 9 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2675 9 2017-08-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2676 9 2017-06-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2677 9 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2678 9 2017-07-16 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2679 9 2017-06-17 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N +2680 9 2017-07-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2681 9 2017-07-23 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N +2682 \N 2017-06-23 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2683 \N 2017-06-16 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2684 \N 2017-07-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2685 \N 2017-07-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2686 \N 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2687 \N 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2688 \N 2017-07-20 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2689 \N 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2690 \N 2017-07-27 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2691 \N 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2692 \N 2017-06-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2693 \N 2017-06-09 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2694 \N 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2695 \N 2017-06-22 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2696 \N 2017-07-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2697 \N 2017-08-04 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2698 \N 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2699 \N 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2700 \N 2017-07-13 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2701 \N 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2702 \N 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2703 \N 2017-06-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2704 \N 2017-07-07 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2705 \N 2017-06-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2706 \N 2017-06-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2707 \N 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2708 \N 2017-06-15 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2709 \N 2017-07-21 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2710 \N 2017-07-14 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2711 \N 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2712 \N 2017-07-06 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2713 \N 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2714 \N 2017-07-28 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2715 \N 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2716 \N 2017-06-30 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N +2717 \N 2017-08-03 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +2718 \N 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2719 \N 2017-06-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2720 \N 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2721 \N 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2722 \N 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N +2723 \N 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2724 \N 2017-08-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2725 \N 2017-07-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2726 \N 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2727 13 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2728 13 2017-06-11 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2729 13 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2730 13 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2731 13 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2732 13 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2733 13 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2734 13 2017-07-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2735 13 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2736 13 2017-08-06 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2737 13 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2738 13 2017-06-25 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2739 13 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2740 13 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2741 13 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2742 13 2017-07-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2743 13 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2744 13 2017-07-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2745 13 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2746 13 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2747 13 2017-07-02 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2748 13 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2749 13 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2750 13 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2751 13 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2752 13 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2753 13 2017-07-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N +2754 13 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N +2755 13 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2756 31 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2757 31 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2758 31 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2759 31 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2760 31 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2761 31 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2762 31 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2763 31 2017-06-09 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2764 31 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2765 31 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2766 31 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2767 31 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2768 31 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2769 31 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2770 31 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2771 31 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2772 31 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2773 31 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2774 31 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2775 31 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2776 31 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2777 31 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2778 31 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2779 31 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2780 31 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2781 12 2017-07-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2782 12 2017-07-14 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2783 12 2017-07-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2784 12 2017-06-30 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2785 12 2017-08-03 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2786 12 2017-07-15 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2787 12 2017-07-29 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2788 12 2017-07-28 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2789 12 2017-06-06 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2790 12 2017-07-07 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2791 12 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2792 12 2017-07-21 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2793 12 2017-06-15 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2794 12 2017-06-29 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2795 12 2017-07-18 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2796 12 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2797 12 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2798 12 2017-07-25 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2799 12 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2800 12 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2801 12 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2802 12 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2803 12 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2804 12 2017-07-11 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2805 12 2017-06-24 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2806 12 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2807 12 2017-07-04 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2808 12 2017-06-17 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2809 12 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2810 12 2017-07-20 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2811 12 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2812 12 2017-06-23 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2813 12 2017-08-01 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2814 12 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2815 12 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2816 12 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2817 12 2017-06-16 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2818 12 2017-06-20 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2819 12 2017-08-04 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2820 12 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2821 12 2017-06-27 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2822 12 2017-07-22 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2823 12 2017-07-08 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2824 12 2017-08-05 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2825 12 2017-07-13 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2826 12 2017-07-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2827 12 2017-06-10 10:30:00 15:30:00 17:30:00 21:45:00 01:00:00 \N \N +2828 12 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2829 12 2017-07-27 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2830 12 2017-07-01 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N +2831 12 2017-06-22 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2832 12 2017-06-08 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2833 12 2017-06-09 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N +2834 12 2017-06-13 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N +2835 23 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2836 23 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2837 23 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2838 23 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2839 23 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2840 23 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2841 23 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2842 23 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2843 23 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2844 23 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2845 23 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2846 23 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2847 23 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2848 23 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2849 23 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2850 23 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2851 23 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2852 23 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2853 23 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2854 23 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2855 23 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2856 23 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2857 23 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2858 23 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2859 23 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2860 23 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2861 23 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2862 23 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2863 23 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2864 23 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2865 23 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2866 23 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2867 23 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2868 23 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2869 23 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2870 23 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2871 23 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2872 23 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2873 23 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2874 21 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2875 21 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2876 21 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2877 21 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2878 21 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2879 21 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2880 21 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2881 21 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2882 21 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2883 21 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2884 21 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2885 21 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2886 21 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2887 21 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2888 21 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2889 21 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2890 21 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2891 21 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2892 21 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2893 21 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2894 21 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2895 21 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2896 21 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2897 21 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2898 21 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2899 21 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2900 21 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2901 21 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2902 21 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2903 21 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2904 21 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2905 21 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2906 21 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2907 21 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2908 21 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2909 21 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2910 21 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2911 21 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2912 10 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2913 10 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2914 10 2017-07-06 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2915 10 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2916 10 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2917 10 2017-07-02 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2918 10 2017-08-03 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2919 10 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2920 10 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2921 10 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2922 10 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2923 10 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2924 10 2017-06-29 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2925 10 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2926 10 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2927 10 2017-07-30 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2928 10 2017-06-15 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2929 10 2017-06-11 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2930 10 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2931 10 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2932 10 2017-08-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2933 10 2017-06-25 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2934 10 2017-06-18 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2935 10 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2936 10 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2937 10 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2938 10 2017-07-23 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2939 10 2017-07-16 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2940 10 2017-07-20 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2941 10 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2942 10 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2943 10 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2944 10 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2945 10 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2946 10 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2947 10 2017-07-09 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N +2948 10 2017-08-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2949 10 2017-07-13 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2950 10 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2951 10 2017-07-27 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2952 10 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2953 10 2017-06-08 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2954 10 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +2955 10 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +2956 10 2017-06-22 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N +2957 5 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2958 5 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2959 5 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2960 5 2017-07-20 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2961 5 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2962 5 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2963 5 2017-06-16 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2964 5 2017-06-23 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2965 5 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2966 5 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2967 5 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2968 5 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2969 5 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2970 5 2017-07-13 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2971 5 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2972 5 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2973 5 2017-08-04 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2974 5 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2975 5 2017-06-22 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2976 5 2017-06-08 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2977 5 2017-06-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2978 5 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2979 5 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2980 5 2017-07-27 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2981 5 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2982 5 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2983 5 2017-08-03 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2984 5 2017-06-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2985 5 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2986 5 2017-07-28 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2987 5 2017-07-06 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2988 5 2017-07-14 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2989 5 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2990 5 2017-06-15 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2991 5 2017-07-21 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2992 5 2017-06-29 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N +2993 5 2017-07-07 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +2994 5 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2995 5 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2996 5 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2997 5 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2998 5 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +2999 5 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +3000 5 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +3001 5 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N +3002 44 2017-07-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3003 44 2017-07-20 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3004 44 2017-07-31 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3005 44 2017-07-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3006 44 2017-08-03 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3007 44 2017-06-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3008 44 2017-06-30 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3009 44 2017-07-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3010 44 2017-07-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3011 44 2017-07-05 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3012 44 2017-07-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3013 44 2017-06-29 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3014 44 2017-06-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3015 44 2017-06-16 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3016 44 2017-07-17 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3017 44 2017-07-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3018 44 2017-06-15 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3019 44 2017-06-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3020 44 2017-06-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3021 44 2017-07-07 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3022 44 2017-08-01 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3023 44 2017-06-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3024 44 2017-07-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3025 44 2017-07-24 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3026 44 2017-06-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3027 44 2017-07-25 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3028 44 2017-07-10 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3029 44 2017-08-02 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3030 44 2017-08-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3031 44 2017-07-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3032 44 2017-07-18 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3033 44 2017-07-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3034 44 2017-06-08 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3035 44 2017-06-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3036 44 2017-06-09 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3037 44 2017-06-22 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3038 44 2017-07-11 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3039 44 2017-07-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3040 44 2017-06-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3041 44 2017-06-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N +3042 22 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3043 22 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3044 22 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3045 22 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3046 22 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3047 22 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3048 22 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3049 22 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3050 22 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3051 22 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3052 22 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3053 22 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3054 22 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3055 22 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3056 22 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3057 22 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3058 22 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3059 22 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3060 22 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3061 22 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3062 22 2017-06-06 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N +3063 22 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3064 22 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3065 22 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3066 22 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3067 22 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3068 22 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N +3069 22 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3070 22 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3071 22 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3072 22 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3073 22 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3074 22 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3075 22 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3076 22 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3077 22 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3078 22 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3079 22 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3080 22 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3081 22 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3082 22 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3083 22 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N +3084 3 2017-07-07 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3085 3 2017-06-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3086 3 2017-06-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3087 3 2017-06-23 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3088 3 2017-06-16 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3089 3 2017-06-29 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3090 3 2017-07-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3091 3 2017-06-15 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3092 3 2017-07-06 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3093 3 2017-07-31 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3094 3 2017-07-28 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3095 3 2017-07-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3096 3 2017-06-17 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3097 3 2017-06-30 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3098 3 2017-08-03 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3099 3 2017-07-02 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3100 3 2017-06-25 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3101 3 2017-06-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3102 3 2017-06-10 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3103 3 2017-06-18 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3104 3 2017-06-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3105 3 2017-06-09 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3106 3 2017-06-08 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3107 3 2017-06-24 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3108 3 2017-06-22 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N +3109 3 2017-07-01 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3110 3 2017-06-11 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3111 3 2017-07-03 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3112 3 2017-08-04 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N +3113 3 2017-07-10 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N +3114 3 2017-08-05 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3115 3 2017-07-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +3116 3 2017-07-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N +3117 3 2017-08-06 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N +\. + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; +1 Standard 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +\. + + +-- +-- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) FROM stdin; +1 normal t \N \N +5 congé extra t t #e26b0a +2 congé t t #fcd5b4 +4 congé maladie t t #f2dcdb +3 training t \N #b7dee8 +6 jour ferié t \N #92d050 +7 libre jours \N \N #0070c0 +\. + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.defaultweekworkplan_id_seq', 1, false); + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.defaultworkplan_id_seq', 1, false); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 1, true); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 1, false); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 45, true); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3117, true); + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); + + +-- +-- Name: defaultweekworkplan defaultweekworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan + ADD CONSTRAINT defaultweekworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: defaultworkplan defaultworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.defaultworkplan + ADD CONSTRAINT defaultworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); + + +-- +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); + + +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); + + +-- +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); + + +-- +-- Name: staffperiodbase staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffperiodbase + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); + + +-- +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); + + +-- +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffworkplan + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); + + +-- +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.worktypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); + + +-- +-- Name: staffperiodbase trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- + +CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffperiodbase FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.portanova.pg.schema.sql b/dev/db/potlu_db.portanova.pg.schema.sql new file mode 100644 index 00000000..04b05182 --- /dev/null +++ b/dev/db/potlu_db.portanova.pg.schema.sql @@ -0,0 +1,1604 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: portanova; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA portanova; + + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: defaultweekworkplan; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.defaultweekworkplan ( + id integer NOT NULL, + id_staff integer, + startdate date, + mon json, + tue json, + wed json, + thu json, + fri json, + sat json, + sun json +); + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.defaultweekworkplan_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: defaultweekworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.defaultweekworkplan_id_seq OWNED BY portanova.defaultweekworkplan.id; + + +-- +-- Name: defaultworkplan; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.defaultworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + plannedtimes json, + vacancytimes json, + presencetimes json +); + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.defaultworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: defaultworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.defaultworkplan_id_seq OWNED BY portanova.defaultworkplan.id; + + +-- +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.reportperiod_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.sites_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staff_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staff_id_seq OWNED BY portanova.staff.id; + + +-- +-- Name: staffgroups; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffgroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffgroups_id_seq OWNED BY portanova.staffgroups.id; + + +-- +-- Name: staffperiodbase; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffperiodbase ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric +); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffperiodbase_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffperiodbase.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffvacancy_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffvacancyyear_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM portanova.reportperiod; + + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM portanova.staff; + + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM portanova.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS calweek, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_start1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_start1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_end1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_start2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_end2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (portanova.vw_staffworkplan_weekly sp_dwt + LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM portanova.workplans; + + +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM portanova.workplans; + + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM portanova.workplans; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.workplans_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.worktypes_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; + + +-- +-- Name: defaultweekworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultweekworkplan_id_seq'::regclass); + + +-- +-- Name: defaultworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.defaultworkplan_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); + + +-- +-- Name: staffperiodbase id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffperiodbase ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); + + +-- +-- Name: defaultweekworkplan defaultweekworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultweekworkplan + ADD CONSTRAINT defaultweekworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: defaultworkplan defaultworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.defaultworkplan + ADD CONSTRAINT defaultworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); + + +-- +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); + + +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); + + +-- +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); + + +-- +-- Name: staffperiodbase staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffperiodbase + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); + + +-- +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); + + +-- +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffworkplan + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); + + +-- +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); + + +-- +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.worktypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); + + +-- +-- Name: staffperiodbase trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: - +-- + +CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffperiodbase FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.public.pg.data.sql b/dev/db/potlu_db.public.pg.data.sql new file mode 100644 index 00000000..8619bd46 --- /dev/null +++ b/dev/db/potlu_db.public.pg.data.sql @@ -0,0 +1,165 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (1, 'superadmin', NULL, 'SuperAdmin'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (2, 'admin', NULL, 'Admin'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (3, 'company', NULL, 'Entreprise'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (4, 'site', NULL, 'Site'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (5, 'user', true, 'Utilisateur'); + + +-- +-- Data for Name: apps; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (7, 'staff', 'Employé(e)s', 'Employé(e)s', 1, 'group.svg', 4, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (8, 'timetrackers', 'Pointeuses', 'Pointeuses', NULL, 'cube.svg', 7, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (10, 'sites', 'Sites', 'Sites', NULL, 'cube.svg', 6, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (11, 'workplans', 'Plans de travail', 'Plans (modèles)', 1, 'cube.svg', 8, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (9, 'planning', 'Planning', 'POT', 1, 'cube.svg', 5, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (4, 'profile', 'Profil', 'mes coordonnées', 1, 'user.svg', 9, 'global'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (6, 'companies', 'Entreprise', 'entreprise', 1, 'company.svg', 10, 'global'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (5, 'users', 'Utilisateurs', 'autres utilisateurs', 1, 'group.svg', 11, 'global'); + + +-- +-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email) VALUES (1, 'DKS s.à r.l.', '4, rue Principale', '3770', 'Tétange', 'Luxembourg', NULL, NULL, NULL, 'portanova', NULL, NULL, NULL); + + +-- +-- Data for Name: maillayouts; Type: TABLE DATA; Schema: public; Owner: - +-- + + + +-- +-- Data for Name: mailtemplates; Type: TABLE DATA; Schema: public; Owner: - +-- + + + +-- +-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess) VALUES (1, '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec', '2019-10-10 17:12:11.934747', NULL, 'ksaffran@dks.lu', NULL, NULL, NULL); + + +-- +-- Data for Name: members; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.members (id, surname, prename, phone, id_user, id_company, job) VALUES (1, 'Saffran', 'Kilian', NULL, 1, 1, NULL); + + +-- +-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (111, 'uWpnqxhEFJt2MZxMoLSz4ZAZoc3ZJnu3aKhq8oVD', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:213c:73ba:ffa7:842b', '2019-12-05 19:16:43.969105'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (112, 'mUmGFzD4kPLyhHfJO9TDOGfCtsVAEefRYrotRRo1', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:7946:65e2:f587:8b74', '2019-12-06 07:02:23.094765'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (113, 'HaDg0Eh9nIk7lftrHDtQpaKiLWL66VoEWRKMmSLz', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '::1', '2019-12-09 11:33:13.202044'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (114, 'aSli1lR9B0ETjICf7IFjVxhphLd8dhRdZ2mRd4RE', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362', '::1', '2019-12-10 15:55:53.526432'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (122, 'Sp2D9CvtdjQHaxLPkEXgqSMSveIJwQde56I5y3oC', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:d970:312a:d5d:db83', '2019-12-12 07:06:51.913155'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (123, 'klCMzztihKleI4E0zhnmNMrlL8sAUIj5TLHjb0si', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36', '::1', '2019-12-13 08:27:53.789037'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (93, '5P7159lXg8xY83Iu7eZC3hj3Oi6x29jXOhPKg0yn', 1, 'Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36', '::1', '2019-12-04 14:58:48.993651'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (98, '9UisAitYaoxdqtBaWUI37R04CiBlFxcp0STuCOZRU', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '::1', '2019-12-05 07:34:07.997426'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (99, 'v6wZ65qozoWn5P32q4wg16224TcOAM1VJnLFj1UJ', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '192.168.178.23', '2019-12-05 07:35:01.756219'); + + +-- +-- Data for Name: useringroups; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO public.useringroups (id, id_user, id_group) VALUES (1, 1, 1); + + +-- +-- Name: apps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.apps_id_seq', 11, true); + + +-- +-- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.companies_id_seq', 1, true); + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.maillayouts_id_seq', 1, false); + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.mailtemplates_id_seq', 1, false); + + +-- +-- Name: members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.members_id_seq', 1, false); + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.sessions_id_seq', 123, true); + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.useringroups_id_seq', 1, true); + + +-- +-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- + +SELECT pg_catalog.setval('public.users_id_seq', 1, false); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.public.pg.full.sql b/dev/db/potlu_db.public.pg.full.sql new file mode 100644 index 00000000..a9722832 --- /dev/null +++ b/dev/db/potlu_db.public.pg.full.sql @@ -0,0 +1,1067 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: public; Type: SCHEMA; Schema: -; Owner: postgres +-- + +CREATE SCHEMA public; + + +ALTER SCHEMA public OWNER TO postgres; + +-- +-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres +-- + +COMMENT ON SCHEMA public IS 'standard public schema'; + + +-- +-- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + iduser int4; + newidsession text := null; +begin + select id into iduser from public.users where lower(username)=lower(vusername) and userpassword = vpassword and "blocked" is null; + if (iduser is not null) then + delete from public.sessions where id_user= iduser and remote_addr= vremoteaddr and user_agent= vuseragent; + insert into public.sessions (id_user,idsession,remote_addr,user_agent) VALUES( iduser,public.random_string(40), vremoteaddr,vuseragent) returning idsession into newidsession; + end if; + return newidsession; +end; +$$; + + +ALTER FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) OWNER TO potlu_user; + +-- +-- Name: getdates(date, integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getdates(startdate date, days integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(startdate + s*'1day'::interval) as daydate from generate_series(0,days-1) s ; + END; +$$; + + +ALTER FUNCTION public.getdates(startdate date, days integer) OWNER TO potlu_user; + +-- +-- Name: getdateslist(date, integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getdateslist(startdate date, days integer) RETURNS text + LANGUAGE plpgsql + AS $$ + declare + ret text; + begin + select string_agg(to_char(getdates,'YYYY-MM-DD'),',') into ret from getdates(startdate,days); + return ret; + END; +$$; + + +ALTER FUNCTION public.getdateslist(startdate date, days integer) OWNER TO potlu_user; + +-- +-- Name: getmondays(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getmondays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as mondays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=1; + END; +$$; + + +ALTER FUNCTION public.getmondays(vyear integer) OWNER TO potlu_user; + +-- +-- Name: getsession(text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id integer, username text, usergroups text, userschemata text) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select se.idsession,us.id,us.username,string_agg(distinct(aug.usergroup),',') as usergroups ,co.schemata as userschemata from sessions se +join users us on (us.id=se.id_user) +left join useringroups uig on (us.id=uig.id_user) +left join usergroups aug on (aug.id=uig.id_group) +left join members mb on (mb.id_user=us.id) +left join companies co on (co.id=mb.id_company) +where se.idsession= vidsession +and se.remote_addr= vremoteaddr +and se.user_agent= vuseragent and us.blocked is null group by se.id,us.id,mb.id,co.id; + END; +$$; + + +ALTER FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) OWNER TO potlu_user; + +-- +-- Name: getsundays(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getsundays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=7; + END; +$$; + + +ALTER FUNCTION public.getsundays(vyear integer) OWNER TO potlu_user; + +-- +-- Name: getweeks(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getweeks(vyear integer) RETURNS TABLE(cw integer, mondays date, sundays date) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select extract('week' from daydate)::int4 as cw,date(daydate - interval '3 days') as mondays , date(daydate + interval '3 days') as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=4; + END; +$$; + + +ALTER FUNCTION public.getweeks(vyear integer) OWNER TO potlu_user; + +-- +-- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.random_string(vlength integer) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + randstr text := null; +BEGIN +SELECT string_agg (substr('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', ceil (random() * 62)::integer, 1), '') into randstr +FROM generate_series(1, vlength); +return randstr; +end; +$$; + + +ALTER FUNCTION public.random_string(vlength integer) OWNER TO potlu_user; + +-- +-- Name: trg_update_basemonthhours(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_basemonthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_basemonthhours() OWNER TO potlu_user; + +-- +-- Name: trg_update_modified(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_modified() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.modified = Current_timestamp; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_modified() OWNER TO potlu_user; + +-- +-- Name: trg_update_monthhours(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_monthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_monthhours() OWNER TO potlu_user; + +-- +-- Name: trg_update_monthlyhours(); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.trg_update_monthlyhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION public.trg_update_monthlyhours() OWNER TO potlu_user; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: apps; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.apps ( + id integer NOT NULL, + app text NOT NULL, + description text, + name text, + id_usergroup integer, + icon text, + sort integer, + menutype text +); + + +ALTER TABLE public.apps OWNER TO potlu_user; + +-- +-- Name: apps_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.apps_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.apps_id_seq OWNER TO potlu_user; + +-- +-- Name: apps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.apps_id_seq OWNED BY public.apps.id; + + +-- +-- Name: companies; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.companies ( + id integer NOT NULL, + company text, + address text, + zip text, + city text, + country text, + tradetype text, + comregister text, + vatnumber text, + schemata text, + validated boolean, + schemata2 json, + email text +); + + +ALTER TABLE public.companies OWNER TO potlu_user; + +-- +-- Name: companies_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.companies_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.companies_id_seq OWNER TO potlu_user; + +-- +-- Name: companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.companies_id_seq OWNED BY public.companies.id; + + +-- +-- Name: maillayouts; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.maillayouts ( + id integer NOT NULL, + layoutname text, + mailtemplate text +); + + +ALTER TABLE public.maillayouts OWNER TO potlu_user; + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.maillayouts_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.maillayouts_id_seq OWNER TO potlu_user; + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.maillayouts_id_seq OWNED BY public.maillayouts.id; + + +-- +-- Name: mailtemplates; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.mailtemplates ( + id integer NOT NULL, + templatename text DEFAULT NULL::character varying, + emailtext text, + emaildatasql text, + mailfrom text, + mailsubject text DEFAULT NULL::character varying, + id_maillayout integer +); + + +ALTER TABLE public.mailtemplates OWNER TO potlu_user; + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.mailtemplates_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mailtemplates_id_seq OWNER TO potlu_user; + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.mailtemplates_id_seq OWNED BY public.mailtemplates.id; + + +-- +-- Name: members; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.members ( + id integer NOT NULL, + surname text, + prename text, + phone text, + id_user bigint, + id_company integer, + job text +); + + +ALTER TABLE public.members OWNER TO potlu_user; + +-- +-- Name: members_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.members_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.members_id_seq OWNER TO potlu_user; + +-- +-- Name: members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.members_id_seq OWNED BY public.members.id; + + +-- +-- Name: sessions; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.sessions ( + id bigint NOT NULL, + idsession text NOT NULL, + id_user bigint, + user_agent text, + remote_addr text, + created timestamp without time zone DEFAULT now() +); + + +ALTER TABLE public.sessions OWNER TO potlu_user; + +-- +-- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.sessions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.sessions_id_seq OWNER TO potlu_user; + +-- +-- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; + + +-- +-- Name: usergroups; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.usergroups ( + id integer NOT NULL, + usergroup text NOT NULL, + isdefault boolean, + groupname text +); + + +ALTER TABLE public.usergroups OWNER TO potlu_user; + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.usergroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.usergroups_id_seq OWNER TO potlu_user; + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.usergroups_id_seq OWNED BY public.usergroups.id; + + +-- +-- Name: useringroups; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.useringroups ( + id integer NOT NULL, + id_user bigint, + id_group bigint +); + + +ALTER TABLE public.useringroups OWNER TO potlu_user; + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.useringroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.useringroups_id_seq OWNER TO potlu_user; + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.useringroups_id_seq OWNED BY public.useringroups.id; + + +-- +-- Name: users; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.users ( + id integer NOT NULL, + userpassword text, + created timestamp without time zone DEFAULT now(), + blocked boolean, + username text, + regcode text, + vcode text, + schemaaccess json +); + + +ALTER TABLE public.users OWNER TO potlu_user; + +-- +-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.users_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.users_id_seq OWNER TO potlu_user; + +-- +-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; + + +-- +-- Name: vw_companydata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_companydata AS + SELECT companies.id, + companies.company, + companies.address, + companies.zip, + companies.city, + companies.country, + companies.tradetype, + companies.comregister, + companies.vatnumber, + companies.schemata AS link, + companies.validated + FROM public.companies; + + +ALTER TABLE public.vw_companydata OWNER TO potlu_user; + +-- +-- Name: vw_companylist; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_companylist AS + SELECT co.id, + co.company, + co.address, + co.zip, + co.city, + co.country, + ((((((co.address || '\n'::text) || co.zip) || ' '::text) || co.city) || ' '::text) || co.country) AS dspaddress, + co.schemata + FROM public.companies co; + + +ALTER TABLE public.vw_companylist OWNER TO potlu_user; + +-- +-- Name: vw_memberdata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_memberdata AS + SELECT members.id, + members.surname, + members.prename, + members.phone, + members.id_user, + members.id_company, + members.job + FROM public.members; + + +ALTER TABLE public.vw_memberdata OWNER TO potlu_user; + +-- +-- Name: vw_userdata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_userdata AS + SELECT users.id, + users.username + FROM public.users; + + +ALTER TABLE public.vw_userdata OWNER TO potlu_user; + +-- +-- Name: vw_userlist; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_userlist AS +SELECT + NULL::integer AS id, + NULL::integer AS id_member, + NULL::text AS username, + NULL::text AS prename, + NULL::text AS surname, + NULL::boolean AS blocked, + NULL::text AS group_ids, + NULL::integer AS id_company, + NULL::text AS company; + + +ALTER TABLE public.vw_userlist OWNER TO potlu_user; + +-- +-- Name: apps id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); + + +-- +-- Name: companies id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); + + +-- +-- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); + + +-- +-- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); + + +-- +-- Name: members id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass); + + +-- +-- Name: sessions id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); + + +-- +-- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); + + +-- +-- Name: useringroups id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups ALTER COLUMN id SET DEFAULT nextval('public.useringroups_id_seq'::regclass); + + +-- +-- Name: users id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); + + +-- +-- Data for Name: apps; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) FROM stdin; +7 staff Employé(e)s Employé(e)s 1 group.svg 4 schema +8 timetrackers Pointeuses Pointeuses \N cube.svg 7 schema +10 sites Sites Sites \N cube.svg 6 schema +11 workplans Plans de travail Plans (modèles) 1 cube.svg 8 schema +9 planning Planning POT 1 cube.svg 5 schema +4 profile Profil mes coordonnées 1 user.svg 9 global +6 companies Entreprise entreprise 1 company.svg 10 global +5 users Utilisateurs autres utilisateurs 1 group.svg 11 global +\. + + +-- +-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email) FROM stdin; +1 DKS s.à r.l. 4, rue Principale 3770 Tétange Luxembourg \N \N \N portanova \N \N \N +\. + + +-- +-- Data for Name: maillayouts; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.maillayouts (id, layoutname, mailtemplate) FROM stdin; +\. + + +-- +-- Data for Name: mailtemplates; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.mailtemplates (id, templatename, emailtext, emaildatasql, mailfrom, mailsubject, id_maillayout) FROM stdin; +\. + + +-- +-- Data for Name: members; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.members (id, surname, prename, phone, id_user, id_company, job) FROM stdin; +1 Saffran Kilian \N 1 1 \N +\. + + +-- +-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.sessions (id, idsession, id_user, user_agent, remote_addr, created) FROM stdin; +111 uWpnqxhEFJt2MZxMoLSz4ZAZoc3ZJnu3aKhq8oVD 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:213c:73ba:ffa7:842b 2019-12-05 19:16:43.969105 +112 mUmGFzD4kPLyhHfJO9TDOGfCtsVAEefRYrotRRo1 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:7946:65e2:f587:8b74 2019-12-06 07:02:23.094765 +113 HaDg0Eh9nIk7lftrHDtQpaKiLWL66VoEWRKMmSLz 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-09 11:33:13.202044 +114 aSli1lR9B0ETjICf7IFjVxhphLd8dhRdZ2mRd4RE 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362 ::1 2019-12-10 15:55:53.526432 +122 Sp2D9CvtdjQHaxLPkEXgqSMSveIJwQde56I5y3oC 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:d970:312a:d5d:db83 2019-12-12 07:06:51.913155 +123 klCMzztihKleI4E0zhnmNMrlL8sAUIj5TLHjb0si 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 ::1 2019-12-13 08:27:53.789037 +93 5P7159lXg8xY83Iu7eZC3hj3Oi6x29jXOhPKg0yn 1 Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36 ::1 2019-12-04 14:58:48.993651 +98 9UisAitYaoxdqtBaWUI37R04CiBlFxcp0STuCOZRU 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-05 07:34:07.997426 +99 v6wZ65qozoWn5P32q4wg16224TcOAM1VJnLFj1UJ 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 192.168.178.23 2019-12-05 07:35:01.756219 +\. + + +-- +-- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.usergroups (id, usergroup, isdefault, groupname) FROM stdin; +1 superadmin \N SuperAdmin +2 admin \N Admin +3 company \N Entreprise +4 site \N Site +5 user t Utilisateur +\. + + +-- +-- Data for Name: useringroups; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.useringroups (id, id_user, id_group) FROM stdin; +1 1 1 +\. + + +-- +-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess) FROM stdin; +1 0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec 2019-10-10 17:12:11.934747 \N ksaffran@dks.lu \N \N \N +\. + + +-- +-- Name: apps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.apps_id_seq', 11, true); + + +-- +-- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.companies_id_seq', 1, true); + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.maillayouts_id_seq', 1, false); + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.mailtemplates_id_seq', 1, false); + + +-- +-- Name: members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.members_id_seq', 1, false); + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.sessions_id_seq', 123, true); + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.useringroups_id_seq', 1, true); + + +-- +-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- + +SELECT pg_catalog.setval('public.users_id_seq', 1, false); + + +-- +-- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_pkey PRIMARY KEY (id); + + +-- +-- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.companies + ADD CONSTRAINT company_pkey PRIMARY KEY (id); + + +-- +-- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.maillayouts + ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); + + +-- +-- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); + + +-- +-- Name: members members_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_pkey PRIMARY KEY (id); + + +-- +-- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT uniq_username UNIQUE (username); + + +-- +-- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.usergroups + ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); + + +-- +-- Name: useringroups useringroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_pkey PRIMARY KEY (id); + + +-- +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_pkey PRIMARY KEY (id); + + +-- +-- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); + + +-- +-- Name: vw_userlist _RETURN; Type: RULE; Schema: public; Owner: potlu_user +-- + +CREATE OR REPLACE VIEW public.vw_userlist AS + SELECT us.id, + mb.id AS id_member, + COALESCE(us.username, ''::text) AS username, + mb.prename, + mb.surname, + us.blocked, + string_agg(ug.groupname, ','::text) AS group_ids, + co.id AS id_company, + co.company + FROM ((((public.users us + LEFT JOIN public.members mb ON ((us.id = mb.id_user))) + LEFT JOIN public.useringroups uig ON ((us.id = uig.id_user))) + JOIN public.usergroups ug ON ((uig.id_group = ug.id))) + LEFT JOIN public.companies co ON ((mb.id_company = co.id))) + GROUP BY us.id, mb.id, co.id + ORDER BY mb.surname, mb.prename; + + +-- +-- Name: apps apps_usergroups_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_usergroups_fk FOREIGN KEY (id_usergroup) REFERENCES public.usergroups(id); + + +-- +-- Name: mailtemplates mailtemplates_maillayouts_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_maillayouts_fk FOREIGN KEY (id_maillayout) REFERENCES public.maillayouts(id); + + +-- +-- Name: members members_users_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_users_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: useringroups useringroups_idgroup_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_idgroup_fkey FOREIGN KEY (id_group) REFERENCES public.usergroups(id); + + +-- +-- Name: useringroups useringroups_iduser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_iduser_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: sessions usersession_users_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_users_fk FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/dev/db/potlu_db.public.pg.schema.sql b/dev/db/potlu_db.public.pg.schema.sql new file mode 100644 index 00000000..54b62bfb --- /dev/null +++ b/dev/db/potlu_db.public.pg.schema.sql @@ -0,0 +1,834 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.5 (Debian 11.5-1+deb10u1) +-- Dumped by pg_dump version 11.5 (Debian 11.5-1+deb10u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: public; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA public; + + +-- +-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: - +-- + +COMMENT ON SCHEMA public IS 'standard public schema'; + + +-- +-- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + iduser int4; + newidsession text := null; +begin + select id into iduser from public.users where lower(username)=lower(vusername) and userpassword = vpassword and "blocked" is null; + if (iduser is not null) then + delete from public.sessions where id_user= iduser and remote_addr= vremoteaddr and user_agent= vuseragent; + insert into public.sessions (id_user,idsession,remote_addr,user_agent) VALUES( iduser,public.random_string(40), vremoteaddr,vuseragent) returning idsession into newidsession; + end if; + return newidsession; +end; +$$; + + +-- +-- Name: getdates(date, integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getdates(startdate date, days integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(startdate + s*'1day'::interval) as daydate from generate_series(0,days-1) s ; + END; +$$; + + +-- +-- Name: getdateslist(date, integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getdateslist(startdate date, days integer) RETURNS text + LANGUAGE plpgsql + AS $$ + declare + ret text; + begin + select string_agg(to_char(getdates,'YYYY-MM-DD'),',') into ret from getdates(startdate,days); + return ret; + END; +$$; + + +-- +-- Name: getmondays(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getmondays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as mondays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=1; + END; +$$; + + +-- +-- Name: getsession(text, text, text); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id integer, username text, usergroups text, userschemata text) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select se.idsession,us.id,us.username,string_agg(distinct(aug.usergroup),',') as usergroups ,co.schemata as userschemata from sessions se +join users us on (us.id=se.id_user) +left join useringroups uig on (us.id=uig.id_user) +left join usergroups aug on (aug.id=uig.id_group) +left join members mb on (mb.id_user=us.id) +left join companies co on (co.id=mb.id_company) +where se.idsession= vidsession +and se.remote_addr= vremoteaddr +and se.user_agent= vuseragent and us.blocked is null group by se.id,us.id,mb.id,co.id; + END; +$$; + + +-- +-- Name: getsundays(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getsundays(vyear integer) RETURNS SETOF date + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date(daydate) as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=7; + END; +$$; + + +-- +-- Name: getweeks(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getweeks(vyear integer) RETURNS TABLE(cw integer, mondays date, sundays date) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select extract('week' from daydate)::int4 as cw,date(daydate - interval '3 days') as mondays , date(daydate + interval '3 days') as sundays from ( + select (vyear || '-01-01')::date + s*'1day'::interval as daydate from + generate_series(0,(vyear ||'-12-31')::date - (vyear || '-01-01')::date) s) xx where extract('isodow' from daydate)=4; + END; +$$; + + +-- +-- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.random_string(vlength integer) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + randstr text := null; +BEGIN +SELECT string_agg (substr('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', ceil (random() * 62)::integer, 1), '') into randstr +FROM generate_series(1, vlength); +return randstr; +end; +$$; + + +-- +-- Name: trg_update_basemonthhours(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_basemonthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +-- +-- Name: trg_update_modified(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_modified() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.modified = Current_timestamp; + + RETURN NEW; + END; +$$; + + +-- +-- Name: trg_update_monthhours(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_monthhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +-- +-- Name: trg_update_monthlyhours(); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.trg_update_monthlyhours() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + new.monthhours = new.weekhours*173/40; + + RETURN NEW; + END; +$$; + + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: apps; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.apps ( + id integer NOT NULL, + app text NOT NULL, + description text, + name text, + id_usergroup integer, + icon text, + sort integer, + menutype text +); + + +-- +-- Name: apps_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.apps_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: apps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.apps_id_seq OWNED BY public.apps.id; + + +-- +-- Name: companies; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.companies ( + id integer NOT NULL, + company text, + address text, + zip text, + city text, + country text, + tradetype text, + comregister text, + vatnumber text, + schemata text, + validated boolean, + schemata2 json, + email text +); + + +-- +-- Name: companies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.companies_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.companies_id_seq OWNED BY public.companies.id; + + +-- +-- Name: maillayouts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.maillayouts ( + id integer NOT NULL, + layoutname text, + mailtemplate text +); + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.maillayouts_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: maillayouts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.maillayouts_id_seq OWNED BY public.maillayouts.id; + + +-- +-- Name: mailtemplates; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.mailtemplates ( + id integer NOT NULL, + templatename text DEFAULT NULL::character varying, + emailtext text, + emaildatasql text, + mailfrom text, + mailsubject text DEFAULT NULL::character varying, + id_maillayout integer +); + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.mailtemplates_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: mailtemplates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.mailtemplates_id_seq OWNED BY public.mailtemplates.id; + + +-- +-- Name: members; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.members ( + id integer NOT NULL, + surname text, + prename text, + phone text, + id_user bigint, + id_company integer, + job text +); + + +-- +-- Name: members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.members_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.members_id_seq OWNED BY public.members.id; + + +-- +-- Name: sessions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.sessions ( + id bigint NOT NULL, + idsession text NOT NULL, + id_user bigint, + user_agent text, + remote_addr text, + created timestamp without time zone DEFAULT now() +); + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.sessions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; + + +-- +-- Name: usergroups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.usergroups ( + id integer NOT NULL, + usergroup text NOT NULL, + isdefault boolean, + groupname text +); + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.usergroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.usergroups_id_seq OWNED BY public.usergroups.id; + + +-- +-- Name: useringroups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.useringroups ( + id integer NOT NULL, + id_user bigint, + id_group bigint +); + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.useringroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: useringroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.useringroups_id_seq OWNED BY public.useringroups.id; + + +-- +-- Name: users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.users ( + id integer NOT NULL, + userpassword text, + created timestamp without time zone DEFAULT now(), + blocked boolean, + username text, + regcode text, + vcode text, + schemaaccess json +); + + +-- +-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.users_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; + + +-- +-- Name: vw_companydata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_companydata AS + SELECT companies.id, + companies.company, + companies.address, + companies.zip, + companies.city, + companies.country, + companies.tradetype, + companies.comregister, + companies.vatnumber, + companies.schemata AS link, + companies.validated + FROM public.companies; + + +-- +-- Name: vw_companylist; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_companylist AS + SELECT co.id, + co.company, + co.address, + co.zip, + co.city, + co.country, + ((((((co.address || '\n'::text) || co.zip) || ' '::text) || co.city) || ' '::text) || co.country) AS dspaddress, + co.schemata + FROM public.companies co; + + +-- +-- Name: vw_memberdata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_memberdata AS + SELECT members.id, + members.surname, + members.prename, + members.phone, + members.id_user, + members.id_company, + members.job + FROM public.members; + + +-- +-- Name: vw_userdata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_userdata AS + SELECT users.id, + users.username + FROM public.users; + + +-- +-- Name: vw_userlist; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_userlist AS +SELECT + NULL::integer AS id, + NULL::integer AS id_member, + NULL::text AS username, + NULL::text AS prename, + NULL::text AS surname, + NULL::boolean AS blocked, + NULL::text AS group_ids, + NULL::integer AS id_company, + NULL::text AS company; + + +-- +-- Name: apps id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); + + +-- +-- Name: companies id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); + + +-- +-- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); + + +-- +-- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); + + +-- +-- Name: members id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass); + + +-- +-- Name: sessions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); + + +-- +-- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); + + +-- +-- Name: useringroups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups ALTER COLUMN id SET DEFAULT nextval('public.useringroups_id_seq'::regclass); + + +-- +-- Name: users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); + + +-- +-- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_pkey PRIMARY KEY (id); + + +-- +-- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.companies + ADD CONSTRAINT company_pkey PRIMARY KEY (id); + + +-- +-- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.maillayouts + ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); + + +-- +-- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); + + +-- +-- Name: members members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_pkey PRIMARY KEY (id); + + +-- +-- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT uniq_username UNIQUE (username); + + +-- +-- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.usergroups + ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); + + +-- +-- Name: useringroups useringroups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_pkey PRIMARY KEY (id); + + +-- +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_pkey PRIMARY KEY (id); + + +-- +-- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); + + +-- +-- Name: vw_userlist _RETURN; Type: RULE; Schema: public; Owner: - +-- + +CREATE OR REPLACE VIEW public.vw_userlist AS + SELECT us.id, + mb.id AS id_member, + COALESCE(us.username, ''::text) AS username, + mb.prename, + mb.surname, + us.blocked, + string_agg(ug.groupname, ','::text) AS group_ids, + co.id AS id_company, + co.company + FROM ((((public.users us + LEFT JOIN public.members mb ON ((us.id = mb.id_user))) + LEFT JOIN public.useringroups uig ON ((us.id = uig.id_user))) + JOIN public.usergroups ug ON ((uig.id_group = ug.id))) + LEFT JOIN public.companies co ON ((mb.id_company = co.id))) + GROUP BY us.id, mb.id, co.id + ORDER BY mb.surname, mb.prename; + + +-- +-- Name: apps apps_usergroups_fk; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_usergroups_fk FOREIGN KEY (id_usergroup) REFERENCES public.usergroups(id); + + +-- +-- Name: mailtemplates mailtemplates_maillayouts_fk; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_maillayouts_fk FOREIGN KEY (id_maillayout) REFERENCES public.maillayouts(id); + + +-- +-- Name: members members_users_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.members + ADD CONSTRAINT members_users_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: useringroups useringroups_idgroup_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_idgroup_fkey FOREIGN KEY (id_group) REFERENCES public.usergroups(id); + + +-- +-- Name: useringroups useringroups_iduser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.useringroups + ADD CONSTRAINT useringroups_iduser_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- Name: sessions usersession_users_fk; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_users_fk FOREIGN KEY (id_user) REFERENCES public.users(id); + + +-- +-- PostgreSQL database dump complete +-- + -- 2.39.5