diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0dd44b39..3ea12f55 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - control paths-ignore: - 'website/**' - '.github/workflows/website.yml' @@ -32,9 +33,9 @@ jobs: docker run -d -p 5432:5432 --name signalo -v $(pwd):/src opengisch/signalo:unstable docker exec signalo init_db.sh wait docker exec -e PGSERVICE=pg_signalo_demo signalo init_db.sh build -d + docker exec signalo pg_dump --format custom --exclude-schema=public --blobs --compress 5 --file signalo-testing-db-dump-with-demo.backup signalo_demo docker exec -e PGSERVICE=pg_signalo_demo signalo /src/scripts/all-signs.py - # - uses: actions/setup-node@v3 # with: # node-version: '18' @@ -75,15 +76,33 @@ jobs: DEMO_DB_TESTING: ${{ secrets.DEMO_DB_TESTING }} DEMO_DB_PASSWORD: ${{ secrets.DEMO_DB_PASSWORD }} run: | - BACKUP_FILE=signalo-testing-db-dump-with-demo.backup CONNECTION="--host=${DEMO_DB_HOST} --username=${DEMO_DB_USER} --port=${DEMO_DB_PORT} --dbname=${DEMO_DB_TESTING}" export PGPASSWORD=${DEMO_DB_PASSWORD} - docker exec signalo pg_dump --format custom --exclude-schema=public --blobs --compress 5 --file ${BACKUP_FILE} signalo psql ${CONNECTION} -c "DROP SCHEMA IF EXISTS signalo_app CASCADE; DROP SCHEMA IF EXISTS signalo_db CASCADE;" - pg_restore ${CONNECTION} --exit-on-error --clean --if-exists --no-owner ${BACKUP_FILE} + pg_restore ${CONNECTION} --exit-on-error --clean --if-exists --no-owner signalo-testing-db-dump-with-demo.backup psql ${CONNECTION} -v EXIT_ON_ERROR=on -f ./datamodel/roles/setup.sql - name: "failure logs" if: failure() run: | docker logs signalo + + - uses: actions/upload-artifact@v4 + id: artifact + if: github.event_name == 'pull_request' + with: + name: signalo-pr-testing + path: | + signalo-testing-db-dump-with-demo.backup + project + + - name: Schedule download comment + uses: ./.github/actions/post_sticky_comment + if: github.event_name == 'pull_request' + with: + marker: pr-testing + body: | + ### Testing + Download [demo data dump and QGIS project](${{ steps.artifact.outputs.artifact-url }}). + *(Built from commit ${{ github.event.pull_request.head.sha }})* + pr: ${{ github.event.number }} diff --git a/datamodel/app/create_app.py b/datamodel/app/create_app.py index 763b33f3..b23d0ce9 100755 --- a/datamodel/app/create_app.py +++ b/datamodel/app/create_app.py @@ -35,7 +35,7 @@ def create_views(srid: int, pg_service: str): run_sql("datamodel/app/create_schema.sql", pg_service, variables) - run_sql("datamodel/app/vw_edited_support.sql", pg_service, variables) + run_sql("datamodel/app/vw_validation.sql", pg_service, variables) run_sql("datamodel/app/vw_azimut_edit.sql", pg_service, variables) vw_sign_symbol(pg_service=pg_service, srid=srid) diff --git a/datamodel/app/vw_azimut_edit.sql b/datamodel/app/vw_azimut_edit.sql index 8fdfd22e..19274c46 100644 --- a/datamodel/app/vw_azimut_edit.sql +++ b/datamodel/app/vw_azimut_edit.sql @@ -4,6 +4,9 @@ CREATE OR REPLACE VIEW signalo_app.vw_azimut_edit AS SELECT az.id, + az._last_modification_date, + az._last_modification_user, + az.needs_validation, ST_MakeLine(su.geometry, ST_SetSRID(St_MakePoint(ST_X(su.geometry) + 10 * sin(radians(az.azimut)), ST_Y(su.geometry) + 10 *cos(radians(az.azimut))), 2056))::geometry(LineString, 2056) as geometry FROM signalo_db.azimut az INNER JOIN signalo_db.support su ON az.fk_support = su.id; @@ -25,7 +28,19 @@ CREATE FUNCTION signalo_app.ft_azimut_insert() RETURNS trigger RAISE EXCEPTION 'Could not create a support'; END IF; END IF; - INSERT INTO signalo_db.azimut (fk_support, azimut) VALUES (support_id, degrees(ST_Azimuth(ST_StartPoint(NEW.geometry), ST_EndPoint(NEW.geometry)))); + INSERT INTO signalo_db.azimut ( + fk_support, + _last_modification_date, + _last_modification_user, + needs_validation, + azimut + ) VALUES ( + support_id, + NEW._last_modification_date, + NEW._last_modification_user, + NEW.needs_validation, + degrees(ST_Azimuth(ST_StartPoint(NEW.geometry), ST_EndPoint(NEW.geometry))) + ); RETURN NEW; END; $$; @@ -48,7 +63,12 @@ CREATE FUNCTION signalo_app.ft_azimut_update() RETURNS trigger IF ST_NumPoints(NEW.geometry) != 2 THEN RAISE EXCEPTION 'The line should have only 2 vertices'; END IF; - UPDATE signalo_db.azimut SET azimut = degrees(ST_Azimuth(ST_StartPoint(NEW.geometry), ST_EndPoint(NEW.geometry))) WHERE id = NEW.id; + UPDATE signalo_db.azimut SET + azimut = degrees(ST_Azimuth(ST_StartPoint(NEW.geometry), ST_EndPoint(NEW.geometry))), + _last_modification_date = NEW._last_modification_date, + _last_modification_user = NEW._last_modification_user, + needs_validation = NEW.needs_validation::boolean + WHERE id = NEW.id; RETURN NEW; END; $$; diff --git a/datamodel/app/vw_edited_support.sql b/datamodel/app/vw_edited_support.sql deleted file mode 100644 index 44ee1f27..00000000 --- a/datamodel/app/vw_edited_support.sql +++ /dev/null @@ -1,7 +0,0 @@ -CREATE OR REPLACE VIEW signalo_app.vw_edited_support AS - SELECT su.id, su.geometry, - greatest(su._last_modified_date, a._last_modified_date, f._last_modified_date, si._last_modified_date) AS _last_modified_date - FROM signalo_db.support su - LEFT JOIN LATERAL (SELECT id, fk_support, MAX(_last_modified_date) OVER (PARTITION BY fk_support) AS _last_modified_date FROM signalo_db.azimut ) a ON a.fk_support = su.id - LEFT JOIN LATERAL (SELECT id, fk_azimut, MAX(_last_modified_date) OVER (PARTITION BY fk_azimut) AS _last_modified_date FROM signalo_db.frame) f ON f.fk_azimut = a.id - LEFT JOIN LATERAL (SELECT id, fk_frame, MAX(_last_modified_date) OVER (PARTITION BY fk_frame) AS _last_modified_date FROM signalo_db.sign) si ON si.fk_frame = f.id; diff --git a/datamodel/app/vw_sign_symbol.py b/datamodel/app/vw_sign_symbol.py index a32196ae..d24f764a 100644 --- a/datamodel/app/vw_sign_symbol.py +++ b/datamodel/app/vw_sign_symbol.py @@ -291,7 +291,12 @@ def vw_sign_symbol(srid: int, pg_service: str = None): table_name="sign", remove_pkey=False, indent=4, - skip_columns=["rank", "fk_frame", "_edited"], + skip_columns=[ + "rank", + "fk_frame", + "needs_validation", + "_last_modification_platform", + ], ), frame_columns=select_columns( pg_cur=cursor, @@ -299,7 +304,7 @@ def vw_sign_symbol(srid: int, pg_service: str = None): table_name="frame", remove_pkey=False, indent=4, - skip_columns=["_edited"], + skip_columns=["needs_validation", "_last_modification_platform"], prefix="frame_", ), vl_official_sign_columns=select_columns( diff --git a/datamodel/app/vw_validation.sql b/datamodel/app/vw_validation.sql new file mode 100644 index 00000000..889ee4e0 --- /dev/null +++ b/datamodel/app/vw_validation.sql @@ -0,0 +1,28 @@ +CREATE OR REPLACE VIEW signalo_app.vw_validation AS + SELECT + DISTINCT ON (su.id) + su.id, + su.geometry, + greatest(su._last_modification_date, a._last_modification_date, f._last_modification_date, si._last_modification_date) AS last_modification_date, + su.needs_validation or a.needs_validation or f.needs_validation or si.needs_validation AS needs_validation + FROM signalo_db.support su + LEFT JOIN (SELECT id, fk_support, needs_validation, MAX(_last_modification_date) OVER (PARTITION BY fk_support ORDER BY needs_validation DESC NULLS LAST) AS _last_modification_date FROM signalo_db.azimut ) a ON a.fk_support = su.id + LEFT JOIN (SELECT id, fk_azimut, needs_validation, MAX(_last_modification_date) OVER (PARTITION BY fk_azimut ORDER BY needs_validation DESC NULLS LAST) AS _last_modification_date FROM signalo_db.frame) f ON f.fk_azimut = a.id + LEFT JOIN (SELECT id, fk_frame, needs_validation, MAX(_last_modification_date) OVER (PARTITION BY fk_frame ORDER BY needs_validation DESC NULLS LAST) AS _last_modification_date FROM signalo_db.sign) si ON si.fk_frame = f.id; + +CREATE FUNCTION signalo_app.ft_validation_update() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + UPDATE signalo_db.support SET needs_validation = NEW.needs_validation WHERE id = NEW.id; + UPDATE signalo_db.azimut SET needs_validation = NEW.needs_validation WHERE fk_support = NEW.id; + UPDATE signalo_db.frame fr SET needs_validation = NEW.needs_validation FROM signalo_db.azimut az WHERE fr.fk_azimut = az.id AND az.fk_support = NEW.id; + UPDATE signalo_db.sign si SET needs_validation = NEW.needs_validation FROM signalo_db.frame fr, signalo_db.azimut az WHERE si.fk_frame = fr.id AND fr.fk_azimut = az.id AND az.fk_support = NEW.id; + RETURN NEW; + END; + $$; + +CREATE TRIGGER azimut_update + INSTEAD OF UPDATE ON signalo_app.vw_validation + FOR EACH ROW + EXECUTE FUNCTION signalo_app.ft_validation_update(); diff --git a/datamodel/changelogs/0102/0101_02_control.sql b/datamodel/changelogs/0102/0101_02_control.sql new file mode 100644 index 00000000..4dbe521d --- /dev/null +++ b/datamodel/changelogs/0102/0101_02_control.sql @@ -0,0 +1,34 @@ +ALTER TABLE signalo_db.support DROP COLUMN _edited; +ALTER TABLE signalo_db.azimut DROP COLUMN _edited; +ALTER TABLE signalo_db.frame DROP COLUMN _edited; +ALTER TABLE signalo_db.sign DROP COLUMN _edited; + +ALTER TABLE signalo_db.support ADD COLUMN needs_validation boolean not null default false; +ALTER TABLE signalo_db.azimut ADD COLUMN needs_validation boolean not null default false; +ALTER TABLE signalo_db.frame ADD COLUMN needs_validation boolean not null default false; +ALTER TABLE signalo_db.sign ADD COLUMN needs_validation boolean not null default false; + +ALTER TABLE signalo_db.support ADD COLUMN _last_modification_platform text default null; +ALTER TABLE signalo_db.azimut ADD COLUMN _last_modification_platform text default null; +ALTER TABLE signalo_db.frame ADD COLUMN _last_modification_platform text default null; +ALTER TABLE signalo_db.sign ADD COLUMN _last_modification_platform text default null; + +ALTER TABLE signalo_db.support RENAME COLUMN _last_modified_date TO _last_modification_date; +ALTER TABLE signalo_db.azimut RENAME COLUMN _last_modified_date TO _last_modification_date; +ALTER TABLE signalo_db.frame RENAME COLUMN _last_modified_date TO _last_modification_date; +ALTER TABLE signalo_db.sign RENAME COLUMN _last_modified_date TO _last_modification_date; + +ALTER TABLE signalo_db.support RENAME COLUMN _last_modified_user TO _last_modification_user; +ALTER TABLE signalo_db.azimut RENAME COLUMN _last_modified_user TO _last_modification_user; +ALTER TABLE signalo_db.frame RENAME COLUMN _last_modified_user TO _last_modification_user; +ALTER TABLE signalo_db.sign RENAME COLUMN _last_modified_user TO _last_modification_user; + +ALTER TABLE signalo_db.support RENAME COLUMN _inserted_date TO _creation_date; +ALTER TABLE signalo_db.azimut RENAME COLUMN _inserted_date TO _creation_date; +ALTER TABLE signalo_db.frame RENAME COLUMN _inserted_date TO _creation_date; +ALTER TABLE signalo_db.sign RENAME COLUMN _inserted_date TO _creation_date; + +ALTER TABLE signalo_db.support RENAME COLUMN _inserted_user TO _creation_user; +ALTER TABLE signalo_db.azimut RENAME COLUMN _inserted_user TO _creation_user; +ALTER TABLE signalo_db.frame RENAME COLUMN _inserted_user TO _creation_user; +ALTER TABLE signalo_db.sign RENAME COLUMN _inserted_user TO _creation_user; diff --git a/datamodel/demo_data/azimut_content.sql b/datamodel/demo_data/azimut_content.sql index fec0339d..21c83503 100644 --- a/datamodel/demo_data/azimut_content.sql +++ b/datamodel/demo_data/azimut_content.sql @@ -1,19 +1,19 @@ -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('00000000-0000-0000-aaaa-000000000201', '00000000-0000-0000-0000-000000000002', 227, NULL, NULL, NULL, '2023-02-22 08:31:37.740141', NULL, '2023-02-22 08:31:37.740141', NULL, false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('00000000-0000-0000-aaaa-000000000202', '00000000-0000-0000-0000-000000000002', 345, NULL, NULL, NULL, '2023-02-22 08:31:37.741532', NULL, '2023-02-22 08:31:37.741532', NULL, false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('00000000-0000-bbbb-0000-0000000000a1', '00000000-0000-0000-0000-0000000000a1', 110, NULL, NULL, NULL, '2023-02-22 08:31:37.799163', NULL, '2023-11-14 08:33:39.706', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('0d8fb844-ec63-43fb-a0e5-cd35a0c62565', '82f3002b-ebdf-4621-9a19-951639fc18bd', 200, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-11-14 05:56:42.155', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('0e2cd688-3984-46b5-9f70-e052305e2cac', 'f5054922-95a7-4f12-8374-0a57e105327c', 290, NULL, NULL, NULL, '2023-02-22 10:06:58.155', 'Denis Rouzaud', '2023-09-07 09:35:52.676', 'Denis Rouzaud', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('1193f576-089a-11eb-8b8b-0242ac110002', '814da66a-0894-11eb-99f5-0242ac110002', 0, NULL, NULL, NULL, '2023-02-22 08:31:37.751308', NULL, '2023-02-22 08:31:37.751308', NULL, false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('38d32a6b-2145-4ac7-b890-7459d67cd167', '94ff73df-fc80-4319-b2b9-7aa06ca4f806', 90, NULL, NULL, NULL, '2024-01-30 10:16:21.373', 'Rouzaud Denis', '2024-01-30 10:54:23.077', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('55ffc93c-fd0f-4c67-8fe7-da217124a793', 'bbdb5d1e-4973-4900-8838-889357a60e65', 180, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-11-24 10:43:42.024', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('779ffe5a-2538-41ed-8abe-79e6825a1b56', '3dbc19a5-b7bf-4acd-94d0-ba4b0b17ddc0', 180, NULL, NULL, NULL, '2024-01-30 10:16:21.373', 'Rouzaud Denis', '2024-01-30 10:54:13.024', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('7fd7b4cc-24b7-4b3c-acbe-a9633337fb82', '20f47695-aefa-43b1-854f-a770fa0f79e0', 30, NULL, NULL, NULL, '2024-02-13 09:39:33.382', 'Rouzaud Denis', '2024-02-13 09:49:16.387', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('83fb8a3a-0899-11eb-8b8b-0242ac110002', '814da66a-0894-11eb-99f5-0242ac110002', 200, NULL, NULL, NULL, '2023-02-22 08:31:37.777955', NULL, '2023-02-22 08:31:37.777955', NULL, false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 'a3921fbd-8a89-4d82-b3b8-7a24a16f4df4', 280, NULL, NULL, NULL, '2023-09-07 09:36:47.07', 'Denis Rouzaud', '2023-09-07 09:39:36.121', 'Denis Rouzaud', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 'f17d39cc-bac3-4134-9b9c-ea14e228d4b4', 290, NULL, NULL, NULL, '2023-08-31 16:15:55.608', 'Denis Rouzaud', '2023-11-14 08:33:25.694', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('bbb63098-ee04-4a0d-963d-4df18af5fa7a', '70104932-54ff-4668-90b0-6946352d5544', 20, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-09-07 09:17:46.397', 'Denis Rouzaud', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('d8a1e45b-7f4c-4c71-a12a-3a2df6d42045', 'bbdb5d1e-4973-4900-8838-889357a60e65', 90, NULL, NULL, NULL, '2023-11-08 13:29:08.086', 'Rouzaud Denis', '2023-11-24 10:42:49.654', 'Rouzaud Denis', false, 1, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('dd9e3482-089b-11eb-8b8b-0242ac110002', '2e988298-0897-11eb-8771-0242ac110002', 200, NULL, NULL, NULL, '2023-02-22 08:31:37.79742', NULL, '2023-02-22 08:31:37.79742', NULL, false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('e136f7a0-5913-48bb-8893-1b4b0705f238', '4478bbcc-0236-46ee-b284-4c586e6af8a9', 190, NULL, NULL, NULL, '2023-06-21 08:36:19.92', 'Denis Rouzaud', '2023-09-07 09:46:09.378', 'Denis Rouzaud', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('e3999392-ea54-4848-87cb-9440a552d35b', '82f3002b-ebdf-4621-9a19-951639fc18bd', 290, NULL, NULL, NULL, '2023-09-06 09:21:06.167', 'Denis Rouzaud', '2023-11-14 05:57:01.141', 'Rouzaud Denis', false, 0, 0, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('f05176ff-87e6-40e5-aae6-e58ff8e76dc6', 'c13a9809-b862-4237-a67f-bb34897d90b5', 30, NULL, NULL, NULL, '2024-02-13 09:39:33.382', 'Rouzaud Denis', '2024-02-13 09:39:33.383', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('00000000-0000-0000-aaaa-000000000201', '00000000-0000-0000-0000-000000000002', 227, NULL, NULL, NULL, '2023-02-22 08:31:37.740141', NULL, '2023-02-22 08:31:37.740141', NULL, false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('00000000-0000-0000-aaaa-000000000202', '00000000-0000-0000-0000-000000000002', 345, NULL, NULL, NULL, '2023-02-22 08:31:37.741532', NULL, '2023-02-22 08:31:37.741532', NULL, false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('00000000-0000-bbbb-0000-0000000000a1', '00000000-0000-0000-0000-0000000000a1', 110, NULL, NULL, NULL, '2023-02-22 08:31:37.799163', NULL, '2023-11-14 08:33:39.706', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('0d8fb844-ec63-43fb-a0e5-cd35a0c62565', '82f3002b-ebdf-4621-9a19-951639fc18bd', 200, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-11-14 05:56:42.155', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('0e2cd688-3984-46b5-9f70-e052305e2cac', 'f5054922-95a7-4f12-8374-0a57e105327c', 290, NULL, NULL, NULL, '2023-02-22 10:06:58.155', 'Denis Rouzaud', '2023-09-07 09:35:52.676', 'Denis Rouzaud', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('1193f576-089a-11eb-8b8b-0242ac110002', '814da66a-0894-11eb-99f5-0242ac110002', 0, NULL, NULL, NULL, '2023-02-22 08:31:37.751308', NULL, '2023-02-22 08:31:37.751308', NULL, false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('38d32a6b-2145-4ac7-b890-7459d67cd167', '94ff73df-fc80-4319-b2b9-7aa06ca4f806', 90, NULL, NULL, NULL, '2024-01-30 10:16:21.373', 'Rouzaud Denis', '2024-01-30 10:54:23.077', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('779ffe5a-2538-41ed-8abe-79e6825a1b56', '3dbc19a5-b7bf-4acd-94d0-ba4b0b17ddc0', 180, NULL, NULL, NULL, '2024-01-30 10:16:21.373', 'Rouzaud Denis', '2024-01-30 10:54:13.024', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('55ffc93c-fd0f-4c67-8fe7-da217124a793', 'bbdb5d1e-4973-4900-8838-889357a60e65', 180, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-11-24 10:43:42.024', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('7fd7b4cc-24b7-4b3c-acbe-a9633337fb82', '20f47695-aefa-43b1-854f-a770fa0f79e0', 30, NULL, NULL, NULL, '2024-02-13 09:39:33.382', 'Rouzaud Denis', '2024-02-13 09:49:16.387', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('83fb8a3a-0899-11eb-8b8b-0242ac110002', '814da66a-0894-11eb-99f5-0242ac110002', 200, NULL, NULL, NULL, '2023-02-22 08:31:37.777955', NULL, '2023-02-22 08:31:37.777955', NULL, false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 'a3921fbd-8a89-4d82-b3b8-7a24a16f4df4', 280, NULL, NULL, NULL, '2023-09-07 09:36:47.07', 'Denis Rouzaud', '2023-09-07 09:39:36.121', 'Denis Rouzaud', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 'f17d39cc-bac3-4134-9b9c-ea14e228d4b4', 290, NULL, NULL, NULL, '2023-08-31 16:15:55.608', 'Denis Rouzaud', '2023-11-14 08:33:25.694', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('bbb63098-ee04-4a0d-963d-4df18af5fa7a', '70104932-54ff-4668-90b0-6946352d5544', 20, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-09-07 09:17:46.397', 'Denis Rouzaud', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('d8a1e45b-7f4c-4c71-a12a-3a2df6d42045', 'bbdb5d1e-4973-4900-8838-889357a60e65', 90, NULL, NULL, NULL, '2023-11-08 13:29:08.086', 'Rouzaud Denis', '2023-11-24 10:42:49.654', 'Rouzaud Denis', false, 1, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('dd9e3482-089b-11eb-8b8b-0242ac110002', '2e988298-0897-11eb-8771-0242ac110002', 200, NULL, NULL, NULL, '2023-02-22 08:31:37.79742', NULL, '2023-02-22 08:31:37.79742', NULL, false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('e136f7a0-5913-48bb-8893-1b4b0705f238', '4478bbcc-0236-46ee-b284-4c586e6af8a9', 190, NULL, NULL, NULL, '2023-06-21 08:36:19.92', 'Denis Rouzaud', '2023-09-07 09:46:09.378', 'Denis Rouzaud', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('e3999392-ea54-4848-87cb-9440a552d35b', '82f3002b-ebdf-4621-9a19-951639fc18bd', 290, NULL, NULL, NULL, '2023-09-06 09:21:06.167', 'Denis Rouzaud', '2023-11-14 05:57:01.141', 'Rouzaud Denis', false, 0, 0, 0, 0); +INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, offset_x, offset_y, offset_x_verso, offset_y_verso) VALUES ('f05176ff-87e6-40e5-aae6-e58ff8e76dc6', 'c13a9809-b862-4237-a67f-bb34897d90b5', 30, NULL, NULL, NULL, '2024-02-13 09:39:33.382', 'Rouzaud Denis', '2024-02-13 09:39:33.383', 'Rouzaud Denis', false, 0, 0, 0, 0); diff --git a/datamodel/demo_data/frame_content.sql b/datamodel/demo_data/frame_content.sql index c4c5e008..c1ebd00a 100644 --- a/datamodel/demo_data/frame_content.sql +++ b/datamodel/demo_data/frame_content.sql @@ -1,29 +1,29 @@ -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020101', '00000000-0000-0000-aaaa-000000000201', 1, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.086453', NULL, '2023-02-22 08:31:38.086453', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020201', '00000000-0000-0000-aaaa-000000000202', 1, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.088071', NULL, '2023-02-22 08:31:38.088071', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020202', '00000000-0000-0000-aaaa-000000000202', 2, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.089553', NULL, '2023-02-22 08:31:38.089553', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020203', '00000000-0000-0000-aaaa-000000000202', 3, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.091047', NULL, '2023-02-22 08:31:38.091047', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020204', '00000000-0000-0000-aaaa-000000000202', 4, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.092504', NULL, '2023-02-22 08:31:38.092504', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-ffff-0000-0000000000a1', '00000000-0000-bbbb-0000-0000000000a1', 1, 2, 2, false, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.189512', NULL, '2023-09-06 09:16:18.777', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-ffff-0000-0000000000a2', '00000000-0000-bbbb-0000-0000000000a1', 2, 2, 2, false, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.189512', NULL, '2023-09-06 09:16:27.768', 'Denis Rouzaud', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('055369c1-e422-4851-aa90-690e4a526335', 'bbb63098-ee04-4a0d-963d-4df18af5fa7a', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-09-06 09:27:48.632', 'Denis Rouzaud', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('0cac19f6-db18-4354-9901-1bbc53a41e01', 'e3999392-ea54-4848-87cb-9440a552d35b', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:21:07.758', 'Denis Rouzaud', '2023-09-07 09:20:13.349', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('0e2decbd-06fa-459e-80af-a13a54e67e52', '0d8fb844-ec63-43fb-a0e5-cd35a0c62565', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-09-06 09:22:23.311', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('19d4cf98-0927-11eb-b4e5-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 1, 10, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.098692', NULL, '2023-02-22 08:31:38.098692', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('1d945e23-3ba7-4a34-b3df-c9ac17b9827e', '0d8fb844-ec63-43fb-a0e5-cd35a0c62565', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-09-06 09:23:15.419', 'Denis Rouzaud', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('348fc524-cc99-41c4-8780-2f7e4d2ff919', 'e136f7a0-5913-48bb-8893-1b4b0705f238', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:24.53', 'Denis Rouzaud', '2023-06-21 08:36:24.53', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('3c7fe8c4-d4bf-481c-9bb6-cfbe89c5c103', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:36:54.427', 'Denis Rouzaud', '2023-09-07 09:36:54.427', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('5a42808a-9610-4a2e-b207-fd34c8211baa', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:39:40.71', 'Denis Rouzaud', '2023-09-07 09:39:40.71', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('5e197b05-07db-4143-9c1c-2f7ffab1b378', '7fd7b4cc-24b7-4b3c-acbe-a9633337fb82', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:39:43.681', 'Rouzaud Denis', '2024-02-13 09:49:16.396', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('642de2ea-089c-11eb-b19a-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 2, 3, 11, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.118357', NULL, '2023-02-22 08:31:38.118357', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('68cb0b0b-2082-49cc-bf6d-b106c861dada', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 3, NULL, NULL, true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:42:33.329', 'Denis Rouzaud', '2023-09-07 09:42:33.329', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('75f4bf9f-5f5e-4362-a4ce-fb29bb8c0123', 'b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:19:50.073', 'Denis Rouzaud', '2023-08-31 16:19:50.074', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('79bf0ed6-b98e-4aab-af05-885612053033', '779ffe5a-2538-41ed-8abe-79e6825a1b56', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:30.856', 'Rouzaud Denis', '2024-01-30 10:18:06.917', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('a088c423-b088-4306-8b7f-a3b1151682ec', '55ffc93c-fd0f-4c67-8fe7-da217124a793', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-11-08 13:28:04.949', 'Rouzaud Denis', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('a49c33b0-0926-11eb-b4e5-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 3, 12, 2, false, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.152963', NULL, '2023-02-22 08:31:38.152963', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('a899745b-f562-47ca-9175-ef2e19ac18de', 'b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 1, NULL, NULL, true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:16:15.957', 'Denis Rouzaud', '2023-08-31 16:20:57.428', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('b703bf1e-7260-453c-8838-06d94880422d', 'f05176ff-87e6-40e5-aae6-e58ff8e76dc6', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:39:43.681', 'Rouzaud Denis', '2024-02-13 09:39:43.681', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('bc6eb427-308e-4ff2-a94a-c1a2be2fc5af', '0e2cd688-3984-46b5-9f70-e052305e2cac', 1, 10, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 10:07:20.883', 'Denis Rouzaud', '2023-02-22 10:07:20.883', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('c167ced0-efb2-4874-9816-1707f3b6ffec', 'd8a1e45b-7f4c-4c71-a12a-3a2df6d42045', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-08 13:29:16.487', 'Rouzaud Denis', '2023-11-08 13:31:10.687', 'Rouzaud Denis', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('da131ba0-42ed-4a60-a13d-ac35cea9edc5', 'bbb63098-ee04-4a0d-963d-4df18af5fa7a', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-09-06 09:27:48.611', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('de543457-a30a-4a5c-b470-6cffb7df792c', '38d32a6b-2145-4ac7-b890-7459d67cd167', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:30.856', 'Rouzaud Denis', '2024-01-30 10:16:30.856', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('fdc08784-e5a6-4b0a-a299-2cc3e67a0079', '55ffc93c-fd0f-4c67-8fe7-da217124a793', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-11-08 13:28:04.973', 'Rouzaud Denis', false, 'LEFT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('00000000-0000-0000-ffff-000000020101', '00000000-0000-0000-aaaa-000000000201', 1, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.086453', NULL, '2023-02-22 08:31:38.086453', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('00000000-0000-0000-ffff-000000020201', '00000000-0000-0000-aaaa-000000000202', 1, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.088071', NULL, '2023-02-22 08:31:38.088071', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('00000000-0000-0000-ffff-000000020202', '00000000-0000-0000-aaaa-000000000202', 2, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.089553', NULL, '2023-02-22 08:31:38.089553', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('00000000-0000-0000-ffff-000000020203', '00000000-0000-0000-aaaa-000000000202', 3, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.091047', NULL, '2023-02-22 08:31:38.091047', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('00000000-0000-0000-ffff-000000020204', '00000000-0000-0000-aaaa-000000000202', 4, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.092504', NULL, '2023-02-22 08:31:38.092504', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('00000000-0000-ffff-0000-0000000000a1', '00000000-0000-bbbb-0000-0000000000a1', 1, 2, 2, false, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.189512', NULL, '2023-09-06 09:16:18.777', 'Denis Rouzaud', false, 'RIGHT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('00000000-0000-ffff-0000-0000000000a2', '00000000-0000-bbbb-0000-0000000000a1', 2, 2, 2, false, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.189512', NULL, '2023-09-06 09:16:27.768', 'Denis Rouzaud', false, 'LEFT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('055369c1-e422-4851-aa90-690e4a526335', 'bbb63098-ee04-4a0d-963d-4df18af5fa7a', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-09-06 09:27:48.632', 'Denis Rouzaud', false, 'LEFT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('0cac19f6-db18-4354-9901-1bbc53a41e01', 'e3999392-ea54-4848-87cb-9440a552d35b', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:21:07.758', 'Denis Rouzaud', '2023-09-07 09:20:13.349', 'Denis Rouzaud', false, 'RIGHT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('0e2decbd-06fa-459e-80af-a13a54e67e52', '0d8fb844-ec63-43fb-a0e5-cd35a0c62565', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-09-06 09:22:23.311', 'Denis Rouzaud', false, 'RIGHT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('19d4cf98-0927-11eb-b4e5-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 1, 10, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.098692', NULL, '2023-02-22 08:31:38.098692', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('1d945e23-3ba7-4a34-b3df-c9ac17b9827e', '0d8fb844-ec63-43fb-a0e5-cd35a0c62565', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-09-06 09:23:15.419', 'Denis Rouzaud', false, 'LEFT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('348fc524-cc99-41c4-8780-2f7e4d2ff919', 'e136f7a0-5913-48bb-8893-1b4b0705f238', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:24.53', 'Denis Rouzaud', '2023-06-21 08:36:24.53', 'Denis Rouzaud', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('3c7fe8c4-d4bf-481c-9bb6-cfbe89c5c103', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:36:54.427', 'Denis Rouzaud', '2023-09-07 09:36:54.427', 'Denis Rouzaud', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('5a42808a-9610-4a2e-b207-fd34c8211baa', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:39:40.71', 'Denis Rouzaud', '2023-09-07 09:39:40.71', 'Denis Rouzaud', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('5e197b05-07db-4143-9c1c-2f7ffab1b378', '7fd7b4cc-24b7-4b3c-acbe-a9633337fb82', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:39:43.681', 'Rouzaud Denis', '2024-02-13 09:49:16.396', 'Rouzaud Denis', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('642de2ea-089c-11eb-b19a-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 2, 3, 11, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.118357', NULL, '2023-02-22 08:31:38.118357', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('68cb0b0b-2082-49cc-bf6d-b106c861dada', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 3, NULL, NULL, true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:42:33.329', 'Denis Rouzaud', '2023-09-07 09:42:33.329', 'Denis Rouzaud', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('75f4bf9f-5f5e-4362-a4ce-fb29bb8c0123', 'b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:19:50.073', 'Denis Rouzaud', '2023-08-31 16:19:50.074', 'Denis Rouzaud', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('79bf0ed6-b98e-4aab-af05-885612053033', '779ffe5a-2538-41ed-8abe-79e6825a1b56', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:30.856', 'Rouzaud Denis', '2024-01-30 10:18:06.917', 'Rouzaud Denis', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('a088c423-b088-4306-8b7f-a3b1151682ec', '55ffc93c-fd0f-4c67-8fe7-da217124a793', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-11-08 13:28:04.949', 'Rouzaud Denis', false, 'RIGHT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('a49c33b0-0926-11eb-b4e5-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 3, 12, 2, false, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.152963', NULL, '2023-02-22 08:31:38.152963', NULL, false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('a899745b-f562-47ca-9175-ef2e19ac18de', 'b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 1, NULL, NULL, true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:16:15.957', 'Denis Rouzaud', '2023-08-31 16:20:57.428', 'Denis Rouzaud', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('b703bf1e-7260-453c-8838-06d94880422d', 'f05176ff-87e6-40e5-aae6-e58ff8e76dc6', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:39:43.681', 'Rouzaud Denis', '2024-02-13 09:39:43.681', 'Rouzaud Denis', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('bc6eb427-308e-4ff2-a94a-c1a2be2fc5af', '0e2cd688-3984-46b5-9f70-e052305e2cac', 1, 10, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 10:07:20.883', 'Denis Rouzaud', '2023-02-22 10:07:20.883', 'Denis Rouzaud', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('c167ced0-efb2-4874-9816-1707f3b6ffec', 'd8a1e45b-7f4c-4c71-a12a-3a2df6d42045', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-08 13:29:16.487', 'Rouzaud Denis', '2023-11-08 13:31:10.687', 'Rouzaud Denis', false, 'LEFT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('da131ba0-42ed-4a60-a13d-ac35cea9edc5', 'bbb63098-ee04-4a0d-963d-4df18af5fa7a', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-09-06 09:27:48.611', 'Denis Rouzaud', false, 'RIGHT'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('de543457-a30a-4a5c-b470-6cffb7df792c', '38d32a6b-2145-4ac7-b890-7459d67cd167', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:30.856', 'Rouzaud Denis', '2024-01-30 10:16:30.856', 'Rouzaud Denis', false, 'CENTER'); +INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, anchor) VALUES ('fdc08784-e5a6-4b0a-a299-2cc3e67a0079', '55ffc93c-fd0f-4c67-8fe7-da217124a793', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-11-08 13:28:04.973', 'Rouzaud Denis', false, 'LEFT'); diff --git a/datamodel/demo_data/sign_content.sql b/datamodel/demo_data/sign_content.sql index 3d0bc10f..1ce4b51b 100644 --- a/datamodel/demo_data/sign_content.sql +++ b/datamodel/demo_data/sign_content.sql @@ -1,34 +1,34 @@ -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002010101', '00000000-0000-0000-ffff-000000020101', 1, false, 11, '1.01', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.374179', NULL, '2023-02-22 08:31:38.374179', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020101', '00000000-0000-0000-ffff-000000020201', 1, false, 11, '4.52', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.375723', NULL, '2023-02-22 08:31:38.375723', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020201', '00000000-0000-0000-ffff-000000020202', 1, false, 11, '1.03', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.381531', NULL, '2023-02-22 08:31:38.381531', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020202', '00000000-0000-0000-ffff-000000020202', 2, false, 11, '1.14', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.383483', NULL, '2023-02-22 08:31:38.383483', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020203', '00000000-0000-0000-ffff-000000020202', 3, false, 11, '1.14', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.385582', NULL, '2023-02-22 08:31:38.385582', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020301', '00000000-0000-0000-ffff-000000020203', 1, false, 11, '1.25a', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.387403', NULL, '2023-02-22 08:31:38.387403', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020401', '00000000-0000-0000-ffff-000000020204', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.389932', NULL, '2023-02-22 08:31:38.389932', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020201', '00000000-0000-0000-ffff-000000020202', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.392028', NULL, '2023-02-22 08:31:38.392028', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020202', '00000000-0000-0000-ffff-000000020202', 2, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.398225', NULL, '2023-02-22 08:31:38.398225', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020203', '00000000-0000-0000-ffff-000000020203', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.400285', NULL, '2023-02-22 08:31:38.400285', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('0c1c7b4e-4c86-11ee-b83f-0242ac110002', '0cac19f6-db18-4354-9901-1bbc53a41e01', 1, false, 11, '4.46.1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Gare', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:21:20.73', 'Denis Rouzaud', '2023-09-07 09:23:46.313', 'Denis Rouzaud', false, NULL, false, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('19d4da92-0927-11eb-b4e5-0242ac110002', '19d4cf98-0927-11eb-b4e5-0242ac110002', 3, false, 11, '2.59.5', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, NULL, 2, NULL, '2020-10-08', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.423203', NULL, '2023-02-22 08:31:38.423203', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('34e71990-4d52-11ee-b7d3-0242ac110002', '68cb0b0b-2082-49cc-bf6d-b106c861dada', 1, false, 11, '2.59.1-NP', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:42:47.934', 'Denis Rouzaud', '2023-09-07 09:42:47.934', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('3a04c71e-4c86-11ee-a7f4-0242ac110002', '0e2decbd-06fa-459e-80af-a13a54e67e52', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-11-14 05:57:39.572', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('440440ae-7e32-11ee-bbd5-0242ac110002', 'a088c423-b088-4306-8b7f-a3b1151682ec', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-11-08 13:28:04.958', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('4406af6a-7e32-11ee-bbd5-0242ac110002', 'fdc08784-e5a6-4b0a-a299-2cc3e67a0079', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-11-08 13:28:04.979', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('4d82377c-4c86-11ee-a7f4-0242ac110002', '1d945e23-3ba7-4a34-b3df-c9ac17b9827e', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-11-14 05:57:47.721', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('54e7a8a2-bf50-11ee-a144-0242ac110002', 'de543457-a30a-4a5c-b470-6cffb7df792c', 1, false, 13, NULL, NULL, 11, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:35.661', 'Rouzaud Denis', '2024-01-30 10:16:35.662', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('642e4438-089c-11eb-b19a-0242ac110002', '642de2ea-089c-11eb-b19a-0242ac110002', 1, false, 11, '1.05', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 2, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, 3, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.509558', NULL, '2023-02-22 08:31:38.509558', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('7358585e-b290-11ed-839a-0242ac110002', 'bc6eb427-308e-4ff2-a94a-c1a2be2fc5af', 1, false, 14, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Rue des cygneaux', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 10:07:35.455', 'Denis Rouzaud', '2023-02-22 10:07:35.455', 'Denis Rouzaud', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('7a8a60ae-bf50-11ee-9efd-0242ac110002', '79bf0ed6-b98e-4aab-af05-885612053033', 1, false, 13, NULL, NULL, 12, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, true, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:35.661', 'Rouzaud Denis', '2024-01-30 10:18:28.622', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('815f840e-4809-11ee-b1dc-0242ac110002', '75f4bf9f-5f5e-4362-a4ce-fb29bb8c0123', 1, false, 11, '2.32', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:19:54.172', 'Denis Rouzaud', '2023-08-31 16:20:35.183', 'Denis Rouzaud', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('8caeb2f2-ca4b-11ee-9e6e-0242ac110002', 'b703bf1e-7260-453c-8838-06d94880422d', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:40:14.608', 'Rouzaud Denis', '2024-02-13 09:40:50.916', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('8ed40678-7e32-11ee-9c43-0242ac110002', 'c167ced0-efb2-4874-9816-1707f3b6ffec', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-11-08 13:29:18.774', 'Rouzaud Denis', '2023-11-08 13:29:18.774', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('9e8acdb6-4d51-11ee-b653-0242ac110002', '3c7fe8c4-d4bf-481c-9bb6-cfbe89c5c103', 1, false, 11, '4.33-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Gare', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:37:43.359', 'Denis Rouzaud', '2023-09-07 09:42:22.182', 'Denis Rouzaud', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a49cc906-0926-11eb-b4e5-0242ac110002', 'a49c33b0-0926-11eb-b4e5-0242ac110002', 2, false, 11, '2.04', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 10, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, 1, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.639681', NULL, '2023-02-22 08:31:38.639681', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a7e54358-47db-11ee-9048-0242ac110002', '00000000-0000-ffff-0000-0000000000a1', 1, false, 11, '2.02', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-06-21 08:36:32.694', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a7e57314-47db-11ee-9048-0242ac110002', '00000000-0000-ffff-0000-0000000000a2', 1, false, 11, '2.34', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-09-06 09:16:27.792', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('c4dc6ec0-ca4c-11ee-a556-0242ac110002', '5e197b05-07db-4143-9c1c-2f7ffab1b378', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:40:14.608', 'Rouzaud Denis', '2024-02-13 09:49:40.714', 'Rouzaud Denis', false, NULL, false, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('cc39549e-4d51-11ee-a186-0242ac110002', '5a42808a-9610-4a2e-b207-fd34c8211baa', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Berne', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:39:58.865', 'Denis Rouzaud', '2023-09-07 09:39:58.865', 'Denis Rouzaud', false, NULL, false, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('e16ac422-4c86-11ee-86b3-0242ac110002', 'da131ba0-42ed-4a60-a13d-ac35cea9edc5', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-09-06 09:28:28.812', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('e16da8f4-4c86-11ee-86b3-0242ac110002', '055369c1-e422-4851-aa90-690e4a526335', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-09-06 09:28:34.368', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('feb33b9c-0ffd-11ee-9ceb-0242ac110002', '348fc524-cc99-41c4-8780-2f7e4d2ff919', 1, false, 15, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-06-21 08:36:32.694', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('ffac3240-4808-11ee-967c-0242ac110002', 'a899745b-f562-47ca-9175-ef2e19ac18de', 1, false, 11, '2.59.3', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:16:23.516', 'Denis Rouzaud', '2023-08-31 16:38:07.493', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002010101', '00000000-0000-0000-ffff-000000020101', 1, false, 11, '1.01', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.374179', NULL, '2023-02-22 08:31:38.374179', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020101', '00000000-0000-0000-ffff-000000020201', 1, false, 11, '4.52', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.375723', NULL, '2023-02-22 08:31:38.375723', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020201', '00000000-0000-0000-ffff-000000020202', 1, false, 11, '1.03', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.381531', NULL, '2023-02-22 08:31:38.381531', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020202', '00000000-0000-0000-ffff-000000020202', 2, false, 11, '1.14', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.383483', NULL, '2023-02-22 08:31:38.383483', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020203', '00000000-0000-0000-ffff-000000020202', 3, false, 11, '1.14', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.385582', NULL, '2023-02-22 08:31:38.385582', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020301', '00000000-0000-0000-ffff-000000020203', 1, false, 11, '1.25a', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.387403', NULL, '2023-02-22 08:31:38.387403', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020401', '00000000-0000-0000-ffff-000000020204', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.389932', NULL, '2023-02-22 08:31:38.389932', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020201', '00000000-0000-0000-ffff-000000020202', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.392028', NULL, '2023-02-22 08:31:38.392028', NULL, false, NULL, true, 'VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020202', '00000000-0000-0000-ffff-000000020202', 2, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.398225', NULL, '2023-02-22 08:31:38.398225', NULL, false, NULL, true, 'VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020203', '00000000-0000-0000-ffff-000000020203', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.400285', NULL, '2023-02-22 08:31:38.400285', NULL, false, NULL, true, 'VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('0c1c7b4e-4c86-11ee-b83f-0242ac110002', '0cac19f6-db18-4354-9901-1bbc53a41e01', 1, false, 11, '4.46.1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Gare', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:21:20.73', 'Denis Rouzaud', '2023-09-07 09:23:46.313', 'Denis Rouzaud', false, NULL, false, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('19d4da92-0927-11eb-b4e5-0242ac110002', '19d4cf98-0927-11eb-b4e5-0242ac110002', 3, false, 11, '2.59.5', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, NULL, 2, NULL, '2020-10-08', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.423203', NULL, '2023-02-22 08:31:38.423203', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('34e71990-4d52-11ee-b7d3-0242ac110002', '68cb0b0b-2082-49cc-bf6d-b106c861dada', 1, false, 11, '2.59.1-NP', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:42:47.934', 'Denis Rouzaud', '2023-09-07 09:42:47.934', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('3a04c71e-4c86-11ee-a7f4-0242ac110002', '0e2decbd-06fa-459e-80af-a13a54e67e52', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-11-14 05:57:39.572', 'Rouzaud Denis', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('440440ae-7e32-11ee-bbd5-0242ac110002', 'a088c423-b088-4306-8b7f-a3b1151682ec', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-11-08 13:28:04.958', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('4406af6a-7e32-11ee-bbd5-0242ac110002', 'fdc08784-e5a6-4b0a-a299-2cc3e67a0079', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-11-08 13:28:04.979', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('4d82377c-4c86-11ee-a7f4-0242ac110002', '1d945e23-3ba7-4a34-b3df-c9ac17b9827e', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-11-14 05:57:47.721', 'Rouzaud Denis', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('54e7a8a2-bf50-11ee-a144-0242ac110002', 'de543457-a30a-4a5c-b470-6cffb7df792c', 1, false, 13, NULL, NULL, 11, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:35.661', 'Rouzaud Denis', '2024-01-30 10:16:35.662', 'Rouzaud Denis', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('642e4438-089c-11eb-b19a-0242ac110002', '642de2ea-089c-11eb-b19a-0242ac110002', 1, false, 11, '1.05', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 2, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, 3, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.509558', NULL, '2023-02-22 08:31:38.509558', NULL, false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('7358585e-b290-11ed-839a-0242ac110002', 'bc6eb427-308e-4ff2-a94a-c1a2be2fc5af', 1, false, 14, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Rue des cygneaux', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 10:07:35.455', 'Denis Rouzaud', '2023-02-22 10:07:35.455', 'Denis Rouzaud', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('7a8a60ae-bf50-11ee-9efd-0242ac110002', '79bf0ed6-b98e-4aab-af05-885612053033', 1, false, 13, NULL, NULL, 12, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, true, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:35.661', 'Rouzaud Denis', '2024-01-30 10:18:28.622', 'Rouzaud Denis', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('815f840e-4809-11ee-b1dc-0242ac110002', '75f4bf9f-5f5e-4362-a4ce-fb29bb8c0123', 1, false, 11, '2.32', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:19:54.172', 'Denis Rouzaud', '2023-08-31 16:20:35.183', 'Denis Rouzaud', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('8caeb2f2-ca4b-11ee-9e6e-0242ac110002', 'b703bf1e-7260-453c-8838-06d94880422d', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:40:14.608', 'Rouzaud Denis', '2024-02-13 09:40:50.916', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('8ed40678-7e32-11ee-9c43-0242ac110002', 'c167ced0-efb2-4874-9816-1707f3b6ffec', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-11-08 13:29:18.774', 'Rouzaud Denis', '2023-11-08 13:29:18.774', 'Rouzaud Denis', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('9e8acdb6-4d51-11ee-b653-0242ac110002', '3c7fe8c4-d4bf-481c-9bb6-cfbe89c5c103', 1, false, 11, '4.33-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Gare', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:37:43.359', 'Denis Rouzaud', '2023-09-07 09:42:22.182', 'Denis Rouzaud', false, NULL, true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a49cc906-0926-11eb-b4e5-0242ac110002', 'a49c33b0-0926-11eb-b4e5-0242ac110002', 2, false, 11, '2.04', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 10, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, 1, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.639681', NULL, '2023-02-22 08:31:38.639681', NULL, false, NULL, true, 'VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a7e54358-47db-11ee-9048-0242ac110002', '00000000-0000-ffff-0000-0000000000a1', 1, false, 11, '2.02', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-06-21 08:36:32.694', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a7e57314-47db-11ee-9048-0242ac110002', '00000000-0000-ffff-0000-0000000000a2', 1, false, 11, '2.34', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-09-06 09:16:27.792', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('c4dc6ec0-ca4c-11ee-a556-0242ac110002', '5e197b05-07db-4143-9c1c-2f7ffab1b378', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:40:14.608', 'Rouzaud Denis', '2024-02-13 09:49:40.714', 'Rouzaud Denis', false, NULL, false, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('cc39549e-4d51-11ee-a186-0242ac110002', '5a42808a-9610-4a2e-b207-fd34c8211baa', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Berne', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:39:58.865', 'Denis Rouzaud', '2023-09-07 09:39:58.865', 'Denis Rouzaud', false, NULL, false, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('e16ac422-4c86-11ee-86b3-0242ac110002', 'da131ba0-42ed-4a60-a13d-ac35cea9edc5', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-09-06 09:28:28.812', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('e16da8f4-4c86-11ee-86b3-0242ac110002', '055369c1-e422-4851-aa90-690e4a526335', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-09-06 09:28:34.368', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('feb33b9c-0ffd-11ee-9ceb-0242ac110002', '348fc524-cc99-41c4-8780-2f7e4d2ff919', 1, false, 15, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-06-21 08:36:32.694', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); +INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('ffac3240-4808-11ee-967c-0242ac110002', 'a899745b-f562-47ca-9175-ef2e19ac18de', 1, false, 11, '2.59.3', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:16:23.516', 'Denis Rouzaud', '2023-08-31 16:38:07.493', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); diff --git a/datamodel/demo_data/support_content.sql b/datamodel/demo_data/support_content.sql index 87f4259b..961f1df0 100644 --- a/datamodel/demo_data/support_content.sql +++ b/datamodel/demo_data/support_content.sql @@ -1,15 +1,15 @@ -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('00000000-0000-0000-0000-000000000002', NULL, 3, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '010100002008080000D7A370BDE85D434185EB513800963141', NULL, NULL, NULL, '2023-02-22 08:31:37.390486', NULL, '2023-02-22 08:31:37.390486', NULL, false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('00000000-0000-0000-0000-0000000000a1', NULL, 17, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800000B5CF94FA75C43411230DACDD6953141', NULL, NULL, NULL, NULL, 'Denis Rouzaud', '2023-09-07 09:43:52.317', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('20f47695-aefa-43b1-854f-a770fa0f79e0', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000D9A8A420D05B4341BC03DE38B6953141', NULL, NULL, NULL, '2024-02-13 09:39:08.691', 'Rouzaud Denis', '2024-02-13 09:49:16.356', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('2e988298-0897-11eb-8771-0242ac110002', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000C5E07FA4E65B43412E137A1C3E973141', NULL, NULL, NULL, '2023-02-22 08:31:37.401948', NULL, '2023-02-22 08:31:37.401948', NULL, false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('3dbc19a5-b7bf-4acd-94d0-ba4b0b17ddc0', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000695437F02D5C43411DC707E6DE953141', NULL, NULL, NULL, '2024-01-30 10:16:13.613', 'Rouzaud Denis', '2024-01-30 10:54:03.024', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('4478bbcc-0236-46ee-b284-4c586e6af8a9', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000252FE84F125C43415140D9C4CA953141', NULL, NULL, NULL, '2023-06-21 08:36:14.555', 'Denis Rouzaud', '2023-09-07 09:45:41.314', 'Denis Rouzaud', false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('70104932-54ff-4668-90b0-6946352d5544', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000D787DBE9695C434106D2DA8FF1953141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-09-07 09:17:22.807', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('814da66a-0894-11eb-99f5-0242ac110002', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '01010000200808000000000000CA5D4341CDCCCCCC4D963141', NULL, NULL, NULL, '2023-02-22 08:31:37.40358', NULL, '2023-02-22 08:31:37.40358', NULL, false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('82f3002b-ebdf-4621-9a19-951639fc18bd', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01010000200808000065EF178C215C4341FEE7169213963141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-09-07 09:18:20.141', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('94ff73df-fc80-4319-b2b9-7aa06ca4f806', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800006E4ACFC2155C4341C63A7B2BEB953141', NULL, NULL, NULL, '2024-01-30 10:16:13.613', 'Rouzaud Denis', '2024-01-30 10:53:57.824', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('a3921fbd-8a89-4d82-b3b8-7a24a16f4df4', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004CFA6D0A0F5C4341DBDFED42AE953141', NULL, NULL, NULL, '2023-09-07 09:36:39.163', 'Denis Rouzaud', '2023-09-07 09:36:39.164', 'Denis Rouzaud', false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('bbdb5d1e-4973-4900-8838-889357a60e65', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01010000200808000085E0E8F7D25B43413587DEC00D963141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-11-08 13:28:41.075', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('c13a9809-b862-4237-a67f-bb34897d90b5', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004A2D01EBD05B43416811D66B9B953141', NULL, NULL, NULL, '2024-02-13 09:39:08.691', 'Rouzaud Denis', '2024-02-13 09:39:08.691', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('f17d39cc-bac3-4134-9b9c-ea14e228d4b4', NULL, 17, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004D41C2489A5C4341AB33A3FADD953141', NULL, NULL, NULL, '2023-08-31 16:15:34.605', 'Denis Rouzaud', '2023-09-07 09:43:49.619', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('f5054922-95a7-4f12-8374-0a57e105327c', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800009B2406BA925C434100FF7F0FA4953141', NULL, NULL, NULL, '2023-02-22 10:06:43.92', 'Denis Rouzaud', '2023-09-07 09:35:26.796', 'Denis Rouzaud', false, false, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('00000000-0000-0000-0000-000000000002', NULL, 3, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '010100002008080000D7A370BDE85D434185EB513800963141', NULL, NULL, NULL, '2023-02-22 08:31:37.390486', NULL, '2023-02-22 08:31:37.390486', NULL, false, false, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('00000000-0000-0000-0000-0000000000a1', NULL, 17, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800000B5CF94FA75C43411230DACDD6953141', NULL, NULL, NULL, NULL, 'Denis Rouzaud', '2023-09-07 09:43:52.317', 'Denis Rouzaud', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('20f47695-aefa-43b1-854f-a770fa0f79e0', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000D9A8A420D05B4341BC03DE38B6953141', NULL, NULL, NULL, '2024-02-13 09:39:08.691', 'Rouzaud Denis', '2024-02-13 09:49:16.356', 'Rouzaud Denis', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('2e988298-0897-11eb-8771-0242ac110002', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000C5E07FA4E65B43412E137A1C3E973141', NULL, NULL, NULL, '2023-02-22 08:31:37.401948', NULL, '2023-02-22 08:31:37.401948', NULL, false, false, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('3dbc19a5-b7bf-4acd-94d0-ba4b0b17ddc0', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000695437F02D5C43411DC707E6DE953141', NULL, NULL, NULL, '2024-01-30 10:16:13.613', 'Rouzaud Denis', '2024-01-30 10:54:03.024', 'Rouzaud Denis', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('4478bbcc-0236-46ee-b284-4c586e6af8a9', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000252FE84F125C43415140D9C4CA953141', NULL, NULL, NULL, '2023-06-21 08:36:14.555', 'Denis Rouzaud', '2023-09-07 09:45:41.314', 'Denis Rouzaud', false, false, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('70104932-54ff-4668-90b0-6946352d5544', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000D787DBE9695C434106D2DA8FF1953141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-09-07 09:17:22.807', 'Denis Rouzaud', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('814da66a-0894-11eb-99f5-0242ac110002', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '01010000200808000000000000CA5D4341CDCCCCCC4D963141', NULL, NULL, NULL, '2023-02-22 08:31:37.40358', NULL, '2023-02-22 08:31:37.40358', NULL, false, false, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('82f3002b-ebdf-4621-9a19-951639fc18bd', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01010000200808000065EF178C215C4341FEE7169213963141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-09-07 09:18:20.141', 'Denis Rouzaud', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('94ff73df-fc80-4319-b2b9-7aa06ca4f806', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800006E4ACFC2155C4341C63A7B2BEB953141', NULL, NULL, NULL, '2024-01-30 10:16:13.613', 'Rouzaud Denis', '2024-01-30 10:53:57.824', 'Rouzaud Denis', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('a3921fbd-8a89-4d82-b3b8-7a24a16f4df4', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004CFA6D0A0F5C4341DBDFED42AE953141', NULL, NULL, NULL, '2023-09-07 09:36:39.163', 'Denis Rouzaud', '2023-09-07 09:36:39.164', 'Denis Rouzaud', false, false, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('bbdb5d1e-4973-4900-8838-889357a60e65', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01010000200808000085E0E8F7D25B43413587DEC00D963141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-11-08 13:28:41.075', 'Rouzaud Denis', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('c13a9809-b862-4237-a67f-bb34897d90b5', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004A2D01EBD05B43416811D66B9B953141', NULL, NULL, NULL, '2024-02-13 09:39:08.691', 'Rouzaud Denis', '2024-02-13 09:39:08.691', 'Rouzaud Denis', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('f17d39cc-bac3-4134-9b9c-ea14e228d4b4', NULL, 17, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004D41C2489A5C4341AB33A3FADD953141', NULL, NULL, NULL, '2023-08-31 16:15:34.605', 'Denis Rouzaud', '2023-09-07 09:43:49.619', 'Denis Rouzaud', false, true, NULL); +INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _creation_date, _creation_user, _last_modification_date, _last_modification_user, needs_validation, group_by_anchor, picture_2) VALUES ('f5054922-95a7-4f12-8374-0a57e105327c', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800009B2406BA925C434100FF7F0FA4953141', NULL, NULL, NULL, '2023-02-22 10:06:43.92', 'Denis Rouzaud', '2023-09-07 09:35:26.796', 'Denis Rouzaud', false, false, NULL); diff --git a/datamodel/setup.sh b/datamodel/setup.sh index de6ddfb8..8d6dfb38 100755 --- a/datamodel/setup.sh +++ b/datamodel/setup.sh @@ -81,6 +81,7 @@ psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -v SRID=${SRID} -f ${DIR}/changel psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -v SRID=${SRID} -f ${DIR}/changelogs/0100/0100_09_exceptes.sql psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -v SRID=${SRID} -f ${DIR}/changelogs/0100/0100_10_dms.sql psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -v SRID=${SRID} -f ${DIR}/changelogs/0101/0101_01_balises.sql +psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -v SRID=${SRID} -f ${DIR}/changelogs/0102/0101_02_control.sql if [[ $demo_data == True ]]; then echo "*** inserting demo_data" diff --git a/project/edited_virtual_layer.txt b/project/edited_virtual_layer.txt deleted file mode 100644 index d20a52ca..00000000 --- a/project/edited_virtual_layer.txt +++ /dev/null @@ -1,15 +0,0 @@ -select id as fk_support from Support where _edited is true -union -select fk_support from Azimut where id = ( - select distinct( - select id from Azimut where _edited is true - union - select fk_azimut from Cadre where id = ( - select ( - select fk_frame as frame_id from Signal where _edited is true - union - select id as frame_id from Cadre where _edited is true - ) - ) - ) -) diff --git a/project/signalo.qgs b/project/signalo.qgs index 9c7cfd68..c6574d79 100644 --- a/project/signalo.qgs +++ b/project/signalo.qgs @@ -1,5 +1,5 @@ - + Signalo - Demo @@ -17,161 +17,161 @@ false - + - + - + - + - + - + - + - + + + + + - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -182,51 +182,51 @@ vw_sign_symbol_a4db15ac_b65f_46c3_b5d8_bcf3dbf10405 OSM_ch_Swiss_Style_6887daaa_c829_4e55_b811_94db1c26b997 Landeskarten__farbig__a4d140cf_7103_4db6_a9bc_52ef09d7ea6b - vw_edited_support_9e44c97f_e06b_4184_b445_881318a02e8b SWISSIMAGE_Fond_de_plan_7d61cf38_35d1_4208_a775_1d854d304e6f vw_azimut_edit_b7acca0e_e618_4f1d_8de3_08e2eb5bf359 + vw_validation_74e4eac7_fc6b_4d7d_8b39_ab67b5148aab - + - - - - + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + meters - 2537689.82154066395014524 - 1152393.86711588711477816 - 2537913.27969263773411512 - 1152558.24046827922575176 + 2537192.9163381545804441 + 1152015.91638508578762412 + 2538184.55056591471657157 + 1152745.35158770252019167 0 @@ -247,152 +247,152 @@ - + - + - + - + - + - - + + + + + - - - - - + + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + Annotations_12d93f67_97ee_4956_a1a1_ce69a09e6c74 @@ -453,7 +453,7 @@ - + 2419995.7488073636777699 1027366.07117159117478877 @@ -513,7 +513,7 @@ wms - + @@ -525,97 +525,97 @@ 0 0 - + - + - + - - - + - - - + - + None @@ -660,14 +660,14 @@ 2 - - + + resamplingFilter 0 - + -20037508.34278924390673637 -20037508.34278924763202667 @@ -728,7 +728,7 @@ wms - + @@ -740,97 +740,97 @@ 0 0 - + - + - + - - - + - - - + - + None @@ -875,14 +875,14 @@ 2 - - + + resamplingFilter 0 - + 2419995.7488073636777699 1027366.07117159117478877 @@ -942,7 +942,7 @@ wms - + @@ -954,97 +954,97 @@ 0 0 - + - + - + - - - + - - - + - + None @@ -1089,16 +1089,16 @@ 2 - - + + resamplingFilter 0 - + azimut_f5e94397_ee15_4ae1_95b8_af8a412676b3 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."azimut" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."azimut" @@ -1150,7 +1150,7 @@ - + @@ -1175,138 +1175,138 @@ 1 0 - + - + - + - - - + - - - + - - - @@ -1344,202 +1345,215 @@ - - + + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1548,88 +1562,93 @@ - - - - - + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + @@ -1662,90 +1681,127 @@ def my_form_open(dialog, layer, feature): 0 tablayout - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - + + + - - - + + + - - - + + + - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + @@ -1755,31 +1811,35 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - + + + + @@ -1792,23 +1852,23 @@ def my_form_open(dialog, layer, feature): - - COALESCE( "azimut", '<NULL>' ) - + coating_7ea56753_207f_4981_84ef_635958fc4808 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_coating" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_coating" @@ -1823,7 +1883,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -1847,7 +1907,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -1868,138 +1928,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -2029,42 +2089,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -2089,34 +2149,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + @@ -2139,9 +2199,9 @@ def my_form_open(dialog, layer, feature): - + dms_document_fda9c16e_95ed_4277_85dd_30a1dc7c52c2 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."dms_document" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."dms_document" @@ -2193,7 +2253,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2218,138 +2278,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - @@ -2383,65 +2444,65 @@ def my_form_open(dialog, layer, feature): - + - + - + - - + - - - - + + + + @@ -2450,28 +2511,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - - - - + + + + - + - + dms_rel_document_62c2a0d8_3860_428b_a495_9c8a8a8fcc7b - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."dms_rel_document" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."dms_rel_document" @@ -2630,7 +2691,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2655,138 +2716,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -2816,36 +2877,36 @@ def my_form_open(dialog, layer, feature): - - + + - + - + - + - + - - - - + + + + @@ -2866,28 +2927,28 @@ def my_form_open(dialog, layer, feature): - - - - + + + + - - - - + + + + - - - - + + + + - + - + durability_a4cef524_85b2_4913_84a1_926afcce6000 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_durability" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_durability" @@ -2964,7 +3025,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -2988,7 +3049,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -3009,138 +3070,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -3170,42 +3231,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -3230,34 +3291,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + @@ -3280,9 +3341,9 @@ def my_form_open(dialog, layer, feature): - + frame_b99392c7_2b01_4b3a_bde4_f003e2b838e4 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."frame" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."frame" @@ -3334,7 +3395,7 @@ def my_form_open(dialog, layer, feature): - + @@ -3359,138 +3420,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - @@ -3532,324 +3593,335 @@ def my_form_open(dialog, layer, feature): - - + + - + - + - + - + - + - + - + - + - + - + - - + - + - + - + - + - - - - - - - - + - + - + - + - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + @@ -3867,87 +3939,91 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + @@ -4002,92 +4079,93 @@ def my_form_open(dialog, layer, feature): 0 tablayout - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - + + - - - - + + + @@ -4099,6 +4177,7 @@ def my_form_open(dialog, layer, feature): + @@ -4106,34 +4185,37 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + @@ -4145,6 +4227,7 @@ def my_form_open(dialog, layer, feature): + @@ -4155,23 +4238,23 @@ def my_form_open(dialog, layer, feature): - - COALESCE( "rank", '<NULL>' ) - + frame_fixing_type_63843528_0c72_40f3_957a_7147d1820e7c - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_frame_fixing_type" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_frame_fixing_type" @@ -4186,7 +4269,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -4210,7 +4293,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -4231,138 +4314,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -4392,42 +4475,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -4452,34 +4535,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + @@ -4502,9 +4585,9 @@ def my_form_open(dialog, layer, feature): - + frame_type_497d77ea_a95f_41cd_8c09_df811ac9635d - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_frame_type" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_frame_type" @@ -4519,7 +4602,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -4543,7 +4626,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -4564,138 +4647,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -4725,42 +4808,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -4785,34 +4868,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + @@ -4835,9 +4918,9 @@ def my_form_open(dialog, layer, feature): - + lighting_c690da23_6bac_4bb9_ae77_84d1c461a41c - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_lighting" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_lighting" @@ -4852,7 +4935,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -4876,7 +4959,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -4897,138 +4980,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -5058,42 +5141,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -5118,34 +5201,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + marker_type_92d19509_ce38_40d9_bac4_eecb4dff3273 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_marker_type" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_marker_type" @@ -5229,7 +5312,7 @@ def my_form_open(dialog, layer, feature): - + @@ -5254,138 +5337,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -5417,186 +5500,186 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -5661,94 +5744,94 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + mirror_shape_96db4de4_ebf8_43e1_8365_5c16d28719bc - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_mirror_shape" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_mirror_shape" @@ -5870,7 +5953,7 @@ def my_form_open(dialog, layer, feature): - + @@ -5895,138 +5978,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - @@ -6060,51 +6143,51 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -6129,34 +6212,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + official_sign_02419ef5_80b5_48e3_869b_58a12167b0ae - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_official_sign" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_official_sign" @@ -6241,7 +6324,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -6274,11 +6357,11 @@ def my_form_open(dialog, layer, feature): - true + false - + @@ -6303,138 +6386,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - @@ -6468,191 +6551,191 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6717,94 +6800,94 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + owner_4e532508_fa34_406c_8846_8f8306ca74ee - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_owner" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_owner" @@ -6969,7 +7052,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -7002,11 +7085,11 @@ def my_form_open(dialog, layer, feature): - true + false - + @@ -7031,138 +7114,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -7193,109 +7276,97 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - + + - + - - + + - + - - + + - + - - + + - + - - - - - - - - - - + + + + + + + + + + @@ -7310,54 +7381,54 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + provider_4ab3ab90_0529_498a_8d27_4debfbbe453a - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_provider" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_provider" @@ -7487,7 +7558,7 @@ def my_form_open(dialog, layer, feature): - + @@ -7512,138 +7583,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -7674,106 +7745,94 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - + + - + - - + + - + - - + + - + - - + + - + - - - - - - - - - - + + + + + + + + + + @@ -7788,54 +7847,54 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + sign_2499f9bd_24a2_4384_b329_dc522a94c545 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."sign" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."sign" @@ -7965,7 +8024,7 @@ def my_form_open(dialog, layer, feature): - + @@ -7976,9 +8035,9 @@ def my_form_open(dialog, layer, feature): postgres - - - + + + @@ -7994,138 +8053,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - @@ -8158,1095 +8217,1105 @@ def my_form_open(dialog, layer, feature): - - + + - - + + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - + - + - + - + - + - + - + - + - + - + - - + + - - + + - - + + + + + + + + - - + + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -9402,14 +9472,15 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + + @@ -9487,358 +9558,361 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -9986,206 +10061,207 @@ def my_form_open(dialog, layer, feature): 0 tablayout - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + + + - - - - + + + @@ -10243,6 +10319,7 @@ def my_form_open(dialog, layer, feature): + @@ -10323,153 +10400,156 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + @@ -10525,6 +10605,7 @@ def my_form_open(dialog, layer, feature): + @@ -10609,9 +10690,9 @@ def my_form_open(dialog, layer, feature): "id" - + sign_type_922b284e_5fef_4464_826e_755cf776cac5 - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_sign_type" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_sign_type" @@ -10626,7 +10707,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -10650,7 +10731,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -10671,138 +10752,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -10833,42 +10914,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -10893,34 +10974,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + status_5f245030_6519_4c89_8eb9_987e8fac9a4d - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_status" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_status" @@ -10968,7 +11049,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -10992,7 +11073,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -11013,138 +11094,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -11174,42 +11255,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -11234,34 +11315,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + @@ -11284,9 +11365,9 @@ def my_form_open(dialog, layer, feature): - + support_347aa750_1661_498f_a7e8_017adc616ba0 - service='pg_signalo' sslmode=disable key='id' srid=2056 type=Point checkPrimaryKeyUnicity='1' table="signalo_db"."support" (geometry) + service='pg_signalo' key='id' srid=2056 type=Point checkPrimaryKeyUnicity='1' table="signalo_db"."support" (geometry) @@ -11338,7 +11419,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11352,8 +11433,8 @@ def my_form_open(dialog, layer, feature): - - + + @@ -11366,181 +11447,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - - + + + + + + + + + + + + + - @@ -11576,53 +11698,53 @@ def my_form_open(dialog, layer, feature): 0 1 - - - + + + - + - + @@ -11630,12 +11752,12 @@ def my_form_open(dialog, layer, feature): - + @@ -11646,382 +11768,395 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - + - + - + - + - + - + - - + + + + + + + + + + - + - - + + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -12041,108 +12176,115 @@ def my_form_open(dialog, layer, feature): - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + - + @@ -12202,131 +12345,162 @@ def my_form_open(dialog, layer, feature): 0 tablayout - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + @@ -12345,6 +12519,7 @@ def my_form_open(dialog, layer, feature): + @@ -12354,43 +12529,46 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + @@ -12407,6 +12585,7 @@ def my_form_open(dialog, layer, feature): + @@ -12419,17 +12598,17 @@ def my_form_open(dialog, layer, feature): - "id" - + support_base_type_fe9c67db_d588_4092_adef_496e922cfa4c - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_support_base_type" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_support_base_type" @@ -12444,7 +12623,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -12468,7 +12647,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -12489,138 +12668,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -12650,42 +12829,42 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -12710,34 +12889,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + @@ -12760,9 +12939,9 @@ def my_form_open(dialog, layer, feature): - + support_type_d8e8fb77_0ce7_4d23_bb9e_c12c12d412bf - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_support_type" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_support_type" @@ -12777,7 +12956,7 @@ def my_form_open(dialog, layer, feature): - true + false @@ -12810,11 +12989,11 @@ def my_form_open(dialog, layer, feature): - true + false - + @@ -12839,138 +13018,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - @@ -13002,45 +13181,45 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - - - - - - + + + + + + @@ -13065,34 +13244,34 @@ def my_form_open(dialog, layer, feature): - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + vl_user_sign_c625b1d7_23e8_4c2b_a4d4_e027a23ebe9b - service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_user_sign" + service='pg_signalo' key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_user_sign" @@ -13210,7 +13389,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13235,138 +13414,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - @@ -13400,189 +13579,189 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -13647,94 +13826,94 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + vw_azimut_edit_b7acca0e_e618_4f1d_8de3_08e2eb5bf359 - service='pg_signalo' sslmode=disable key='id' srid=2056 type=LineString checkPrimaryKeyUnicity='1' table="signalo_app"."vw_azimut_edit" (geometry) + service='pg_signalo' key='id' srid=2056 type=LineString checkPrimaryKeyUnicity='1' table="signalo_app"."vw_azimut_edit" (geometry) @@ -13936,7 +14115,7 @@ def my_form_open(dialog, layer, feature): - + @@ -13948,7 +14127,9 @@ def my_form_open(dialog, layer, feature): postgres - + + + @@ -13956,216 +14137,216 @@ def my_form_open(dialog, layer, feature): - 1 + 0 1 1 0 - + - + - + - - - + - - - + - - - + - + - - + + + + + + + + + + + + + @@ -14200,53 +14430,53 @@ def my_form_open(dialog, layer, feature): 0 1 - - - + + + - + - + @@ -14254,12 +14484,12 @@ def my_form_open(dialog, layer, feature): - + @@ -14270,40 +14500,94 @@ def my_form_open(dialog, layer, feature): - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14336,26 +14620,35 @@ def my_form_open(dialog, layer, feature): 1 generatedlayout + + + - + + + + + + + "id" - - vw_edited_support_9e44c97f_e06b_4184_b445_881318a02e8b - service='pg_signalo' sslmode=disable key='id' srid=2056 type=Point checkPrimaryKeyUnicity='0' table="signalo_app"."vw_edited_support" (geometry) + + vw_sign_symbol_a4db15ac_b65f_46c3_b5d8_bcf3dbf10405 + service='pg_signalo' key='pk' srid=2056 type=Point checkPrimaryKeyUnicity='1' table="signalo_app"."vw_sign_symbol" (support_geometry) - Support édités + Vue signal (symbologie) PROJCRS["CH1903+ / LV95",BASEGEOGCRS["CH1903+",DATUM["CH1903+",ELLIPSOID["Bessel 1841",6377397.155,299.1528128,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4150]],CONVERSION["Swiss Oblique Mercator 1995",METHOD["Hotine Oblique Mercator (variant B)",ID["EPSG",9815]],PARAMETER["Latitude of projection centre",46.9524055555556,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8811]],PARAMETER["Longitude of projection centre",7.43958333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8812]],PARAMETER["Azimuth of initial line",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8813]],PARAMETER["Angle from Rectified to Skew Grid",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8814]],PARAMETER["Scale factor on initial line",1,SCALEUNIT["unity",1],ID["EPSG",8815]],PARAMETER["Easting at projection centre",2600000,LENGTHUNIT["metre",1],ID["EPSG",8816]],PARAMETER["Northing at projection centre",1200000,LENGTHUNIT["metre",1],ID["EPSG",8817]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1]],USAGE[SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],AREA["Liechtenstein; Switzerland."],BBOX[45.82,5.96,47.81,10.49]],ID["EPSG",2056]] @@ -14376,6 +14669,15 @@ def my_form_open(dialog, layer, feature): dataset + + + + + + + + + @@ -14393,12 +14695,47 @@ def my_form_open(dialog, layer, feature): false - + + + + + + + + + postgres - + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + @@ -14406,2259 +14743,1787 @@ def my_form_open(dialog, layer, feature): - 1 + 0 1 1 0 - + - + - + - - - + - - - + - - - - - - + + + - + - - + + + + + + + + + + + + + + + + + + + - + + + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 0 1 + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + + - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - 0 - generatedlayout - - - - - - "id" - - - - - 2537376.25502501102164388 - 1152411.42123516835272312 - 2538449.47999999998137355 - 1152830.11123771546408534 - - - 6.6224867978221571 - 46.52006455084227809 - 6.63652866359770055 - 46.52393046604050397 - - vw_sign_symbol_a4db15ac_b65f_46c3_b5d8_bcf3dbf10405 - service='pg_signalo' sslmode=disable key='pk' srid=2056 type=Point checkPrimaryKeyUnicity='1' table="signalo_app"."vw_sign_symbol" (support_geometry) - - - - Vue signal (symbologie) - - - PROJCRS["CH1903+ / LV95",BASEGEOGCRS["CH1903+",DATUM["CH1903+",ELLIPSOID["Bessel 1841",6377397.155,299.1528128,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4150]],CONVERSION["Swiss Oblique Mercator 1995",METHOD["Hotine Oblique Mercator (variant B)",ID["EPSG",9815]],PARAMETER["Latitude of projection centre",46.9524055555556,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8811]],PARAMETER["Longitude of projection centre",7.43958333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8812]],PARAMETER["Azimuth of initial line",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8813]],PARAMETER["Angle from Rectified to Skew Grid",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8814]],PARAMETER["Scale factor on initial line",1,SCALEUNIT["unity",1],ID["EPSG",8815]],PARAMETER["Easting at projection centre",2600000,LENGTHUNIT["metre",1],ID["EPSG",8816]],PARAMETER["Northing at projection centre",1200000,LENGTHUNIT["metre",1],ID["EPSG",8817]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1]],USAGE[SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],AREA["Liechtenstein; Switzerland."],BBOX[45.82,5.96,47.81,10.49]],ID["EPSG",2056]] - +proj=somerc +lat_0=46.9524055555556 +lon_0=7.43958333333333 +k_0=1 +x_0=2600000 +y_0=1200000 +ellps=bessel +towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs - 47 - 2056 - EPSG:2056 - CH1903+ / LV95 - somerc - EPSG:7004 - false - - - - - - - dataset - - - - - - - - - - - - - - - - - - PROJCRS["CH1903+ / LV95",BASEGEOGCRS["CH1903+",DATUM["CH1903+",ELLIPSOID["Bessel 1841",6377397.155,299.1528128,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4150]],CONVERSION["Swiss Oblique Mercator 1995",METHOD["Hotine Oblique Mercator (variant B)",ID["EPSG",9815]],PARAMETER["Latitude of projection centre",46.9524055555556,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8811]],PARAMETER["Longitude of projection centre",7.43958333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8812]],PARAMETER["Azimuth of initial line",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8813]],PARAMETER["Angle from Rectified to Skew Grid",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8814]],PARAMETER["Scale factor on initial line",1,SCALEUNIT["unity",1],ID["EPSG",8815]],PARAMETER["Easting at projection centre",2600000,LENGTHUNIT["metre",1],ID["EPSG",8816]],PARAMETER["Northing at projection centre",1200000,LENGTHUNIT["metre",1],ID["EPSG",8817]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1]],USAGE[SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],AREA["Liechtenstein; Switzerland."],BBOX[45.82,5.96,47.81,10.49]],ID["EPSG",2056]] - +proj=somerc +lat_0=46.9524055555556 +lon_0=7.43958333333333 +k_0=1 +x_0=2600000 +y_0=1200000 +ellps=bessel +towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs - 47 - 2056 - EPSG:2056 - CH1903+ / LV95 - somerc - EPSG:7004 - false - - - - - - - - - - - - - postgres - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 1 - 1 - 0 - - - - - - - - - - - - - - + + + - - - - - - - - + + + + + + - - - - - - - - + + + + + + - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + @@ -16696,10 +16561,10 @@ def my_form_open(dialog, layer, feature): - - - - + + + + @@ -16751,328 +16616,312 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + vw_validation_74e4eac7_fc6b_4d7d_8b39_ab67b5148aab + service='pg_signalo' key='id' srid=2056 type=Point checkPrimaryKeyUnicity='1' table="signalo_app"."vw_validation" (geometry) + + + + Contrôles + + + PROJCRS["CH1903+ / LV95",BASEGEOGCRS["CH1903+",DATUM["CH1903+",ELLIPSOID["Bessel 1841",6377397.155,299.1528128,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4150]],CONVERSION["Swiss Oblique Mercator 1995",METHOD["Hotine Oblique Mercator (variant B)",ID["EPSG",9815]],PARAMETER["Latitude of projection centre",46.9524055555556,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8811]],PARAMETER["Longitude of projection centre",7.43958333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8812]],PARAMETER["Azimuth of initial line",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8813]],PARAMETER["Angle from Rectified to Skew Grid",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8814]],PARAMETER["Scale factor on initial line",1,SCALEUNIT["unity",1],ID["EPSG",8815]],PARAMETER["Easting at projection centre",2600000,LENGTHUNIT["metre",1],ID["EPSG",8816]],PARAMETER["Northing at projection centre",1200000,LENGTHUNIT["metre",1],ID["EPSG",8817]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1]],USAGE[SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],AREA["Liechtenstein; Switzerland."],BBOX[45.82,5.96,47.81,10.49]],ID["EPSG",2056]] + +proj=somerc +lat_0=46.9524055555556 +lon_0=7.43958333333333 +k_0=1 +x_0=2600000 +y_0=1200000 +ellps=bessel +towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs + 47 + 2056 + EPSG:2056 + CH1903+ / LV95 + somerc + EPSG:7004 + false + + + + + + + dataset + + + + + + + + + + + + + + + + + + PROJCRS["CH1903+ / LV95",BASEGEOGCRS["CH1903+",DATUM["CH1903+",ELLIPSOID["Bessel 1841",6377397.155,299.1528128,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4150]],CONVERSION["Swiss Oblique Mercator 1995",METHOD["Hotine Oblique Mercator (variant B)",ID["EPSG",9815]],PARAMETER["Latitude of projection centre",46.9524055555556,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8811]],PARAMETER["Longitude of projection centre",7.43958333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8812]],PARAMETER["Azimuth of initial line",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8813]],PARAMETER["Angle from Rectified to Skew Grid",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8814]],PARAMETER["Scale factor on initial line",1,SCALEUNIT["unity",1],ID["EPSG",8815]],PARAMETER["Easting at projection centre",2600000,LENGTHUNIT["metre",1],ID["EPSG",8816]],PARAMETER["Northing at projection centre",1200000,LENGTHUNIT["metre",1],ID["EPSG",8817]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1]],USAGE[SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],AREA["Liechtenstein; Switzerland."],BBOX[45.82,5.96,47.81,10.49]],ID["EPSG",2056]] + +proj=somerc +lat_0=46.9524055555556 +lon_0=7.43958333333333 +k_0=1 +x_0=2600000 +y_0=1200000 +ellps=bessel +towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs + 47 + 2056 + EPSG:2056 + CH1903+ / LV95 + somerc + EPSG:7004 + false + + + + + + + + + + + + + postgres + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + 0 + generatedlayout + + + + + + + + + + + + + + + + + + "id" + + - + @@ -18130,10 +18578,12 @@ END signalo_img_size signalo_inscr_length + signalo_validation 30 15 + mobile @@ -18214,9 +18664,9 @@ END @@ -18246,83 +18696,83 @@ END - - - + + + - + - + - + - + - - - + - - + - + - - - - + + + + - + - + - + @@ -18461,7 +18911,7 @@ END - + PROJCRS["CH1903+ / LV95",BASEGEOGCRS["CH1903+",DATUM["CH1903+",ELLIPSOID["Bessel 1841",6377397.155,299.1528128,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4150]],CONVERSION["Swiss Oblique Mercator 1995",METHOD["Hotine Oblique Mercator (variant B)",ID["EPSG",9815]],PARAMETER["Latitude of projection centre",46.9524055555556,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8811]],PARAMETER["Longitude of projection centre",7.43958333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8812]],PARAMETER["Azimuth of initial line",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8813]],PARAMETER["Angle from Rectified to Skew Grid",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8814]],PARAMETER["Scale factor on initial line",1,SCALEUNIT["unity",1],ID["EPSG",8815]],PARAMETER["Easting at projection centre",2600000,LENGTHUNIT["metre",1],ID["EPSG",8816]],PARAMETER["Northing at projection centre",1200000,LENGTHUNIT["metre",1],ID["EPSG",8817]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1]],USAGE[SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],AREA["Liechtenstein; Switzerland."],BBOX[45.82,5.96,47.81,10.49]],ID["EPSG",2056]] +proj=somerc +lat_0=46.9524055555556 +lon_0=7.43958333333333 +k_0=1 +x_0=2600000 +y_0=1200000 +ellps=bessel +towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs @@ -18475,40 +18925,40 @@ END - + - + - + @@ -18526,7 +18976,7 @@ END - + diff --git a/scripts/run-docker.sh b/scripts/run-docker.sh index b1fc3afb..9dcb698a 100755 --- a/scripts/run-docker.sh +++ b/scripts/run-docker.sh @@ -11,6 +11,7 @@ DEMO_DATA="" SIGNALO_PG_PORT=${SIGNALO_PG_PORT:-5432} ROLES="" + show_help() { echo "Usage: $(basename "$0") [OPTIONS]... [ARGUMENTS]..." echo @@ -46,7 +47,7 @@ while getopts 'bdrp:h' opt; do ROLES="-r" ;; ?|h) - echo "Usage: $(basename $0) [-bd] [-p PG_PORT]" + show_help exit 1 ;; esac diff --git a/website/documentation/assets/images/printscreen/validation/validation-action.png b/website/documentation/assets/images/printscreen/validation/validation-action.png new file mode 100644 index 00000000..ee603c1d Binary files /dev/null and b/website/documentation/assets/images/printscreen/validation/validation-action.png differ diff --git a/website/documentation/assets/images/printscreen/validation/validation-config.png b/website/documentation/assets/images/printscreen/validation/validation-config.png new file mode 100644 index 00000000..fe88e8d0 Binary files /dev/null and b/website/documentation/assets/images/printscreen/validation/validation-config.png differ diff --git a/website/documentation/assets/images/printscreen/validation/validation-layer.png b/website/documentation/assets/images/printscreen/validation/validation-layer.png new file mode 100644 index 00000000..b253b157 Binary files /dev/null and b/website/documentation/assets/images/printscreen/validation/validation-layer.png differ diff --git a/website/documentation/user-guide/validation.fr.md b/website/documentation/user-guide/validation.fr.md new file mode 100644 index 00000000..939beab5 --- /dev/null +++ b/website/documentation/user-guide/validation.fr.md @@ -0,0 +1,37 @@ +--- +title: Validation des changements +tx_slug: documentation_user-guide_validation +--- + +# Validation des changements + +## Principe + +Il est possible de mettre en place un système de validation pour les données saisies sur le terrain (QField) et/ou sur QGIS. +L'idée est que pour tout changement sur une des 4 tables principales (support, azimut, cadre, signal), le champ de validation sera défini comme vrai et signifie qu'un contrôle est nécessaire. +Une vue regroupe ensuite les informations par support et permet de passer en revue ceux à contrôler. + +Attention, les suppressions d'éléments ne sont pas pris en compte dans ce système de validation. + +## Configuration + +Dans la configuration du projet, il faut définir la variable `signalo_validation` avec la valeur: + +* `any`: la validation est requise pour toute modification +* `desktop`: la validation est requise pour les changements sur QGIS Desktop uniquement +* `mobile`: la validation est requise pour les changements sur QField uniquement + +![Validation](../assets/images/printscreen/validation/validation-config.png) + +## Validation des données + +La vue dénommée "Contrôles" dans le projet QGIS permet de passer en revue les supports nécessitant un contrôle, que ce soit au niveau du support, d'un azimut, d'un cadre ou d'un signal. + +![Validation](../assets/images/printscreen/validation/validation-layer.png) + +Pour marquer un support comme à contrôler, deux approches sont possibles: + +* soit éditer directement le champ "à contrôler" dans la vue +* soit faire un clic droit sur le support avec l'outil d'identification et sélectionner "Marquer comme contrôlé". + +![Validation](../assets/images/printscreen/validation/validation-action.png) diff --git a/website/mkdocs.yml b/website/mkdocs.yml index 6ff0434e..06b74832 100644 --- a/website/mkdocs.yml +++ b/website/mkdocs.yml @@ -73,6 +73,7 @@ nav: - user-guide/advanced/coherence.md - user-guide/advanced/export.md - Mobile: user-guide/mobile.md + - Validation: user-guide/validation.md - Mises à jour: user-guide/updates.md - Documentation BD: https://signalo.ch/model-documentation/ "target=_blank - Feuille de route: roadmap.md