- Añade GET /api/denuncias/{id}/gestiona-fields para exponer los campos diarios requeridos por la integración con Gestiona.
- Devuelve un DTO cerrado con fecha, canal, resumen, datos de hechos, protección, sexo y preferencias de notificación.
- Adapta el login contra GlobalLeaks al nuevo flujo DPoP exigido desde la versión 5.0.94.
- Genera proof DPoP con clave EC P-256 efímera y lo envía en la cabecera DPoP junto a X-Token.
- Mejora el mensaje de error cuando GlobalLeaks rechaza el proof DPoP.
12272 lines
568 KiB
SQL
12272 lines
568 KiB
SQL
-- ============================================================
|
|
-- Carga de excepciones expediente Gestiona
|
|
-- Fuente: CD-expdte Gestiona 20260414.xlsx
|
|
-- Generado para mapear denuncias historicas con asunto no normalizado
|
|
-- Si una referencia aparece varias veces, la app prioriza source_row mayor.
|
|
-- ============================================================
|
|
|
|
USE gestiona;
|
|
|
|
CREATE TABLE IF NOT EXISTS gestiona_file_exceptions (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
external_report_id INT NULL,
|
|
external_reference VARCHAR(100) NOT NULL,
|
|
gestiona_file_code VARCHAR(50) NOT NULL,
|
|
notes VARCHAR(255) NULL,
|
|
source_row INT NULL,
|
|
created_at_utc DATETIME(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
|
|
updated_at_utc DATETIME(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
|
|
UNIQUE KEY uq_gestiona_file_exceptions_ref_code (external_reference, gestiona_file_code),
|
|
KEY ix_gestiona_file_exceptions_report (external_report_id),
|
|
KEY ix_gestiona_file_exceptions_reference (external_reference),
|
|
KEY ix_gestiona_file_exceptions_code (gestiona_file_code)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1274, '1274', '151/2025', 'CD-expdte Gestiona 20260414.xlsx', 2)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1276, '1276', '153/2025', 'CD-expdte Gestiona 20260414.xlsx', 3)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-3', '006/2025', 'CD-expdte Gestiona 20260414.xlsx', 4)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-1', '003/2025', 'CD-expdte Gestiona 20260414.xlsx', 5)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-2', '004/2025', 'CD-expdte Gestiona 20260414.xlsx', 6)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1275, '1275', '152/2025', 'CD-expdte Gestiona 20260414.xlsx', 7)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-4', '007/2025', 'CD-expdte Gestiona 20260414.xlsx', 8)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1277, '1277', '154/2025', 'CD-expdte Gestiona 20260414.xlsx', 9)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1279, '1279', '155/2025', 'CD-expdte Gestiona 20260414.xlsx', 10)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1278, '1278', '211/2025', 'CD-expdte Gestiona 20260414.xlsx', 11)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1280, '1280', '156/2025', 'CD-expdte Gestiona 20260414.xlsx', 12)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-4', '008/2025', 'CD-expdte Gestiona 20260414.xlsx', 13)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1281, '1281', '295/2025', 'CD-expdte Gestiona 20260414.xlsx', 14)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1282, '1282', '157/2025', 'CD-expdte Gestiona 20260414.xlsx', 15)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1283, '1283', '158/2025', 'CD-expdte Gestiona 20260414.xlsx', 16)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1285, '1285', '160/2025', 'CD-expdte Gestiona 20260414.xlsx', 17)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1284, '1284', '159/2025', 'CD-expdte Gestiona 20260414.xlsx', 18)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1286, '1286', '213/2025', 'CD-expdte Gestiona 20260414.xlsx', 19)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1287, '1287', '161/2025', 'CD-expdte Gestiona 20260414.xlsx', 20)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-15', '019/2025', 'CD-expdte Gestiona 20260414.xlsx', 21)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1291, '1291', '164/2025', 'CD-expdte Gestiona 20260414.xlsx', 22)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1288, '1288', '162/2025', 'CD-expdte Gestiona 20260414.xlsx', 23)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1289, '1289', '163/2025', 'CD-expdte Gestiona 20260414.xlsx', 24)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1290, '1290', '214/2025', 'CD-expdte Gestiona 20260414.xlsx', 25)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1294, '1294', '167/2025', 'CD-expdte Gestiona 20260414.xlsx', 26)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1295, '1295', '168/2025', 'CD-expdte Gestiona 20260414.xlsx', 27)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1292, '1292', '166/2025', 'CD-expdte Gestiona 20260414.xlsx', 28)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1293, '1293', '215/2025', 'CD-expdte Gestiona 20260414.xlsx', 29)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-16', '026/2025', 'CD-expdte Gestiona 20260414.xlsx', 30)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1296, '1296', '217/2025', 'CD-expdte Gestiona 20260414.xlsx', 31)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1297, '1297', '216/2025', 'CD-expdte Gestiona 20260414.xlsx', 32)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1298, '1298', '218/2025', 'CD-expdte Gestiona 20260414.xlsx', 33)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1299, '1299', '219/2025', 'CD-expdte Gestiona 20260414.xlsx', 34)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1302, '1302', '056/2025', 'CD-expdte Gestiona 20260414.xlsx', 35)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1303, '1303', '057/2025', 'CD-expdte Gestiona 20260414.xlsx', 36)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1300, '1300', '169/2025', 'CD-expdte Gestiona 20260414.xlsx', 37)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1301, '1301', '170/2025', 'CD-expdte Gestiona 20260414.xlsx', 38)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1308, '1308', '175/2025', 'CD-expdte Gestiona 20260414.xlsx', 39)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1304, '1304', '171/2025', 'CD-expdte Gestiona 20260414.xlsx', 40)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1307, '1307', '174/2025', 'CD-expdte Gestiona 20260414.xlsx', 41)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1310, '1310', '177/2025', 'CD-expdte Gestiona 20260414.xlsx', 42)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1305, '1305', '172/2025', 'CD-expdte Gestiona 20260414.xlsx', 43)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1306, '1306', '173/2025', 'CD-expdte Gestiona 20260414.xlsx', 44)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1309, '1309', '176/2025', 'CD-expdte Gestiona 20260414.xlsx', 45)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1311, '1311', '178/2025', 'CD-expdte Gestiona 20260414.xlsx', 46)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1312, '1312', '179/2025', 'CD-expdte Gestiona 20260414.xlsx', 47)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1313, '1313', '180/2025', 'CD-expdte Gestiona 20260414.xlsx', 48)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, 'denuncia tlfno anónima', '076/2025', 'CD-expdte Gestiona 20260414.xlsx', 49)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1314, '1314', '181/2025', 'CD-expdte Gestiona 20260414.xlsx', 50)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1316, '1316', '183/2024', 'CD-expdte Gestiona 20260414.xlsx', 51)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1317, '1317', '189/2025', 'CD-expdte Gestiona 20260414.xlsx', 52)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1315, '1315', '182/2025', 'CD-expdte Gestiona 20260414.xlsx', 53)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1318, '1318', '190/2025', 'CD-expdte Gestiona 20260414.xlsx', 54)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1319, '1319', '184/2025', 'CD-expdte Gestiona 20260414.xlsx', 55)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1320, '1320', '191/2025', 'CD-expdte Gestiona 20260414.xlsx', 56)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1321, '1321', '186/2025', 'CD-expdte Gestiona 20260414.xlsx', 57)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1323, '1323', '195/2025', 'CD-expdte Gestiona 20260414.xlsx', 58)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1322, '1322', '193/2025', 'CD-expdte Gestiona 20260414.xlsx', 59)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1324, '1324', '196/2025', 'CD-expdte Gestiona 20260414.xlsx', 60)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1326, '1326', '199/2025', 'CD-expdte Gestiona 20260414.xlsx', 61)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1325, '1325', '198/2025', 'CD-expdte Gestiona 20260414.xlsx', 62)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1327, '1327', '200/2025', 'CD-expdte Gestiona 20260414.xlsx', 63)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1328, '1328', '187/2025', 'CD-expdte Gestiona 20260414.xlsx', 64)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1329, '1329', '201/2025', 'CD-expdte Gestiona 20260414.xlsx', 65)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1330, '1330', '203/2025', 'CD-expdte Gestiona 20260414.xlsx', 66)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1331, '1331', '204/2025', 'CD-expdte Gestiona 20260414.xlsx', 67)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1332, '1332', '205/2025', 'CD-expdte Gestiona 20260414.xlsx', 68)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1333, '1333', '206/2025', 'CD-expdte Gestiona 20260414.xlsx', 69)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1334, '1334', '207/2025', 'CD-expdte Gestiona 20260414.xlsx', 70)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1335, '1335', '208/2025', 'CD-expdte Gestiona 20260414.xlsx', 71)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-33', '192/2025', 'CD-expdte Gestiona 20260414.xlsx', 72)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-34', '194/2025', 'CD-expdte Gestiona 20260414.xlsx', 73)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-35', '197/2025', 'CD-expdte Gestiona 20260414.xlsx', 74)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-32', '188/2025', 'CD-expdte Gestiona 20260414.xlsx', 75)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-36', '202/2025', 'CD-expdte Gestiona 20260414.xlsx', 76)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-37', '212/2025', 'CD-expdte Gestiona 20260414.xlsx', 77)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1336, '1336', '209/2025', 'CD-expdte Gestiona 20260414.xlsx', 78)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-31', '185/2025', 'CD-expdte Gestiona 20260414.xlsx', 79)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1337, '1337', '222/2025', 'CD-expdte Gestiona 20260414.xlsx', 80)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1338, '1338', '223/2025', 'CD-expdte Gestiona 20260414.xlsx', 81)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1339, '1339', '224/2025', 'CD-expdte Gestiona 20260414.xlsx', 82)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1342, '1342', '231/2025', 'CD-expdte Gestiona 20260414.xlsx', 83)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1340, '1340', '225/2025', 'CD-expdte Gestiona 20260414.xlsx', 84)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1341, '1341', '230/2025', 'CD-expdte Gestiona 20260414.xlsx', 85)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-41', '232/2025', 'CD-expdte Gestiona 20260414.xlsx', 86)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-67', '226/2025', 'CD-expdte Gestiona 20260414.xlsx', 87)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1343, '1343', '235/2025', 'CD-expdte Gestiona 20260414.xlsx', 88)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1344, '1344', '236/2025', 'CD-expdte Gestiona 20260414.xlsx', 89)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1346, '1346', '237/2025', 'CD-expdte Gestiona 20260414.xlsx', 90)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1345, '1345', '234/2025', 'CD-expdte Gestiona 20260414.xlsx', 91)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1347, '1347', '238/2025', 'CD-expdte Gestiona 20260414.xlsx', 92)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1348, '1348', '239/2025', 'CD-expdte Gestiona 20260414.xlsx', 93)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1349, '1349', '243/2025', 'CD-expdte Gestiona 20260414.xlsx', 94)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1351, '1351', '245/2025', 'CD-expdte Gestiona 20260414.xlsx', 95)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1350, '1350', '244/2025', 'CD-expdte Gestiona 20260414.xlsx', 96)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1352, '1352', '246/2025', 'CD-expdte Gestiona 20260414.xlsx', 97)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1353, '1353', '247/2025', 'CD-expdte Gestiona 20260414.xlsx', 98)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-50', '261/2025', 'CD-expdte Gestiona 20260414.xlsx', 99)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-51', '262/2025', 'CD-expdte Gestiona 20260414.xlsx', 100)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-45', '249/2025', 'CD-expdte Gestiona 20260414.xlsx', 101)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-46', '250/2025', 'CD-expdte Gestiona 20260414.xlsx', 102)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-47', '253/2025', 'CD-expdte Gestiona 20260414.xlsx', 103)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1354, '1354', '248/2025', 'CD-expdte Gestiona 20260414.xlsx', 104)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-48', '255/2025', 'CD-expdte Gestiona 20260414.xlsx', 105)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1355, '1355', '258/2025', 'CD-expdte Gestiona 20260414.xlsx', 106)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-49', '259/2025', 'CD-expdte Gestiona 20260414.xlsx', 107)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1356, '1356', '263/2025', 'CD-expdte Gestiona 20260414.xlsx', 108)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1357, '1357', '264/2025', 'CD-expdte Gestiona 20260414.xlsx', 109)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1358, '1358', '265/2025', 'CD-expdte Gestiona 20260414.xlsx', 110)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1360, '1360', '267/2025', 'CD-expdte Gestiona 20260414.xlsx', 111)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1359, '1359', '266/2025', 'CD-expdte Gestiona 20260414.xlsx', 112)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1362, '1362', '273/2025', 'CD-expdte Gestiona 20260414.xlsx', 113)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1364, '1364', '275/2025', 'CD-expdte Gestiona 20260414.xlsx', 114)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1365, '1365', '276/2025', 'CD-expdte Gestiona 20260414.xlsx', 115)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1368, '1368', '281/2025', 'CD-expdte Gestiona 20260414.xlsx', 116)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1369, '1369', '283/2025', 'CD-expdte Gestiona 20260414.xlsx', 117)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1363, '1363', '274/2025', 'CD-expdte Gestiona 20260414.xlsx', 118)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1361, '1361', '272/2025', 'CD-expdte Gestiona 20260414.xlsx', 119)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1366, '1366', '279/2025', 'CD-expdte Gestiona 20260414.xlsx', 120)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1367, '1367', '280/2025', 'CD-expdte Gestiona 20260414.xlsx', 121)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1370, '1370', '284/2025', 'CD-expdte Gestiona 20260414.xlsx', 122)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1371, '1371', '285/2025', 'CD-expdte Gestiona 20260414.xlsx', 123)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-52', '277/2025', 'CD-expdte Gestiona 20260414.xlsx', 124)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1372, '1372', '286/2025', 'CD-expdte Gestiona 20260414.xlsx', 125)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1373, '1373', '289/2025', 'CD-expdte Gestiona 20260414.xlsx', 126)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1374, '1374', '290/2025', 'CD-expdte Gestiona 20260414.xlsx', 127)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1375, '1375', '291/2025', 'CD-expdte Gestiona 20260414.xlsx', 128)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1376, '1376', '292/2025', 'CD-expdte Gestiona 20260414.xlsx', 129)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1377, '1377', '293/2025', 'CD-expdte Gestiona 20260414.xlsx', 130)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-54', '287/2025', 'CD-expdte Gestiona 20260414.xlsx', 131)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1378, '1378', '294/2025', 'CD-expdte Gestiona 20260414.xlsx', 132)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1379, '1379', '301/2025', 'CD-expdte Gestiona 20260414.xlsx', 133)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1383, '1383', '305/2025', 'CD-expdte Gestiona 20260414.xlsx', 134)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1385, '1385', '307/2025', 'CD-expdte Gestiona 20260414.xlsx', 135)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1386, '1386', '309/2025', 'CD-expdte Gestiona 20260414.xlsx', 136)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1387, '1387', '310/2025', 'CD-expdte Gestiona 20260414.xlsx', 137)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1380, '1380', '302/2025', 'CD-expdte Gestiona 20260414.xlsx', 138)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1381, '1381', '303/2025', 'CD-expdte Gestiona 20260414.xlsx', 139)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1382, '1382', '304/2025', 'CD-expdte Gestiona 20260414.xlsx', 140)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1384, '1384', '306/2025', 'CD-expdte Gestiona 20260414.xlsx', 141)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1388, '1388', '313/2025', 'CD-expdte Gestiona 20260414.xlsx', 142)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1389, '1389', '314/2025', 'CD-expdte Gestiona 20260414.xlsx', 143)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1390, '1390', '315/2025', 'CD-expdte Gestiona 20260414.xlsx', 144)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1391, '1391', '316/2025', 'CD-expdte Gestiona 20260414.xlsx', 145)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1392, '1392', '317/2025', 'CD-expdte Gestiona 20260414.xlsx', 146)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1393, '1393', '320/2025', 'CD-expdte Gestiona 20260414.xlsx', 147)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1394, '1394', '318/2025', 'CD-expdte Gestiona 20260414.xlsx', 148)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1395, '1395', '319/2025', 'CD-expdte Gestiona 20260414.xlsx', 149)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1396, '1396', '322/2025', 'CD-expdte Gestiona 20260414.xlsx', 150)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-65', '332/2025', 'CD-expdte Gestiona 20260414.xlsx', 151)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-69', '334/2025', 'CD-expdte Gestiona 20260414.xlsx', 152)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-60', '326/2025', 'CD-expdte Gestiona 20260414.xlsx', 153)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-61', '327/2025', 'CD-expdte Gestiona 20260414.xlsx', 154)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-62', '329/2025', 'CD-expdte Gestiona 20260414.xlsx', 155)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-63', '330/2025', 'CD-expdte Gestiona 20260414.xlsx', 156)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-64', '331/2025', 'CD-expdte Gestiona 20260414.xlsx', 157)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-68', '333/2025', 'CD-expdte Gestiona 20260414.xlsx', 158)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1402, '1402', '340/2025', 'CD-expdte Gestiona 20260414.xlsx', 159)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1403, '1403', '341/2025', 'CD-expdte Gestiona 20260414.xlsx', 160)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1397, '1397', '323/2025', 'CD-expdte Gestiona 20260414.xlsx', 161)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1398, '1398', '324/2025', 'CD-expdte Gestiona 20260414.xlsx', 162)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-58', '325/2025', 'CD-expdte Gestiona 20260414.xlsx', 163)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1399, '1399', '337/2025', 'CD-expdte Gestiona 20260414.xlsx', 164)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1400, '1400', '338/2025', 'CD-expdte Gestiona 20260414.xlsx', 165)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1401, '1401', '339/2025', 'CD-expdte Gestiona 20260414.xlsx', 166)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1404, '1404', '342/2025', 'CD-expdte Gestiona 20260414.xlsx', 167)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1405, '1405', '343/2025', 'CD-expdte Gestiona 20260414.xlsx', 168)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1407, '1407', '345/2025', 'CD-expdte Gestiona 20260414.xlsx', 169)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1412, '1412', '371/2025', 'CD-expdte Gestiona 20260414.xlsx', 170)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-70', '364/2025', 'CD-expdte Gestiona 20260414.xlsx', 171)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1406, '1406', '344/2025', 'CD-expdte Gestiona 20260414.xlsx', 172)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1408, '1408', '349/2025', 'CD-expdte Gestiona 20260414.xlsx', 173)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1409, '1409', '350/2025', 'CD-expdte Gestiona 20260414.xlsx', 174)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1410, '1410', '351/2025', 'CD-expdte Gestiona 20260414.xlsx', 175)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1411, '1411', '352/2025', 'CD-expdte Gestiona 20260414.xlsx', 176)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-72', '367/2025', 'CD-expdte Gestiona 20260414.xlsx', 177)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1413, '1413', '372/2025', 'CD-expdte Gestiona 20260414.xlsx', 178)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1414, '1414', '373/2025', 'CD-expdte Gestiona 20260414.xlsx', 179)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1415, '1415', '374/2025', 'CD-expdte Gestiona 20260414.xlsx', 180)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1417, '1417', '380/2025', 'CD-expdte Gestiona 20260414.xlsx', 181)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1416, '1416', '379/2025', 'CD-expdte Gestiona 20260414.xlsx', 182)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1418, '1418', '381/2025', 'CD-expdte Gestiona 20260414.xlsx', 183)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1419, '1419', '382/2025', 'CD-expdte Gestiona 20260414.xlsx', 184)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1423, '1423', '386/2025', 'CD-expdte Gestiona 20260414.xlsx', 185)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1420, '1420', '383/2025', 'CD-expdte Gestiona 20260414.xlsx', 186)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1421, '1421', '384/2025', 'CD-expdte Gestiona 20260414.xlsx', 187)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1422, '1422', '385/2025', 'CD-expdte Gestiona 20260414.xlsx', 188)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1424, '1424', '387/2025', 'CD-expdte Gestiona 20260414.xlsx', 189)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1426, '1426', '390/2025', 'CD-expdte Gestiona 20260414.xlsx', 190)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1425, '1425', '388/2025', 'CD-expdte Gestiona 20260414.xlsx', 191)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1430, '1430', '396/2025', 'CD-expdte Gestiona 20260414.xlsx', 192)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1427, '1427', '393/2025', 'CD-expdte Gestiona 20260414.xlsx', 193)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1428, '1428', '394/2025', 'CD-expdte Gestiona 20260414.xlsx', 194)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1429, '1429', '395/2025', 'CD-expdte Gestiona 20260414.xlsx', 195)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1431, '1431', '397/2025', 'CD-expdte Gestiona 20260414.xlsx', 196)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1432, '1432', '398/2025', 'CD-expdte Gestiona 20260414.xlsx', 197)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1433, '1433', '407/2025', 'CD-expdte Gestiona 20260414.xlsx', 198)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1436, '1436', '410/2025', 'CD-expdte Gestiona 20260414.xlsx', 199)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-77', '401/2025', 'CD-expdte Gestiona 20260414.xlsx', 200)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1437, '1437', '404/2025', 'CD-expdte Gestiona 20260414.xlsx', 201)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1434, '1434', '408/2025', 'CD-expdte Gestiona 20260414.xlsx', 202)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1438, '1438', '405/2025', 'CD-expdte Gestiona 20260414.xlsx', 203)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1435, '1435', '409/2025', 'CD-expdte Gestiona 20260414.xlsx', 204)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-76', '400/2025', 'CD-expdte Gestiona 20260414.xlsx', 205)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1439, '1439', '411/2025', 'CD-expdte Gestiona 20260414.xlsx', 206)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1444, '1444', '417/2025', 'CD-expdte Gestiona 20260414.xlsx', 207)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1445, '1445', '418/2025', 'CD-expdte Gestiona 20260414.xlsx', 208)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1442, '1442', '415/2025', 'CD-expdte Gestiona 20260414.xlsx', 209)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1443, '1443', '416/2025', 'CD-expdte Gestiona 20260414.xlsx', 210)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1440, '1440', '413/2025', 'CD-expdte Gestiona 20260414.xlsx', 211)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1441, '1441', '414/2025', 'CD-expdte Gestiona 20260414.xlsx', 212)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1446, '1446', '419/2025', 'CD-expdte Gestiona 20260414.xlsx', 213)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1447, '1447', '421/2025', 'CD-expdte Gestiona 20260414.xlsx', 214)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1448, '1448', '424/2025', 'CD-expdte Gestiona 20260414.xlsx', 215)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1449, '1449', '425/2025', 'CD-expdte Gestiona 20260414.xlsx', 216)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1450, '1450', '426/2025', 'CD-expdte Gestiona 20260414.xlsx', 217)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1452, '1452', '431/2025', 'CD-expdte Gestiona 20260414.xlsx', 218)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1451, '1451', '428/2025', 'CD-expdte Gestiona 20260414.xlsx', 219)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-80', '434/2025', 'CD-expdte Gestiona 20260414.xlsx', 220)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-82', '436/2025', 'CD-expdte Gestiona 20260414.xlsx', 221)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1455, '1455', '441/2025', 'CD-expdte Gestiona 20260414.xlsx', 222)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1453, '1453', '433/2025', 'CD-expdte Gestiona 20260414.xlsx', 223)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1454, '1454', '440/2025', 'CD-expdte Gestiona 20260414.xlsx', 224)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1456, '1456', '443/2025', 'CD-expdte Gestiona 20260414.xlsx', 225)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-85', '445/2025', 'CD-expdte Gestiona 20260414.xlsx', 226)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1457, '1457', '447/2025', 'CD-expdte Gestiona 20260414.xlsx', 227)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1458, '1458', '448/2025', 'CD-expdte Gestiona 20260414.xlsx', 228)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1459, '1459', '449/2025', 'CD-expdte Gestiona 20260414.xlsx', 229)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1460, '1460', '450/2025', 'CD-expdte Gestiona 20260414.xlsx', 230)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1461, '1461', '451/2025', 'CD-expdte Gestiona 20260414.xlsx', 231)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1462, '1462', '452/2025', 'CD-expdte Gestiona 20260414.xlsx', 232)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1463, '1463', '453/2025', 'CD-expdte Gestiona 20260414.xlsx', 233)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1465, '1465', '455/2025', 'CD-expdte Gestiona 20260414.xlsx', 234)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1464, '1464', '454/2025', 'CD-expdte Gestiona 20260414.xlsx', 235)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1468, '1468', '576/2025', 'CD-expdte Gestiona 20260414.xlsx', 236)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1470, '1470', '465/2025', 'CD-expdte Gestiona 20260414.xlsx', 237)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1471, '1471', '466/2025', 'CD-expdte Gestiona 20260414.xlsx', 238)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-87', '468/2025', 'CD-expdte Gestiona 20260414.xlsx', 239)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1472, '1472', '470/2025', 'CD-expdte Gestiona 20260414.xlsx', 240)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1466, '1466', '462/2025', 'CD-expdte Gestiona 20260414.xlsx', 241)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1467, '1467', '463/2025', 'CD-expdte Gestiona 20260414.xlsx', 242)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1469, '1469', '464/2025', 'CD-expdte Gestiona 20260414.xlsx', 243)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-152', '469/2025', 'CD-expdte Gestiona 20260414.xlsx', 244)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1473, '1473', '471/2025', 'CD-expdte Gestiona 20260414.xlsx', 245)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1474, '1474', '473/2025', 'CD-expdte Gestiona 20260414.xlsx', 246)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1475, '1475', '474/2025', 'CD-expdte Gestiona 20260414.xlsx', 247)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1479, '1479', '478/2025', 'CD-expdte Gestiona 20260414.xlsx', 248)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1483, '1483', '484/2025', 'CD-expdte Gestiona 20260414.xlsx', 249)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1480, '1480', '479/2025', 'CD-expdte Gestiona 20260414.xlsx', 250)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-88', '481/2025', 'CD-expdte Gestiona 20260414.xlsx', 251)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1482, '1482', '483/2025', 'CD-expdte Gestiona 20260414.xlsx', 252)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1484, '1484', '485/2025', 'CD-expdte Gestiona 20260414.xlsx', 253)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1476, '1476', '475/2025', 'CD-expdte Gestiona 20260414.xlsx', 254)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1477, '1477', '476/2025', 'CD-expdte Gestiona 20260414.xlsx', 255)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1478, '1478', '477/2025', 'CD-expdte Gestiona 20260414.xlsx', 256)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1481, '1481', '480/2025', 'CD-expdte Gestiona 20260414.xlsx', 257)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1485, '1485', '486/2025', 'CD-expdte Gestiona 20260414.xlsx', 258)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-89', '482/2025', 'CD-expdte Gestiona 20260414.xlsx', 259)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1487, '1487', '491/2025', 'CD-expdte Gestiona 20260414.xlsx', 260)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1486, '1486', '490/2025', 'CD-expdte Gestiona 20260414.xlsx', 261)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1488, '1488', '492/2025', 'CD-expdte Gestiona 20260414.xlsx', 262)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1490, '1490', '494/2025', 'CD-expdte Gestiona 20260414.xlsx', 263)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1489, '1489', '493/2025', 'CD-expdte Gestiona 20260414.xlsx', 264)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-95', '500/2025', 'CD-expdte Gestiona 20260414.xlsx', 265)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-96', '501/2025', 'CD-expdte Gestiona 20260414.xlsx', 266)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1494, '1494', '507/2025', 'CD-expdte Gestiona 20260414.xlsx', 267)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1496, '1496', '509/2025', 'CD-expdte Gestiona 20260414.xlsx', 268)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1499, '1499', '514/2025', 'CD-expdte Gestiona 20260414.xlsx', 269)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1500, '1500', '515/2025', 'CD-expdte Gestiona 20260414.xlsx', 270)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1492, '1492', '496/2025', 'CD-expdte Gestiona 20260414.xlsx', 271)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-98 2025-E-RC-100', '503/2025', 'CD-expdte Gestiona 20260414.xlsx', 272)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-101', '505/2025', 'CD-expdte Gestiona 20260414.xlsx', 273)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1495, '1495', '508/2025', 'CD-expdte Gestiona 20260414.xlsx', 274)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1497, '1497', '510/2025', 'CD-expdte Gestiona 20260414.xlsx', 275)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1498, '1498', '513/2025', 'CD-expdte Gestiona 20260414.xlsx', 276)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1491, '1491', '495/2025', 'CD-expdte Gestiona 20260414.xlsx', 277)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1493, '1493', '497/2025', 'CD-expdte Gestiona 20260414.xlsx', 278)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-105', '511/2025', 'CD-expdte Gestiona 20260414.xlsx', 279)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1502, '1502', '519/2025', 'CD-expdte Gestiona 20260414.xlsx', 280)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1501, '1501', '517/2025', 'CD-expdte Gestiona 20260414.xlsx', 281)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1503, '1503', '520/2025', 'CD-expdte Gestiona 20260414.xlsx', 282)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1507, '1507', '527/2025', 'CD-expdte Gestiona 20260414.xlsx', 283)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1504, '1504', '524/2025', 'CD-expdte Gestiona 20260414.xlsx', 284)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1505, '1505', '525/2025', 'CD-expdte Gestiona 20260414.xlsx', 285)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1506, '1506', '526/2025', 'CD-expdte Gestiona 20260414.xlsx', 286)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1508, '1508', '528/2025', 'CD-expdte Gestiona 20260414.xlsx', 287)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1509, '1509', '529/2025', 'CD-expdte Gestiona 20260414.xlsx', 288)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1510, '1510', '533/2025', 'CD-expdte Gestiona 20260414.xlsx', 289)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1512, '1512', '535/2025', 'CD-expdte Gestiona 20260414.xlsx', 290)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1511, '1511', '534/2025', 'CD-expdte Gestiona 20260414.xlsx', 291)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1513, '1513', '537/2025', 'CD-expdte Gestiona 20260414.xlsx', 292)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1516, '1516', '550/2025', 'CD-expdte Gestiona 20260414.xlsx', 293)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1514, '1514', '541/2025', 'CD-expdte Gestiona 20260414.xlsx', 294)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1515, '1515', '542/2025', 'CD-expdte Gestiona 20260414.xlsx', 295)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1517, '1517', '551/2025', 'CD-expdte Gestiona 20260414.xlsx', 296)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-181', '547/2025', 'CD-expdte Gestiona 20260414.xlsx', 297)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1519, '1519', '559/2025', 'CD-expdte Gestiona 20260414.xlsx', 298)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1521, '1521', '561/2025', 'CD-expdte Gestiona 20260414.xlsx', 299)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1518, '1518', '552/2025', 'CD-expdte Gestiona 20260414.xlsx', 300)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1520, '1520', '560/2025', 'CD-expdte Gestiona 20260414.xlsx', 301)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1522, '1522', '563/2025', 'CD-expdte Gestiona 20260414.xlsx', 302)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-113', '566/2025', 'CD-expdte Gestiona 20260414.xlsx', 303)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1525, '1525', '568/2025', 'CD-expdte Gestiona 20260414.xlsx', 304)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1526, '1526', '569/2025', 'CD-expdte Gestiona 20260414.xlsx', 305)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1523, '1523', '564/2025', 'CD-expdte Gestiona 20260414.xlsx', 306)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1524, '1524', '567/2025', 'CD-expdte Gestiona 20260414.xlsx', 307)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1527, '1527', '570/2025', 'CD-expdte Gestiona 20260414.xlsx', 308)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1528, '1528', '578/2025', 'CD-expdte Gestiona 20260414.xlsx', 309)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1529, '1529', '579/2025', 'CD-expdte Gestiona 20260414.xlsx', 310)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1530, '1530', '580/2025', 'CD-expdte Gestiona 20260414.xlsx', 311)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-114', '571/2025', 'CD-expdte Gestiona 20260414.xlsx', 312)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1531, '1531', '582/2025', 'CD-expdte Gestiona 20260414.xlsx', 313)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-130', '590/2025', 'CD-expdte Gestiona 20260414.xlsx', 314)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1534, '1534', '593/2025', 'CD-expdte Gestiona 20260414.xlsx', 315)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-135', '604/2025', 'CD-expdte Gestiona 20260414.xlsx', 316)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1532, '1532', '589/2025', 'CD-expdte Gestiona 20260414.xlsx', 317)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1533, '1533', '592/2025', 'CD-expdte Gestiona 20260414.xlsx', 318)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1535, '1535', '594/2025', 'CD-expdte Gestiona 20260414.xlsx', 319)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1536, '1536', '595/2025', 'CD-expdte Gestiona 20260414.xlsx', 320)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1537, '1537', '598/2025', 'CD-expdte Gestiona 20260414.xlsx', 321)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1542, '1542', '609/2025', 'CD-expdte Gestiona 20260414.xlsx', 322)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-137', '619/2025', 'CD-expdte Gestiona 20260414.xlsx', 323)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1538, '1538', '599/2025', 'CD-expdte Gestiona 20260414.xlsx', 324)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1539, '1539', '602/2025', 'CD-expdte Gestiona 20260414.xlsx', 325)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1540, '1540', '607/2025', 'CD-expdte Gestiona 20260414.xlsx', 326)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1541, '1541', '608/2025', 'CD-expdte Gestiona 20260414.xlsx', 327)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1543, '1543', '610/2025', 'CD-expdte Gestiona 20260414.xlsx', 328)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1544, '1544', '611/2025', 'CD-expdte Gestiona 20260414.xlsx', 329)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1545, '1545', '614/2025', 'CD-expdte Gestiona 20260414.xlsx', 330)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1546, '1546', '615/2025', 'CD-expdte Gestiona 20260414.xlsx', 331)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1548, '1548', '622/2025', 'CD-expdte Gestiona 20260414.xlsx', 332)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1549, '1549', '623/2025', 'CD-expdte Gestiona 20260414.xlsx', 333)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1550, '1550', '624/2025', 'CD-expdte Gestiona 20260414.xlsx', 334)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1551, '1551', '625/2025', 'CD-expdte Gestiona 20260414.xlsx', 335)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1547, '1547', '616/2025', 'CD-expdte Gestiona 20260414.xlsx', 336)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1555, '1555', '630/2025', 'CD-expdte Gestiona 20260414.xlsx', 337)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1559, '1559', '638/2025', 'CD-expdte Gestiona 20260414.xlsx', 338)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1552, '1552', '626/2025', 'CD-expdte Gestiona 20260414.xlsx', 339)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1554, '1554', '629/2025', 'CD-expdte Gestiona 20260414.xlsx', 340)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-139', '631/2025', 'CD-expdte Gestiona 20260414.xlsx', 341)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-136', '618/2025', 'CD-expdte Gestiona 20260414.xlsx', 342)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1553, '1553', '628/2025', 'CD-expdte Gestiona 20260414.xlsx', 343)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1556, '1556', '634/2025', 'CD-expdte Gestiona 20260414.xlsx', 344)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1557, '1557', '635/2025', 'CD-expdte Gestiona 20260414.xlsx', 345)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1558, '1558', '636/2025', 'CD-expdte Gestiona 20260414.xlsx', 346)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-138', '627/2025', 'CD-expdte Gestiona 20260414.xlsx', 347)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1562, '1562', '640/2025', 'CD-expdte Gestiona 20260414.xlsx', 348)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1560, '1560', '637/2025', 'CD-expdte Gestiona 20260414.xlsx', 349)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1561, '1561', '639/2025', 'CD-expdte Gestiona 20260414.xlsx', 350)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1563, '1563', '641/2025', 'CD-expdte Gestiona 20260414.xlsx', 351)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1566, '1566', '648/2025', 'CD-expdte Gestiona 20260414.xlsx', 352)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1568, '1568', '649/2025', 'CD-expdte Gestiona 20260414.xlsx', 353)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1571, '1571', '655/2025', 'CD-expdte Gestiona 20260414.xlsx', 354)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1567, '1567', '650/2025', 'CD-expdte Gestiona 20260414.xlsx', 355)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1572, '1572', '656/2025', 'CD-expdte Gestiona 20260414.xlsx', 356)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1573, '1573', '657/2025', 'CD-expdte Gestiona 20260414.xlsx', 357)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1565, '1565', '647/2025', 'CD-expdte Gestiona 20260414.xlsx', 358)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1564, '1564', '646/2025', 'CD-expdte Gestiona 20260414.xlsx', 359)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1569, '1569', '653/2025', 'CD-expdte Gestiona 20260414.xlsx', 360)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1570, '1570', '654/2025', 'CD-expdte Gestiona 20260414.xlsx', 361)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-143', '651/2025', 'CD-expdte Gestiona 20260414.xlsx', 362)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1575, '1575', '661/2025', 'CD-expdte Gestiona 20260414.xlsx', 363)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1574, '1574', '658/2025', 'CD-expdte Gestiona 20260414.xlsx', 364)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1576, '1576', '662/2025', 'CD-expdte Gestiona 20260414.xlsx', 365)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1586, '1586', '686/2025', 'CD-expdte Gestiona 20260414.xlsx', 366)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1583, '1583', '679/2025', 'CD-expdte Gestiona 20260414.xlsx', 367)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1589, '1589', '705/2025', 'CD-expdte Gestiona 20260414.xlsx', 368)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1580, '1580', '669/2025', 'CD-expdte Gestiona 20260414.xlsx', 369)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-148', '675/2025', 'CD-expdte Gestiona 20260414.xlsx', 370)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1582, '1582', '678/2025', 'CD-expdte Gestiona 20260414.xlsx', 371)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1587, '1587', '687/2025', 'CD-expdte Gestiona 20260414.xlsx', 372)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1590, '1590', '706/2025', 'CD-expdte Gestiona 20260414.xlsx', 373)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1577, '1577', '663/2025', 'CD-expdte Gestiona 20260414.xlsx', 374)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1581, '1581', '670/2025', 'CD-expdte Gestiona 20260414.xlsx', 375)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-168', '672/2025', 'CD-expdte Gestiona 20260414.xlsx', 376)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1584, '1584', '680/2025', 'CD-expdte Gestiona 20260414.xlsx', 377)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1585, '1585', '683/2025', 'CD-expdte Gestiona 20260414.xlsx', 378)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1588, '1588', '704/2025', 'CD-expdte Gestiona 20260414.xlsx', 379)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1579, '1579', '668/2025', 'CD-expdte Gestiona 20260414.xlsx', 380)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1578, '1578', '664/2025', 'CD-expdte Gestiona 20260414.xlsx', 381)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-155', '685/2025', 'CD-expdte Gestiona 20260414.xlsx', 382)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1591, '1591', '707/2025', 'CD-expdte Gestiona 20260414.xlsx', 383)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1593, '1593', '709/2025', 'CD-expdte Gestiona 20260414.xlsx', 384)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1592, '1592', '708/2025', 'CD-expdte Gestiona 20260414.xlsx', 385)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1596, '1596', '714/2025', 'CD-expdte Gestiona 20260414.xlsx', 386)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1594, '1594', '710/2025', 'CD-expdte Gestiona 20260414.xlsx', 387)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1595, '1595', '711/2025', 'CD-expdte Gestiona 20260414.xlsx', 388)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1597, '1597', '712/2025', 'CD-expdte Gestiona 20260414.xlsx', 389)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1598, '1598', '715/2025', 'CD-expdte Gestiona 20260414.xlsx', 390)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1602, '1602', '719/2025', 'CD-expdte Gestiona 20260414.xlsx', 391)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1599, '1599', '716/2025', 'CD-expdte Gestiona 20260414.xlsx', 392)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1600, '1600', '717/2025', 'CD-expdte Gestiona 20260414.xlsx', 393)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1601, '1601', '718/2025', 'CD-expdte Gestiona 20260414.xlsx', 394)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-241', '702/2025', 'CD-expdte Gestiona 20260414.xlsx', 395)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1607, '1607', '727/2025', 'CD-expdte Gestiona 20260414.xlsx', 396)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1603, '1603', '723/2025', 'CD-expdte Gestiona 20260414.xlsx', 397)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1604, '1604', '724/2025', 'CD-expdte Gestiona 20260414.xlsx', 398)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1610, '1610', '734/2025', 'CD-expdte Gestiona 20260414.xlsx', 399)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1605, '1605', '725/2025', 'CD-expdte Gestiona 20260414.xlsx', 400)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1606, '1606', '726/2025', 'CD-expdte Gestiona 20260414.xlsx', 401)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1609, '1609', '733/2025', 'CD-expdte Gestiona 20260414.xlsx', 402)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1608, '1608', '732/2025', 'CD-expdte Gestiona 20260414.xlsx', 403)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-160', '721/2025', 'CD-expdte Gestiona 20260414.xlsx', 404)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1611, '1611', '735/2025', 'CD-expdte Gestiona 20260414.xlsx', 405)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1612, '1612', '736/2025', 'CD-expdte Gestiona 20260414.xlsx', 406)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1613, '1613', '737/2025', 'CD-expdte Gestiona 20260414.xlsx', 407)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1614, '1614', '738/2025', 'CD-expdte Gestiona 20260414.xlsx', 408)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-162', '728/2025', 'CD-expdte Gestiona 20260414.xlsx', 409)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-163', '729/2025', 'CD-expdte Gestiona 20260414.xlsx', 410)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1615, '1615', '739/2025', 'CD-expdte Gestiona 20260414.xlsx', 411)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1616, '1616', '740/2025', 'CD-expdte Gestiona 20260414.xlsx', 412)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1617, '1617', '741/2025', 'CD-expdte Gestiona 20260414.xlsx', 413)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1618, '1618', '749/2025', 'CD-expdte Gestiona 20260414.xlsx', 414)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1619, '1619', '750/2025', 'CD-expdte Gestiona 20260414.xlsx', 415)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1622, '1622', '753/2025', 'CD-expdte Gestiona 20260414.xlsx', 416)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1620, '1620', '751/2025', 'CD-expdte Gestiona 20260414.xlsx', 417)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1627, '1627', '758/2025', 'CD-expdte Gestiona 20260414.xlsx', 418)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1621, '1621', '752/2025', 'CD-expdte Gestiona 20260414.xlsx', 419)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1623, '1623', '754/2025', 'CD-expdte Gestiona 20260414.xlsx', 420)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1624, '1624', '755/2025', 'CD-expdte Gestiona 20260414.xlsx', 421)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1625, '1625', '756/2025', 'CD-expdte Gestiona 20260414.xlsx', 422)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1626, '1626', '757/2025', 'CD-expdte Gestiona 20260414.xlsx', 423)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1628, '1628', '759/2025', 'CD-expdte Gestiona 20260414.xlsx', 424)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-170', '747/2025', 'CD-expdte Gestiona 20260414.xlsx', 425)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1629, '1629', '760/2025', 'CD-expdte Gestiona 20260414.xlsx', 426)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1630, '1630', '761/2025', 'CD-expdte Gestiona 20260414.xlsx', 427)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1632, '1632', '763/2025', 'CD-expdte Gestiona 20260414.xlsx', 428)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1633, '1633', '764/2025', 'CD-expdte Gestiona 20260414.xlsx', 429)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1631, '1631', '762/2025', 'CD-expdte Gestiona 20260414.xlsx', 430)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1634, '1634', '765/2025', 'CD-expdte Gestiona 20260414.xlsx', 431)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1635, '1635', '766/2025', 'CD-expdte Gestiona 20260414.xlsx', 432)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1636, '1636', '768/2025', 'CD-expdte Gestiona 20260414.xlsx', 433)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1637, '1637', '778/2025', 'CD-expdte Gestiona 20260414.xlsx', 434)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1639, '1639', '782/2025', 'CD-expdte Gestiona 20260414.xlsx', 435)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1638, '1638', '780/2025', 'CD-expdte Gestiona 20260414.xlsx', 436)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1640, '1640', '783/2025', 'CD-expdte Gestiona 20260414.xlsx', 437)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1641, '1641', '784/2025', 'CD-expdte Gestiona 20260414.xlsx', 438)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1642, '1642', '785/2025', 'CD-expdte Gestiona 20260414.xlsx', 439)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1644, '1644', '791/2025', 'CD-expdte Gestiona 20260414.xlsx', 440)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1643, '1643', '786/2025', 'CD-expdte Gestiona 20260414.xlsx', 441)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1645, '1645', '792/2025', 'CD-expdte Gestiona 20260414.xlsx', 442)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1646, '1646', '793/2025', 'CD-expdte Gestiona 20260414.xlsx', 443)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1647, '1647', '794/2025', 'CD-expdte Gestiona 20260414.xlsx', 444)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1648, '1648', '795/2025', 'CD-expdte Gestiona 20260414.xlsx', 445)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1649, '1649', '796/2025', 'CD-expdte Gestiona 20260414.xlsx', 446)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1651, '1651', '799/2025', 'CD-expdte Gestiona 20260414.xlsx', 447)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1650, '1650', '798/2025', 'CD-expdte Gestiona 20260414.xlsx', 448)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1654, '1654', '805/2025', 'CD-expdte Gestiona 20260414.xlsx', 449)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1655, '1655', '806/2025', 'CD-expdte Gestiona 20260414.xlsx', 450)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1652, '1652', '803/2025', 'CD-expdte Gestiona 20260414.xlsx', 451)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1653, '1653', '804/2025', 'CD-expdte Gestiona 20260414.xlsx', 452)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1656, '1656', '810/2025', 'CD-expdte Gestiona 20260414.xlsx', 453)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1658, '1658', '817/2025', 'CD-expdte Gestiona 20260414.xlsx', 454)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1660, '1660', '819/2025', 'CD-expdte Gestiona 20260414.xlsx', 455)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1657, '1657', '811/2025', 'CD-expdte Gestiona 20260414.xlsx', 456)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1659, '1659', '818/2025', 'CD-expdte Gestiona 20260414.xlsx', 457)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1661, '1661', '820/2025', 'CD-expdte Gestiona 20260414.xlsx', 458)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-184', '813/2025', 'CD-expdte Gestiona 20260414.xlsx', 459)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-186', '815/2025', 'CD-expdte Gestiona 20260414.xlsx', 460)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1663, '1663', '822/2025', 'CD-expdte Gestiona 20260414.xlsx', 461)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-183', '812/2025', 'CD-expdte Gestiona 20260414.xlsx', 462)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1662, '1662', '821/2025', 'CD-expdte Gestiona 20260414.xlsx', 463)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-185', '814/2025', 'CD-expdte Gestiona 20260414.xlsx', 464)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-187', '823/2025', 'CD-expdte Gestiona 20260414.xlsx', 465)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1664, '1664', '824/2025', 'CD-expdte Gestiona 20260414.xlsx', 466)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1665, '1665', '825/2025', 'CD-expdte Gestiona 20260414.xlsx', 467)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1666, '1666', '826/2025', 'CD-expdte Gestiona 20260414.xlsx', 468)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1667, '1667', '829/2025', 'CD-expdte Gestiona 20260414.xlsx', 469)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1668, '1668', '830/2025', 'CD-expdte Gestiona 20260414.xlsx', 470)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1669, '1669', '833/2025', 'CD-expdte Gestiona 20260414.xlsx', 471)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-189', '834/2025', 'CD-expdte Gestiona 20260414.xlsx', 472)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1671, '1671', '837/2025', 'CD-expdte Gestiona 20260414.xlsx', 473)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1672, '1672', '838/2025', 'CD-expdte Gestiona 20260414.xlsx', 474)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1673, '1673', '839/2025', 'CD-expdte Gestiona 20260414.xlsx', 475)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1670, '1670', '836/2025', 'CD-expdte Gestiona 20260414.xlsx', 476)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1676, '1676', '846/2025', 'CD-expdte Gestiona 20260414.xlsx', 477)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1675, '1675', '845/2025', 'CD-expdte Gestiona 20260414.xlsx', 478)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1674, '1674', '844/2025', 'CD-expdte Gestiona 20260414.xlsx', 479)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1679, '1679', '852/2025', 'CD-expdte Gestiona 20260414.xlsx', 480)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1677, '1677', '850/2025', 'CD-expdte Gestiona 20260414.xlsx', 481)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1681, '1681', '860/2025', 'CD-expdte Gestiona 20260414.xlsx', 482)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1678, '1678', '851/2025', 'CD-expdte Gestiona 20260414.xlsx', 483)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1680, '1680', '859/2025', 'CD-expdte Gestiona 20260414.xlsx', 484)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1682, '1682', '861/2025', 'CD-expdte Gestiona 20260414.xlsx', 485)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1683, '1683', '862/2025', 'CD-expdte Gestiona 20260414.xlsx', 486)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1684, '1684', '865/2025', 'CD-expdte Gestiona 20260414.xlsx', 487)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1686, '1686', '873/2025', 'CD-expdte Gestiona 20260414.xlsx', 488)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1685, '1685', '871/2025', 'CD-expdte Gestiona 20260414.xlsx', 489)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1687, '1687', '874/2025', 'CD-expdte Gestiona 20260414.xlsx', 490)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1688, '1688', '875/2025', 'CD-expdte Gestiona 20260414.xlsx', 491)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1689, '1689', '878/2025', 'CD-expdte Gestiona 20260414.xlsx', 492)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1690, '1690', '879/205', 'CD-expdte Gestiona 20260414.xlsx', 493)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1691, '1691', '880/2025', 'CD-expdte Gestiona 20260414.xlsx', 494)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1692, '1692', '888/2025', 'CD-expdte Gestiona 20260414.xlsx', 495)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1693, '1693', '889/2025', 'CD-expdte Gestiona 20260414.xlsx', 496)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-381', '883/2025', 'CD-expdte Gestiona 20260414.xlsx', 497)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1694, '1694', '890/2025', 'CD-expdte Gestiona 20260414.xlsx', 498)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1695, '1695', '891/2025', 'CD-expdte Gestiona 20260414.xlsx', 499)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1696, '1696', '892/2025', 'CD-expdte Gestiona 20260414.xlsx', 500)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1697, '1697', '893/2025', 'CD-expdte Gestiona 20260414.xlsx', 501)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1698, '1698', '897/2025', 'CD-expdte Gestiona 20260414.xlsx', 502)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1699, '1699', '900/2025', 'CD-expdte Gestiona 20260414.xlsx', 503)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1700, '1700', '901/2025', 'CD-expdte Gestiona 20260414.xlsx', 504)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1701, '1701', '904/2025', 'CD-expdte Gestiona 20260414.xlsx', 505)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-213', '910/2025', 'CD-expdte Gestiona 20260414.xlsx', 506)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1704, '1704', '909/2025', 'CD-expdte Gestiona 20260414.xlsx', 507)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1702, '1702', '907/2025', 'CD-expdte Gestiona 20260414.xlsx', 508)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1703, '1703', '908/2025', 'CD-expdte Gestiona 20260414.xlsx', 509)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1705, '1705', '913/2025', 'CD-expdte Gestiona 20260414.xlsx', 510)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1706, '1706', '914/2025', 'CD-expdte Gestiona 20260414.xlsx', 511)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1707, '1707', '915/2025', 'CD-expdte Gestiona 20260414.xlsx', 512)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1708, '1708', '916/2025', 'CD-expdte Gestiona 20260414.xlsx', 513)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1710, '1710', '921/2025', 'CD-expdte Gestiona 20260414.xlsx', 514)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1711, '1711', '922/2025', 'CD-expdte Gestiona 20260414.xlsx', 515)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1709, '1709', '918/2025', 'CD-expdte Gestiona 20260414.xlsx', 516)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1712, '1712', '923/2025', 'CD-expdte Gestiona 20260414.xlsx', 517)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1713, '1713', '924/2025', 'CD-expdte Gestiona 20260414.xlsx', 518)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1715, '1715', '935/2025', 'CD-expdte Gestiona 20260414.xlsx', 519)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1716, '1716', '936/2025', 'CD-expdte Gestiona 20260414.xlsx', 520)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1714, '1714', '934/2025', 'CD-expdte Gestiona 20260414.xlsx', 521)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1717, '1717', '937/2025', 'CD-expdte Gestiona 20260414.xlsx', 522)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1718, '1718', '938/2025', 'CD-expdte Gestiona 20260414.xlsx', 523)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1719, '1719', '939/2025', 'CD-expdte Gestiona 20260414.xlsx', 524)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1720, '1720', '940/2025', 'CD-expdte Gestiona 20260414.xlsx', 525)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1730, '1730', '951/2025', 'CD-expdte Gestiona 20260414.xlsx', 526)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1721, '1721', '941/2025', 'CD-expdte Gestiona 20260414.xlsx', 527)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1723, '1723', '944/2025', 'CD-expdte Gestiona 20260414.xlsx', 528)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1724, '1724', '945/2025', 'CD-expdte Gestiona 20260414.xlsx', 529)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1727, '1727', '948/2025', 'CD-expdte Gestiona 20260414.xlsx', 530)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1722, '1722', '942/2025', 'CD-expdte Gestiona 20260414.xlsx', 531)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1725, '1725', '946/2025', 'CD-expdte Gestiona 20260414.xlsx', 532)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1726, '1726', '947/2025', 'CD-expdte Gestiona 20260414.xlsx', 533)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1728, '1728', '949/2025', 'CD-expdte Gestiona 20260414.xlsx', 534)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1729, '1729', '950/2025', 'CD-expdte Gestiona 20260414.xlsx', 535)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1731, '1731', '952/2025', 'CD-expdte Gestiona 20260414.xlsx', 536)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1732, '1732', '953/2025', 'CD-expdte Gestiona 20260414.xlsx', 537)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1734, '1734', '955/2025', 'CD-expdte Gestiona 20260414.xlsx', 538)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1736, '1736', '959/2025', 'CD-expdte Gestiona 20260414.xlsx', 539)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-226', '961/2025', 'CD-expdte Gestiona 20260414.xlsx', 540)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1735, '1735', '958/2025', 'CD-expdte Gestiona 20260414.xlsx', 541)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1733, '1733', '954/2025', 'CD-expdte Gestiona 20260414.xlsx', 542)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1737, '1737', '960/2025', 'CD-expdte Gestiona 20260414.xlsx', 543)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1738, '1738', '964/2025', 'CD-expdte Gestiona 20260414.xlsx', 544)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1739, '1739', '965/2025', 'CD-expdte Gestiona 20260414.xlsx', 545)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1740, '1740', '966/2025', 'CD-expdte Gestiona 20260414.xlsx', 546)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1741, '1741', '967/2025', 'CD-expdte Gestiona 20260414.xlsx', 547)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1742, '1742', '968/2025', 'CD-expdte Gestiona 20260414.xlsx', 548)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1743, '1743', '969/2025', 'CD-expdte Gestiona 20260414.xlsx', 549)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1744, '1744', '970/2025', 'CD-expdte Gestiona 20260414.xlsx', 550)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1745, '1745', '971/2025', 'CD-expdte Gestiona 20260414.xlsx', 551)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1748, '1748', '974/2025', 'CD-expdte Gestiona 20260414.xlsx', 552)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-229', '977/2025', 'CD-expdte Gestiona 20260414.xlsx', 553)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1746, '1746', '972/2025', 'CD-expdte Gestiona 20260414.xlsx', 554)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1747, '1747', '973/2025', 'CD-expdte Gestiona 20260414.xlsx', 555)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1750, '1750', '979/2025', 'CD-expdte Gestiona 20260414.xlsx', 556)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1752, '1752', '982/2025', 'CD-expdte Gestiona 20260414.xlsx', 557)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1749, '1749', '978/2025', 'CD-expdte Gestiona 20260414.xlsx', 558)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1751, '1751', '980/2025', 'CD-expdte Gestiona 20260414.xlsx', 559)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1753, '1753', '983/2025', 'CD-expdte Gestiona 20260414.xlsx', 560)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1754, '1754', '985/2025', 'CD-expdte Gestiona 20260414.xlsx', 561)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1756, '1756', '989/2025', 'CD-expdte Gestiona 20260414.xlsx', 562)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1755, '1755', '988/2025', 'CD-expdte Gestiona 20260414.xlsx', 563)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1757, '1757', '990/2025', 'CD-expdte Gestiona 20260414.xlsx', 564)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1758, '1758', '991/2025', 'CD-expdte Gestiona 20260414.xlsx', 565)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1760, '1760', '993/2025', 'CD-expdte Gestiona 20260414.xlsx', 566)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1762, '1762', '995/2025', 'CD-expdte Gestiona 20260414.xlsx', 567)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1765, '1765', '1003/2025', 'CD-expdte Gestiona 20260414.xlsx', 568)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1764, '1764', '998/2025', 'CD-expdte Gestiona 20260414.xlsx', 569)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1759, '1759', '992/2025', 'CD-expdte Gestiona 20260414.xlsx', 570)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1761, '1761', '994/2025', 'CD-expdte Gestiona 20260414.xlsx', 571)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1763, '1763', '996/2025', 'CD-expdte Gestiona 20260414.xlsx', 572)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1767, '1767', '1005/2025', 'CD-expdte Gestiona 20260414.xlsx', 573)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1771, '1771', '1010/2025', 'CD-expdte Gestiona 20260414.xlsx', 574)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1772, '1772', '1011/2025', 'CD-expdte Gestiona 20260414.xlsx', 575)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1773, '1773', '1013/2025', 'CD-expdte Gestiona 20260414.xlsx', 576)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1766, '1766', '1004/2025', 'CD-expdte Gestiona 20260414.xlsx', 577)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1768, '1768', '1007/2025', 'CD-expdte Gestiona 20260414.xlsx', 578)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1774, '1774', '1014/2025', 'CD-expdte Gestiona 20260414.xlsx', 579)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1769, '1769', '1008/2025', 'CD-expdte Gestiona 20260414.xlsx', 580)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1770, '1770', '1009/2025', 'CD-expdte Gestiona 20260414.xlsx', 581)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1775, '1775', '1015/2025', 'CD-expdte Gestiona 20260414.xlsx', 582)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1779, '1779', '1020/2025', 'CD-expdte Gestiona 20260414.xlsx', 583)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1780, '1780', '1021/2025', 'CD-expdte Gestiona 20260414.xlsx', 584)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1776, '1776', '1016/2025', 'CD-expdte Gestiona 20260414.xlsx', 585)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1777, '1777', '1018/2025', 'CD-expdte Gestiona 20260414.xlsx', 586)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1778, '1778', '1019/2025', 'CD-expdte Gestiona 20260414.xlsx', 587)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1781, '1781', '1022/2025', 'CD-expdte Gestiona 20260414.xlsx', 588)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1782, '1782', '1023/2025', 'CD-expdte Gestiona 20260414.xlsx', 589)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1783, '1783', '643/2025', 'CD-expdte Gestiona 20260414.xlsx', 590)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1784, '1784', '1027/2025', 'CD-expdte Gestiona 20260414.xlsx', 591)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1787, '1787', '1035/2025', 'CD-expdte Gestiona 20260414.xlsx', 592)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1785, '1785', '1029/2025', 'CD-expdte Gestiona 20260414.xlsx', 593)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1789, '1789', '1036/2025', 'CD-expdte Gestiona 20260414.xlsx', 594)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1790, '1790', '1039/2025', 'CD-expdte Gestiona 20260414.xlsx', 595)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1791, '1791', '1040/2025', 'CD-expdte Gestiona 20260414.xlsx', 596)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1792, '1792', '1041/20205', 'CD-expdte Gestiona 20260414.xlsx', 597)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1793, '1793', '1042/2025', 'CD-expdte Gestiona 20260414.xlsx', 598)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-247', '1043/2025', 'CD-expdte Gestiona 20260414.xlsx', 599)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1794, '1794', '1048/2025', 'CD-expdte Gestiona 20260414.xlsx', 600)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-263', '1052/2025', 'CD-expdte Gestiona 20260414.xlsx', 601)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1795, '1795', '1049/2025', 'CD-expdte Gestiona 20260414.xlsx', 602)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1796, '1796', '1053/2025', 'CD-expdte Gestiona 20260414.xlsx', 603)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1797, '1797', '1054/2025', 'CD-expdte Gestiona 20260414.xlsx', 604)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1799, '1799', '1056/2025', 'CD-expdte Gestiona 20260414.xlsx', 605)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1798, '1798', '1055/2025', 'CD-expdte Gestiona 20260414.xlsx', 606)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1800, '1800', '1057/2025', 'CD-expdte Gestiona 20260414.xlsx', 607)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1802, '1802', '1059/2025', 'CD-expdte Gestiona 20260414.xlsx', 608)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1803, '1803', '1060/2025', 'CD-expdte Gestiona 20260414.xlsx', 609)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1804, '1804', '1061/2025', 'CD-expdte Gestiona 20260414.xlsx', 610)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1805, '1805', '1062/2025', 'CD-expdte Gestiona 20260414.xlsx', 611)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-264', '1066/2025', 'CD-expdte Gestiona 20260414.xlsx', 612)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1806, '1806', '1063/2025', 'CD-expdte Gestiona 20260414.xlsx', 613)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1807, '1807', '1067/2025', 'CD-expdte Gestiona 20260414.xlsx', 614)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1808, '1808', '1068/2025', 'CD-expdte Gestiona 20260414.xlsx', 615)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1809, '1809', '1069/2025', 'CD-expdte Gestiona 20260414.xlsx', 616)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1801, '1801', '1058/2025', 'CD-expdte Gestiona 20260414.xlsx', 617)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1810, '1810', '1070/2025', 'CD-expdte Gestiona 20260414.xlsx', 618)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1811, '1811', '1071/2025', 'CD-expdte Gestiona 20260414.xlsx', 619)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1812, '1812', '1072/2025', 'CD-expdte Gestiona 20260414.xlsx', 620)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1813, '1813', '1073/2025', 'CD-expdte Gestiona 20260414.xlsx', 621)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1814, '1814', '1081/2025', 'CD-expdte Gestiona 20260414.xlsx', 622)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1815, '1815', '1084/2025', 'CD-expdte Gestiona 20260414.xlsx', 623)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1818, '1818', '1088/2025', 'CD-expdte Gestiona 20260414.xlsx', 624)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1817, '1817', '1087/2025', 'CD-expdte Gestiona 20260414.xlsx', 625)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1816, '1816', '1085/2025', 'CD-expdte Gestiona 20260414.xlsx', 626)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1819, '1819', '1089/2025', 'CD-expdte Gestiona 20260414.xlsx', 627)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1820, '1820', '1090/2025', 'CD-expdte Gestiona 20260414.xlsx', 628)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1821, '1821', '1091/2025', 'CD-expdte Gestiona 20260414.xlsx', 629)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-276', '1086/2025', 'CD-expdte Gestiona 20260414.xlsx', 630)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1822, '1822', '1092/2025', 'CD-expdte Gestiona 20260414.xlsx', 631)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-338', '843/2025', 'CD-expdte Gestiona 20260414.xlsx', 632)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '1786 - 1788', '1034/2025', 'CD-expdte Gestiona 20260414.xlsx', 633)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-280', '1095/2025', 'CD-expdte Gestiona 20260414.xlsx', 634)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1825, '1825', '1109/2025', 'CD-expdte Gestiona 20260414.xlsx', 635)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2024-E-RE-833', '903/2025', 'CD-expdte Gestiona 20260414.xlsx', 636)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-276', '1093/2025', 'CD-expdte Gestiona 20260414.xlsx', 637)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1823, '1823', '1107/2025', 'CD-expdte Gestiona 20260414.xlsx', 638)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1824, '1824', '1108/2025', 'CD-expdte Gestiona 20260414.xlsx', 639)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1827, '1827', '1111/2025', 'CD-expdte Gestiona 20260414.xlsx', 640)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1826, '1826', '1110/2025', 'CD-expdte Gestiona 20260414.xlsx', 641)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1828, '1828', '1112/2025', 'CD-expdte Gestiona 20260414.xlsx', 642)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1829, '1829', '1113/2025', 'CD-expdte Gestiona 20260414.xlsx', 643)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1834, '1834', '1118/2025', 'CD-expdte Gestiona 20260414.xlsx', 644)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1831, '1831', '1115/2025', 'CD-expdte Gestiona 20260414.xlsx', 645)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-527', '1100/2025', 'CD-expdte Gestiona 20260414.xlsx', 646)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-285', '1103/2025', 'CD-expdte Gestiona 20260414.xlsx', 647)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1830, '1830', '1114/2025', 'CD-expdte Gestiona 20260414.xlsx', 648)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1832, '1832', '1116/2025', 'CD-expdte Gestiona 20260414.xlsx', 649)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1833, '1833', '1117/2025', 'CD-expdte Gestiona 20260414.xlsx', 650)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-534', '1104/2025', 'CD-expdte Gestiona 20260414.xlsx', 651)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1838, '1838', '1122/2025', 'CD-expdte Gestiona 20260414.xlsx', 652)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1839, '1839', '1123/2025', 'CD-expdte Gestiona 20260414.xlsx', 653)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1835, '1835', '1119/2025', 'CD-expdte Gestiona 20260414.xlsx', 654)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1836, '1836', '1120/2025', 'CD-expdte Gestiona 20260414.xlsx', 655)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1837, '1837', '1121/2025', 'CD-expdte Gestiona 20260414.xlsx', 656)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1840, '1840', '1124/2025', 'CD-expdte Gestiona 20260414.xlsx', 657)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1841, '1841', '1125/2025', 'CD-expdte Gestiona 20260414.xlsx', 658)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1842, '1842', '1126/2025', 'CD-expdte Gestiona 20260414.xlsx', 659)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1844, '1844', '1128/2025', 'CD-expdte Gestiona 20260414.xlsx', 660)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1845, '1845', '1129/2025', 'CD-expdte Gestiona 20260414.xlsx', 661)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1846, '1846', '1130/2025', 'CD-expdte Gestiona 20260414.xlsx', 662)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1847, '1847', '1131/2025', 'CD-expdte Gestiona 20260414.xlsx', 663)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1843, '1843', '1127/2025', 'CD-expdte Gestiona 20260414.xlsx', 664)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-287', '1133/2025', 'CD-expdte Gestiona 20260414.xlsx', 665)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1848, '1848', '1147/2025', 'CD-expdte Gestiona 20260414.xlsx', 666)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1849, '1849', '1148/2025', 'CD-expdte Gestiona 20260414.xlsx', 667)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1850, '1850', '1149/2025', 'CD-expdte Gestiona 20260414.xlsx', 668)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1852, '1852', '1152/2025', 'CD-expdte Gestiona 20260414.xlsx', 669)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1853, '1853', '1154/2025', 'CD-expdte Gestiona 20260414.xlsx', 670)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1854, '1854', '1155/2025', 'CD-expdte Gestiona 20260414.xlsx', 671)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1855, '1855', '1156/2025', 'CD-expdte Gestiona 20260414.xlsx', 672)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1857, '1857', '1158/2025', 'CD-expdte Gestiona 20260414.xlsx', 673)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-288', '1150/2025', 'CD-expdte Gestiona 20260414.xlsx', 674)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1856, '1856', '1157/2025', 'CD-expdte Gestiona 20260414.xlsx', 675)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1851, '1851', '1151/2025', 'CD-expdte Gestiona 20260414.xlsx', 676)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1858, '1858', '1159/2025', 'CD-expdte Gestiona 20260414.xlsx', 677)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1859, '1859', '1165/2025', 'CD-expdte Gestiona 20260414.xlsx', 678)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1860, '1860', '1166/2025', 'CD-expdte Gestiona 20260414.xlsx', 679)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1861, '1861', '1167/2025', 'CD-expdte Gestiona 20260414.xlsx', 680)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1863, '1863', '1169/2025', 'CD-expdte Gestiona 20260414.xlsx', 681)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1862, '1862', '1168/2025', 'CD-expdte Gestiona 20260414.xlsx', 682)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1864, '1864', '1170/2025', 'CD-expdte Gestiona 20260414.xlsx', 683)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1868, '1868', '1186/2025', 'CD-expdte Gestiona 20260414.xlsx', 684)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1865, '1865', '1171/2025', 'CD-expdte Gestiona 20260414.xlsx', 685)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1866, '1866', '1172/2025', 'CD-expdte Gestiona 20260414.xlsx', 686)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1867, '1867', '1173/2025', 'CD-expdte Gestiona 20260414.xlsx', 687)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1869, '1869', '1187/2028', 'CD-expdte Gestiona 20260414.xlsx', 688)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1870, '1870', '1188/2025', 'CD-expdte Gestiona 20260414.xlsx', 689)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1871, '1871', '1189/2025', 'CD-expdte Gestiona 20260414.xlsx', 690)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1872, '1872', '1192/2025', 'CD-expdte Gestiona 20260414.xlsx', 691)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1873, '1873', '1193/2025', 'CD-expdte Gestiona 20260414.xlsx', 692)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1875, '1875', '1195/2025', 'CD-expdte Gestiona 20260414.xlsx', 693)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1874, '1874', '1194/2025', 'CD-expdte Gestiona 20260414.xlsx', 694)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1876, '1876', '1196/2025', 'CD-expdte Gestiona 20260414.xlsx', 695)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-301', '1175/2025', 'CD-expdte Gestiona 20260414.xlsx', 696)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1878, '1878', '1198/2025', 'CD-expdte Gestiona 20260414.xlsx', 697)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-300', '1641/2025', 'CD-expdte Gestiona 20260414.xlsx', 698)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1877, '1877', '1197/2025', 'CD-expdte Gestiona 20260414.xlsx', 699)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1879, '1879', '1199/2025', 'CD-expdte Gestiona 20260414.xlsx', 700)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1881, '1881', '1201/2025', 'CD-expdte Gestiona 20260414.xlsx', 701)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1882, '1882', '1202/2025', 'CD-expdte Gestiona 20260414.xlsx', 702)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1883, '1883', '1203/2025', 'CD-expdte Gestiona 20260414.xlsx', 703)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1885, '1885', '1205/2025', 'CD-expdte Gestiona 20260414.xlsx', 704)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1886, '1886', '1206/2025', 'CD-expdte Gestiona 20260414.xlsx', 705)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1880, '1880', '1200/2025', 'CD-expdte Gestiona 20260414.xlsx', 706)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1884, '1884', '1204/2025', 'CD-expdte Gestiona 20260414.xlsx', 707)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1887, '1887', '1207/2025', 'CD-expdte Gestiona 20260414.xlsx', 708)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1888, '1888', '1208/2025', 'CD-expdte Gestiona 20260414.xlsx', 709)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1889, '1889', '1209/2025', 'CD-expdte Gestiona 20260414.xlsx', 710)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-305', '1179/2025', 'CD-expdte Gestiona 20260414.xlsx', 711)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1890, '1890', '1210/2025', 'CD-expdte Gestiona 20260414.xlsx', 712)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1892, '1892', '1212/2025', 'CD-expdte Gestiona 20260414.xlsx', 713)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-310', '1183/2025', 'CD-expdte Gestiona 20260414.xlsx', 714)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1891, '1891', '1211/2025', 'CD-expdte Gestiona 20260414.xlsx', 715)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1894, '1894', '1214/2025', 'CD-expdte Gestiona 20260414.xlsx', 716)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1895, '1895', '1215/2025', 'CD-expdte Gestiona 20260414.xlsx', 717)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1896, '1896', '1216/2025', 'CD-expdte Gestiona 20260414.xlsx', 718)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1893, '1893', '1213/2025', 'CD-expdte Gestiona 20260414.xlsx', 719)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1897, '1897', '1217/2025', 'CD-expdte Gestiona 20260414.xlsx', 720)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1898, '1898', '1218/2025', 'CD-expdte Gestiona 20260414.xlsx', 721)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1899, '1899', '1219/2025', 'CD-expdte Gestiona 20260414.xlsx', 722)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1900, '1900', '1220/2025', 'CD-expdte Gestiona 20260414.xlsx', 723)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1901, '1901', '1221/2025', 'CD-expdte Gestiona 20260414.xlsx', 724)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1902, '1902', '1222/2025', 'CD-expdte Gestiona 20260414.xlsx', 725)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1903, '1903', '1223/2025', 'CD-expdte Gestiona 20260414.xlsx', 726)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1904, '1904', '1224/2025', 'CD-expdte Gestiona 20260414.xlsx', 727)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1905, '1905', '1227/2025', 'CD-expdte Gestiona 20260414.xlsx', 728)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1906, '1906', '1229/2025', 'CD-expdte Gestiona 20260414.xlsx', 729)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1907, '1907', '1230/2025', 'CD-expdte Gestiona 20260414.xlsx', 730)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-576', '1228/2025', 'CD-expdte Gestiona 20260414.xlsx', 731)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1909, '1909', '1233/2025', 'CD-expdte Gestiona 20260414.xlsx', 732)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1908, '1908', '1231/2025', 'CD-expdte Gestiona 20260414.xlsx', 733)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1910, '1910', '1234/2025', 'CD-expdte Gestiona 20260414.xlsx', 734)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1911, '1911', '1235/2025', 'CD-expdte Gestiona 20260414.xlsx', 735)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1912, '1912', '1236/2025', 'CD-expdte Gestiona 20260414.xlsx', 736)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-319', '1237/2025', 'CD-expdte Gestiona 20260414.xlsx', 737)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1913, '1913', '1240/2025', 'CD-expdte Gestiona 20260414.xlsx', 738)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1914, '1914', '1241/2025', 'CD-expdte Gestiona 20260414.xlsx', 739)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1915, '1915', '1242/2025', 'CD-expdte Gestiona 20260414.xlsx', 740)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1916, '1916', '1243/2025', 'CD-expdte Gestiona 20260414.xlsx', 741)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1917, '1917', '1245/2025', 'CD-expdte Gestiona 20260414.xlsx', 742)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1918, '1918', '1246/2025', 'CD-expdte Gestiona 20260414.xlsx', 743)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-321', '1244/2025', 'CD-expdte Gestiona 20260414.xlsx', 744)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1919, '1919', '1247/2025', 'CD-expdte Gestiona 20260414.xlsx', 745)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1920, '1920', '1248/2025', 'CD-expdte Gestiona 20260414.xlsx', 746)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1921, '1921', '1249/2025', 'CD-expdte Gestiona 20260414.xlsx', 747)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-320', '1239/2025', 'CD-expdte Gestiona 20260414.xlsx', 748)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1922, '1922', '1250/2025', 'CD-expdte Gestiona 20260414.xlsx', 749)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1924, '1924', '1252/2025', 'CD-expdte Gestiona 20260414.xlsx', 750)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1923, '1923', '1251/2025', 'CD-expdte Gestiona 20260414.xlsx', 751)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1925, '1925', '1253/2025', 'CD-expdte Gestiona 20260414.xlsx', 752)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1927, '1927', '1255/2025', 'CD-expdte Gestiona 20260414.xlsx', 753)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1928, '1928', '1259/2025', 'CD-expdte Gestiona 20260414.xlsx', 754)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1926, '1926', '1254/2025', 'CD-expdte Gestiona 20260414.xlsx', 755)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-328', '1256/2025', 'CD-expdte Gestiona 20260414.xlsx', 756)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-329', '1258/2025', 'CD-expdte Gestiona 20260414.xlsx', 757)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1929, '1929', '1260/2025', 'CD-expdte Gestiona 20260414.xlsx', 758)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1930, '1930', '1261/2025', 'CD-expdte Gestiona 20260414.xlsx', 759)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1932, '1932', '1263/2025', 'CD-expdte Gestiona 20260414.xlsx', 760)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1931, '1931', '1262/2025', 'CD-expdte Gestiona 20260414.xlsx', 761)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1933, '1933', '1264/2025', 'CD-expdte Gestiona 20260414.xlsx', 762)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1934, '1934', '1265/2025', 'CD-expdte Gestiona 20260414.xlsx', 763)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1935, '1935', '1266/2025', 'CD-expdte Gestiona 20260414.xlsx', 764)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1936, '1936', '1267/2025', 'CD-expdte Gestiona 20260414.xlsx', 765)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1938, '1938', '1269/2025', 'CD-expdte Gestiona 20260414.xlsx', 766)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1937, '1937', '1268/2025', 'CD-expdte Gestiona 20260414.xlsx', 767)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1939, '1939', '1270/2025', 'CD-expdte Gestiona 20260414.xlsx', 768)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1940, '1940', '1271/2025', 'CD-expdte Gestiona 20260414.xlsx', 769)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1941, '1941', '1272/2025', 'CD-expdte Gestiona 20260414.xlsx', 770)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1942, '1942', '1273/2025', 'CD-expdte Gestiona 20260414.xlsx', 771)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1943, '1943', '1274/2025', 'CD-expdte Gestiona 20260414.xlsx', 772)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1944, '1944', '1279/2025', 'CD-expdte Gestiona 20260414.xlsx', 773)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1945, '1945', '1275/2025', 'CD-expdte Gestiona 20260414.xlsx', 774)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1946, '1946', '1276/2025', 'CD-expdte Gestiona 20260414.xlsx', 775)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1947, '1947', '1277/2025', 'CD-expdte Gestiona 20260414.xlsx', 776)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1948, '1948', '1286/2025', 'CD-expdte Gestiona 20260414.xlsx', 777)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1949, '1949', '1285/2025', 'CD-expdte Gestiona 20260414.xlsx', 778)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1950, '1950', '1280/2025', 'CD-expdte Gestiona 20260414.xlsx', 779)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-338', '1288/2025', 'CD-expdte Gestiona 20260414.xlsx', 780)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1954, '1954', '1291/2025', 'CD-expdte Gestiona 20260414.xlsx', 782)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1952, '1952', '1289/2025', 'CD-expdte Gestiona 20260414.xlsx', 783)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1953, '1953', '1290/2025', 'CD-expdte Gestiona 20260414.xlsx', 784)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1954, '1954', '1292/2025', 'CD-expdte Gestiona 20260414.xlsx', 785)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1955, '1955', '1293/2025', 'CD-expdte Gestiona 20260414.xlsx', 786)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1956, '1956', '1294/2025', 'CD-expdte Gestiona 20260414.xlsx', 787)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1957, '1957', '1295/2025', 'CD-expdte Gestiona 20260414.xlsx', 788)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1959, '1959', '1298/2025', 'CD-expdte Gestiona 20260414.xlsx', 789)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-339', '1296/2025', 'CD-expdte Gestiona 20260414.xlsx', 790)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-341', '1300/2025', 'CD-expdte Gestiona 20260414.xlsx', 794)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1960, '1960', '1301/2025', 'CD-expdte Gestiona 20260414.xlsx', 795)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-340', '1299/2025', 'CD-expdte Gestiona 20260414.xlsx', 796)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1969, '1969', '1310/2025', 'CD-expdte Gestiona 20260414.xlsx', 800)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1968, '1968', '1309/2025', 'CD-expdte Gestiona 20260414.xlsx', 801)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1969, '1969', '1307/2025', 'CD-expdte Gestiona 20260414.xlsx', 802)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1972, '1972', '1315/2025', 'CD-expdte Gestiona 20260414.xlsx', 803)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1971, '1971', '1314/2025', 'CD-expdte Gestiona 20260414.xlsx', 804)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1973, '1973', '1316/2025', 'CD-expdte Gestiona 20260414.xlsx', 805)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1970, '1970', '1313/2025', 'CD-expdte Gestiona 20260414.xlsx', 806)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-343', '1312/2025', 'CD-expdte Gestiona 20260414.xlsx', 807)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1974, '1974', '1317/2025', 'CD-expdte Gestiona 20260414.xlsx', 808)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1975, '1975', '1336/2025', 'CD-expdte Gestiona 20260414.xlsx', 809)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1976, '1976', '1337/2025', 'CD-expdte Gestiona 20260414.xlsx', 810)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1977, '1977', '1338/2025', 'CD-expdte Gestiona 20260414.xlsx', 811)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-347', '1319/2025', 'CD-expdte Gestiona 20260414.xlsx', 812)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1978, '1978', '1339/2025', 'CD-expdte Gestiona 20260414.xlsx', 813)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1981, '1981', '1342/2025', 'CD-expdte Gestiona 20260414.xlsx', 814)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-349', '1321/2025', 'CD-expdte Gestiona 20260414.xlsx', 815)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1979, '1979', '1340/2025', 'CD-expdte Gestiona 20260414.xlsx', 816)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1980, '1980', '1341/2025', 'CD-expdte Gestiona 20260414.xlsx', 817)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1983, '1983', '1344/2025', 'CD-expdte Gestiona 20260414.xlsx', 818)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-351', '1327/2025', 'CD-expdte Gestiona 20260414.xlsx', 819)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1982, '1982', '1343/2025', 'CD-expdte Gestiona 20260414.xlsx', 820)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1984, '1984', '1345/2025', 'CD-expdte Gestiona 20260414.xlsx', 821)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1986, '1986', '1346/2025', 'CD-expdte Gestiona 20260414.xlsx', 822)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1985, '1985', '1347/2025', 'CD-expdte Gestiona 20260414.xlsx', 823)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1987, '1987', '1348/2025', 'CD-expdte Gestiona 20260414.xlsx', 824)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1989, '1989', '1350/2025', 'CD-expdte Gestiona 20260414.xlsx', 825)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1988, '1988', '1349/2025', 'CD-expdte Gestiona 20260414.xlsx', 826)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1990, '1990', '1351/2025', 'CD-expdte Gestiona 20260414.xlsx', 827)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1991, '1991', '1352/2025', 'CD-expdte Gestiona 20260414.xlsx', 828)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1992, '1992', '1353/2025', 'CD-expdte Gestiona 20260414.xlsx', 829)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1994, '1994', '1357/2025', 'CD-expdte Gestiona 20260414.xlsx', 830)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1993, '1993', '1354/2025', 'CD-expdte Gestiona 20260414.xlsx', 831)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1995, '1995', '1358/2025', 'CD-expdte Gestiona 20260414.xlsx', 832)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1998, '1998', '1364/2025', 'CD-expdte Gestiona 20260414.xlsx', 833)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2002, '2002', '1368/2025', 'CD-expdte Gestiona 20260414.xlsx', 834)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-357', '1359/2025', 'CD-expdte Gestiona 20260414.xlsx', 835)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2000, '2000', '1366/2025', 'CD-expdte Gestiona 20260414.xlsx', 836)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1996, '1996', '1360/2025', 'CD-expdte Gestiona 20260414.xlsx', 837)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1997, '1997', '1361/2025', 'CD-expdte Gestiona 20260414.xlsx', 838)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-361', '1362/2025', 'CD-expdte Gestiona 20260414.xlsx', 839)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (1999, '1999', '1365/2025', 'CD-expdte Gestiona 20260414.xlsx', 840)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2001, '2001', '1367/2025', 'CD-expdte Gestiona 20260414.xlsx', 841)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2003, '2003', '1369/2025', 'CD-expdte Gestiona 20260414.xlsx', 842)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2004, '2004', '1370/2025', 'CD-expdte Gestiona 20260414.xlsx', 843)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2007, '2007', '1384/2025', 'CD-expdte Gestiona 20260414.xlsx', 844)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2005, '2005', '1380/2025', 'CD-expdte Gestiona 20260414.xlsx', 845)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2006, '2006', '1383/2025', 'CD-expdte Gestiona 20260414.xlsx', 846)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2009, '2009', '1386/2025', 'CD-expdte Gestiona 20260414.xlsx', 847)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2008, '2008', '1385/2025', 'CD-expdte Gestiona 20260414.xlsx', 848)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2010, '2010', '1387/2025', 'CD-expdte Gestiona 20260414.xlsx', 849)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2011, '2011', '1388/2025', 'CD-expdte Gestiona 20260414.xlsx', 850)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2012, '2012', '1389/2025', 'CD-expdte Gestiona 20260414.xlsx', 851)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2013, '2013', '1394/2025', 'CD-expdte Gestiona 20260414.xlsx', 852)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2014, '2014', '1396/2025', 'CD-expdte Gestiona 20260414.xlsx', 853)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2015, '2015', '1397/2025', 'CD-expdte Gestiona 20260414.xlsx', 854)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-381', '1395/2025', 'CD-expdte Gestiona 20260414.xlsx', 855)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2016, '2016', '1402/2025', 'CD-expdte Gestiona 20260414.xlsx', 856)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-384', '1404/2025', 'CD-expdte Gestiona 20260414.xlsx', 858)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-385', '1407/2025', 'CD-expdte Gestiona 20260414.xlsx', 859)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2018, '2018', '1409/2025', 'CD-expdte Gestiona 20260414.xlsx', 860)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2020, '2020', '1411/2025', 'CD-expdte Gestiona 20260414.xlsx', 861)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2021, '2021', '1412/2025', 'CD-expdte Gestiona 20260414.xlsx', 862)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2023, '2023', '1414/2025', 'CD-expdte Gestiona 20260414.xlsx', 863)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2019, '2019', '1410/2025', 'CD-expdte Gestiona 20260414.xlsx', 864)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2022, '2022', '1413/2025', 'CD-expdte Gestiona 20260414.xlsx', 865)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2024, '2024', '1415/2025', 'CD-expdte Gestiona 20260414.xlsx', 866)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2025, '2025', '1426/2025', 'CD-expdte Gestiona 20260414.xlsx', 867)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2026, '2026', '1427/2025', 'CD-expdte Gestiona 20260414.xlsx', 868)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2027, '2027', '1428/2025', 'CD-expdte Gestiona 20260414.xlsx', 869)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2028, '2028', '1429/2025', 'CD-expdte Gestiona 20260414.xlsx', 870)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2029, '2029', '1430/2025', 'CD-expdte Gestiona 20260414.xlsx', 871)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2030, '2030', '1431/2025', 'CD-expdte Gestiona 20260414.xlsx', 872)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2032, '2032', '1439/2025', 'CD-expdte Gestiona 20260414.xlsx', 873)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2031, '2031', '1438/2025', 'CD-expdte Gestiona 20260414.xlsx', 874)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2034, '2034', '1445/2025', 'CD-expdte Gestiona 20260414.xlsx', 875)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-387', '1441/2025', 'CD-expdte Gestiona 20260414.xlsx', 876)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (446, '446', '1443/2025', 'CD-expdte Gestiona 20260414.xlsx', 877)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2033, '2033', '1444/2025', 'CD-expdte Gestiona 20260414.xlsx', 878)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2035, '2035', '1446/2025', 'CD-expdte Gestiona 20260414.xlsx', 879)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2036, '2036', '1452/2025', 'CD-expdte Gestiona 20260414.xlsx', 880)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-678', '1455/2025', 'CD-expdte Gestiona 20260414.xlsx', 881)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2038, '2038', '1459/2025', 'CD-expdte Gestiona 20260414.xlsx', 882)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2040, '2040', '1465/2025', 'CD-expdte Gestiona 20260414.xlsx', 883)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-393', '1457/2025', 'CD-expdte Gestiona 20260414.xlsx', 884)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2037, '2037', '1458/2025', 'CD-expdte Gestiona 20260414.xlsx', 885)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2039, '2039', '1464/2025', 'CD-expdte Gestiona 20260414.xlsx', 886)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2041, '2041', '1466/2025', 'CD-expdte Gestiona 20260414.xlsx', 887)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2042, '2042', '1467/2025', 'CD-expdte Gestiona 20260414.xlsx', 888)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2046, '2046', '1474/2025', 'CD-expdte Gestiona 20260414.xlsx', 889)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2043, '2043', '1469/2025', 'CD-expdte Gestiona 20260414.xlsx', 890)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2044, '2044', '1472/2025', 'CD-expdte Gestiona 20260414.xlsx', 891)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2045, '2045', '1473/2025', 'CD-expdte Gestiona 20260414.xlsx', 892)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2047, '2047', '1475/2025', 'CD-expdte Gestiona 20260414.xlsx', 893)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2050, '2050', '1478/2025', 'CD-expdte Gestiona 20260414.xlsx', 894)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2051, '2051', '1479/2025', 'CD-expdte Gestiona 20260414.xlsx', 895)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2048, '2048', '1476/2025', 'CD-expdte Gestiona 20260414.xlsx', 896)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2049, '2049', '1477/2025', 'CD-expdte Gestiona 20260414.xlsx', 897)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2052, '2052', '1480/2025', 'CD-expdte Gestiona 20260414.xlsx', 898)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2053, '2053', '1486/2025', 'CD-expdte Gestiona 20260414.xlsx', 899)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2054, '2054', '1487/2025', 'CD-expdte Gestiona 20260414.xlsx', 900)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2055, '2055', '1488/2025', 'CD-expdte Gestiona 20260414.xlsx', 901)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-396', '1493/2025', 'CD-expdte Gestiona 20260414.xlsx', 902)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2058, '2058', '1498/2025', 'CD-expdte Gestiona 20260414.xlsx', 903)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2056, '2056', '1489/2025', 'CD-expdte Gestiona 20260414.xlsx', 904)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-397', '1492/2025', 'CD-expdte Gestiona 20260414.xlsx', 905)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-398', '1494/2025', 'CD-expdte Gestiona 20260414.xlsx', 906)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-399', '1495/2025', 'CD-expdte Gestiona 20260414.xlsx', 907)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2057, '2057', '1497/2025', 'CD-expdte Gestiona 20260414.xlsx', 908)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2059, '2059', '1500/2025', 'CD-expdte Gestiona 20260414.xlsx', 909)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2060, '2060', '1501/2025', 'CD-expdte Gestiona 20260414.xlsx', 910)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2062, '2062', '1506/2025', 'CD-expdte Gestiona 20260414.xlsx', 911)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2061, '2061', '1505/2025', 'CD-expdte Gestiona 20260414.xlsx', 912)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2063, '2063', '1507/2025', 'CD-expdte Gestiona 20260414.xlsx', 913)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2067, '2067', '1513/2025', 'CD-expdte Gestiona 20260414.xlsx', 914)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2064, '2064', '1510/2025', 'CD-expdte Gestiona 20260414.xlsx', 915)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2065, '2065', '1511/2025', 'CD-expdte Gestiona 20260414.xlsx', 916)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2066, '2066', '1512/2025', 'CD-expdte Gestiona 20260414.xlsx', 917)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2069, '2069', '1515/2025', 'CD-expdte Gestiona 20260414.xlsx', 918)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2068, '2068', '1514/2025', 'CD-expdte Gestiona 20260414.xlsx', 919)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2070, '2070', '1517/2025', 'CD-expdte Gestiona 20260414.xlsx', 920)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2071, '2071', '1518/2025', 'CD-expdte Gestiona 20260414.xlsx', 921)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2072, '2072', '1519/2025', 'CD-expdte Gestiona 20260414.xlsx', 922)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2073, '2073', '1520/2025', 'CD-expdte Gestiona 20260414.xlsx', 923)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2074, '2074', '1532/2025', 'CD-expdte Gestiona 20260414.xlsx', 924)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2075, '2075', '1533/2025', 'CD-expdte Gestiona 20260414.xlsx', 925)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2076, '2076', '1534/2025', 'CD-expdte Gestiona 20260414.xlsx', 926)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2077, '2077', '1535/2025', 'CD-expdte Gestiona 20260414.xlsx', 927)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2078, '2078', '1536/2025', 'CD-expdte Gestiona 20260414.xlsx', 928)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2079, '2079', '1537/2025', 'CD-expdte Gestiona 20260414.xlsx', 929)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2080, '2080', '1538/2025', 'CD-expdte Gestiona 20260414.xlsx', 930)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2081, '2081', '1541/2025', 'CD-expdte Gestiona 20260414.xlsx', 931)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2084, '2084', '1545/2025', 'CD-expdte Gestiona 20260414.xlsx', 932)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2085, '2085', '1546/2025', 'CD-expdte Gestiona 20260414.xlsx', 933)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2086, '2086', '1547/2025', 'CD-expdte Gestiona 20260414.xlsx', 934)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2087, '2087', '1548/2025', 'CD-expdte Gestiona 20260414.xlsx', 935)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2082, '2082', '1543/2025', 'CD-expdte Gestiona 20260414.xlsx', 936)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-413', '1549/2025', 'CD-expdte Gestiona 20260414.xlsx', 937)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-734', '1553/2025', 'CD-expdte Gestiona 20260414.xlsx', 938)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2083, '2083', '1544/2025', 'CD-expdte Gestiona 20260414.xlsx', 939)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2092, '2092', '1558/2025', 'CD-expdte Gestiona 20260414.xlsx', 940)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2091, '2091', '1557/2025', 'CD-expdte Gestiona 20260414.xlsx', 941)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2088, '2088', '1554/2025', 'CD-expdte Gestiona 20260414.xlsx', 942)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2089, '2089', '1555/2025', 'CD-expdte Gestiona 20260414.xlsx', 943)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2090, '2090', '1556/2025', 'CD-expdte Gestiona 20260414.xlsx', 944)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2093, '2093', '1559/2025', 'CD-expdte Gestiona 20260414.xlsx', 945)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2094, '2094', '1560/2025', 'CD-expdte Gestiona 20260414.xlsx', 946)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2098, '2098', '1567/2025', 'CD-expdte Gestiona 20260414.xlsx', 947)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-422', '1579/2025', 'CD-expdte Gestiona 20260414.xlsx', 948)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-415', '1563/2025', 'CD-expdte Gestiona 20260414.xlsx', 949)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2095, '2095', '1564//2025', 'CD-expdte Gestiona 20260414.xlsx', 950)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2096, '2096', '1565/2025', 'CD-expdte Gestiona 20260414.xlsx', 951)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2097, '2097', '1566/2025', 'CD-expdte Gestiona 20260414.xlsx', 952)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2101, '2101', '1580/2025', 'CD-expdte Gestiona 20260414.xlsx', 953)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2105, '2105', '1584/2025', 'CD-expdte Gestiona 20260414.xlsx', 954)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2099, '2099', '1573/2025', 'CD-expdte Gestiona 20260414.xlsx', 955)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2103, '2103', '1582/2025', 'CD-expdte Gestiona 20260414.xlsx', 956)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2104, '2104', '1583/2025', 'CD-expdte Gestiona 20260414.xlsx', 957)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2102, '2102', '1581/2025', 'CD-expdte Gestiona 20260414.xlsx', 958)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2100, '2100', '1574/2025', 'CD-expdte Gestiona 20260414.xlsx', 959)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2106, '2106', '1585/2025', 'CD-expdte Gestiona 20260414.xlsx', 960)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2107, '2107', '1586/2025', 'CD-expdte Gestiona 20260414.xlsx', 961)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2108, '2108', '1587/2025', 'CD-expdte Gestiona 20260414.xlsx', 962)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2109, '2109', '1588/2025', 'CD-expdte Gestiona 20260414.xlsx', 963)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2110, '2110', '1595/2025', 'CD-expdte Gestiona 20260414.xlsx', 964)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC -423', '1589/2025', 'CD-expdte Gestiona 20260414.xlsx', 965)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC - 425', '1591/2025', 'CD-expdte Gestiona 20260414.xlsx', 966)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-439', '1610/2025', 'CD-expdte Gestiona 20260414.xlsx', 967)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2111, '2111', '1596/2025', 'CD-expdte Gestiona 20260414.xlsx', 968)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-435', '1600/2025', 'CD-expdte Gestiona 20260414.xlsx', 969)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2112, '2112', '1604/2025', 'CD-expdte Gestiona 20260414.xlsx', 970)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2113, '2113', '1605/2025', 'CD-expdte Gestiona 20260414.xlsx', 971)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2115, '2115', '1607/2025', 'CD-expdte Gestiona 20260414.xlsx', 972)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2114, '2114', '1606/2025', 'CD-expdte Gestiona 20260414.xlsx', 973)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-440', '1612/2025', 'CD-expdte Gestiona 20260414.xlsx', 974)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2116, '2116', '1615/2025', 'CD-expdte Gestiona 20260414.xlsx', 975)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2117, '2117', '1618/2025', 'CD-expdte Gestiona 20260414.xlsx', 976)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-443', '1620/2025', 'CD-expdte Gestiona 20260414.xlsx', 977)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2118, '2118', '1622/2025', 'CD-expdte Gestiona 20260414.xlsx', 978)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2119, '2119', '1623/2025', 'CD-expdte Gestiona 20260414.xlsx', 979)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2120, '2120', '1629/2025', 'CD-expdte Gestiona 20260414.xlsx', 980)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2121, '2121', '1630/2025', 'CD-expdte Gestiona 20260414.xlsx', 981)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2122, '2122', '1631/2025', 'CD-expdte Gestiona 20260414.xlsx', 982)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2123, '2123', '1635/2025', 'CD-expdte Gestiona 20260414.xlsx', 983)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2124, '2124', '1637/2025', 'CD-expdte Gestiona 20260414.xlsx', 984)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2125, '2125', '1638/2025', 'CD-expdte Gestiona 20260414.xlsx', 985)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-447', '1643/2025', 'CD-expdte Gestiona 20260414.xlsx', 986)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-450', '1646/2025', 'CD-expdte Gestiona 20260414.xlsx', 987)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2127, '2127', '1648/2025', 'CD-expdte Gestiona 20260414.xlsx', 988)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2128, '2128', '1649/2025', 'CD-expdte Gestiona 20260414.xlsx', 989)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-452', '1653/2025', 'CD-expdte Gestiona 20260414.xlsx', 990)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2129, '2129', '1654/2025', 'CD-expdte Gestiona 20260414.xlsx', 991)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2130, '2130', '1655/2025', 'CD-expdte Gestiona 20260414.xlsx', 992)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2132, '2132', '1660/2025', 'CD-expdte Gestiona 20260414.xlsx', 993)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2135, '2135', '1666/2025', 'CD-expdte Gestiona 20260414.xlsx', 994)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2131, '2131', '1657/2025', 'CD-expdte Gestiona 20260414.xlsx', 995)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2133, '2133', '1661/2025', 'CD-expdte Gestiona 20260414.xlsx', 996)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2134, '2134', '1662/2025', 'CD-expdte Gestiona 20260414.xlsx', 997)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-819', '1669/2025', 'CD-expdte Gestiona 20260414.xlsx', 998)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2139, '2139', '1674/2025', 'CD-expdte Gestiona 20260414.xlsx', 999)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2140, '2140', '1675/2025', 'CD-expdte Gestiona 20260414.xlsx', 1000)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-306', '1670/2025', 'CD-expdte Gestiona 20260414.xlsx', 1001)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2138, '2138', '1673/2025', 'CD-expdte Gestiona 20260414.xlsx', 1002)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2137, '2137', '1672/2025', 'CD-expdte Gestiona 20260414.xlsx', 1003)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2136, '2136', '1636/2025', 'CD-expdte Gestiona 20260414.xlsx', 1004)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2141, '2141', '1676/2025', 'CD-expdte Gestiona 20260414.xlsx', 1005)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2142, '2142', '1678/2025', 'CD-expdte Gestiona 20260414.xlsx', 1006)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2143, '2143', '1682/2025', 'CD-expdte Gestiona 20260414.xlsx', 1007)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2144, '2144', '1683/2025', 'CD-expdte Gestiona 20260414.xlsx', 1008)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2145, '2145', '1684/2025', 'CD-expdte Gestiona 20260414.xlsx', 1009)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2146, '2146', '1685/2025', 'CD-expdte Gestiona 20260414.xlsx', 1010)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2147, '2147', '1688/2025', 'CD-expdte Gestiona 20260414.xlsx', 1011)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2148, '2148', '1689/2025', 'CD-expdte Gestiona 20260414.xlsx', 1012)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2151, '2151', '1694/2025', 'CD-expdte Gestiona 20260414.xlsx', 1013)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-809', '1687/2025', 'CD-expdte Gestiona 20260414.xlsx', 1014)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2149, '2149', '1692/2025', 'CD-expdte Gestiona 20260414.xlsx', 1015)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2150, '2150', '1693/2025', 'CD-expdte Gestiona 20260414.xlsx', 1016)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2152, '2152', '1695/2025', 'CD-expdte Gestiona 20260414.xlsx', 1017)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-468', '1699/2025', 'CD-expdte Gestiona 20260414.xlsx', 1018)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2155, '2155', '1702/2025', 'CD-expdte Gestiona 20260414.xlsx', 1019)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2156, '2156', '1703/2025', 'CD-expdte Gestiona 20260414.xlsx', 1020)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-466', '1696/2025', 'CD-expdte Gestiona 20260414.xlsx', 1021)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2153, '2153', '1700/2025', 'CD-expdte Gestiona 20260414.xlsx', 1022)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2154, '2154', '1701/2025', 'CD-expdte Gestiona 20260414.xlsx', 1023)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2157, '2157', '1704/2025', 'CD-expdte Gestiona 20260414.xlsx', 1024)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-470', '1706/2025', 'CD-expdte Gestiona 20260414.xlsx', 1025)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2159, '2159', '1712/2025', 'CD-expdte Gestiona 20260414.xlsx', 1026)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2158, '2158', '1705/2025', 'CD-expdte Gestiona 20260414.xlsx', 1027)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2160, '2160', '1713/2025', 'CD-expdte Gestiona 20260414.xlsx', 1028)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2165, '2165', '1719/2025', 'CD-expdte Gestiona 20260414.xlsx', 1029)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2163, '2163', '1717/2025', 'CD-expdte Gestiona 20260414.xlsx', 1030)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2164, '2164', '1718/2025', 'CD-expdte Gestiona 20260414.xlsx', 1031)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2161, '2161', '1714/2025', 'CD-expdte Gestiona 20260414.xlsx', 1032)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2162, '2162', '1715/2025', 'CD-expdte Gestiona 20260414.xlsx', 1033)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2167, '2167', '1725/2025', 'CD-expdte Gestiona 20260414.xlsx', 1034)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2168, '2168', '1726/2025', 'CD-expdte Gestiona 20260414.xlsx', 1035)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2166, '2166', '1724/2025', 'CD-expdte Gestiona 20260414.xlsx', 1036)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2170, '2170', '1722/2025', 'CD-expdte Gestiona 20260414.xlsx', 1037)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-879', '1763/2025', 'CD-expdte Gestiona 20260414.xlsx', 1038)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2169, '2169', '1721/2025', 'CD-expdte Gestiona 20260414.xlsx', 1039)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2171, '2171', '1723/2025', 'CD-expdte Gestiona 20260414.xlsx', 1040)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2172, '2172', '1727/2025', 'CD-expdte Gestiona 20260414.xlsx', 1041)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2173, '2173', '1728/2025', 'CD-expdte Gestiona 20260414.xlsx', 1042)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2175, '2175', '1730/2025', 'CD-expdte Gestiona 20260414.xlsx', 1043)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2177, '2177', '1732/2025', 'CD-expdte Gestiona 20260414.xlsx', 1044)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2174, '2174', '1729/2025', 'CD-expdte Gestiona 20260414.xlsx', 1045)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2176, '2176', '1731/2025', 'CD-expdte Gestiona 20260414.xlsx', 1046)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2180, '2180', '1737/2025', 'CD-expdte Gestiona 20260414.xlsx', 1047)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2179, '2179', '1736/2025', 'CD-expdte Gestiona 20260414.xlsx', 1048)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2178, '2178', '1735/2025', 'CD-expdte Gestiona 20260414.xlsx', 1049)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2182, '2182', '1739/2025', 'CD-expdte Gestiona 20260414.xlsx', 1050)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2183, '2183', '1746/2025', 'CD-expdte Gestiona 20260414.xlsx', 1051)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2181, '2181', '1738/2025', 'CD-expdte Gestiona 20260414.xlsx', 1052)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-474', '1741/2025', 'CD-expdte Gestiona 20260414.xlsx', 1053)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-477', '1742/2025', 'CD-expdte Gestiona 20260414.xlsx', 1054)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2184, '2184', '1747/2025', 'CD-expdte Gestiona 20260414.xlsx', 1055)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2185, '2185', '1748/2025', 'CD-expdte Gestiona 20260414.xlsx', 1056)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2188, '2188', '1751/2025', 'CD-expdte Gestiona 20260414.xlsx', 1057)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2190, '2190', '1756/2025', 'CD-expdte Gestiona 20260414.xlsx', 1058)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2186, '2186', '1749/2025', 'CD-expdte Gestiona 20260414.xlsx', 1059)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2189, '2189', '1752/2025', 'CD-expdte Gestiona 20260414.xlsx', 1060)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2187, '2187', '1750/2025', 'CD-expdte Gestiona 20260414.xlsx', 1061)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2192, '2192', '1758/2025', 'CD-expdte Gestiona 20260414.xlsx', 1062)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2193, '2193', '1759/2025', 'CD-expdte Gestiona 20260414.xlsx', 1063)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2191, '2191', '1757/2025', 'CD-expdte Gestiona 20260414.xlsx', 1064)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2194, '2194', '1760/2025', 'CD-expdte Gestiona 20260414.xlsx', 1065)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2197, '2197', '1770/2025', 'CD-expdte Gestiona 20260414.xlsx', 1066)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2196, '2196', '1762/2025', 'CD-expdte Gestiona 20260414.xlsx', 1067)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2195, '2195', '1761/2025', 'CD-expdte Gestiona 20260414.xlsx', 1068)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2198, '2198', '1771/2025', 'CD-expdte Gestiona 20260414.xlsx', 1069)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2202, '2202', '1775/2025', 'CD-expdte Gestiona 20260414.xlsx', 1070)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2199, '2199', '1772/2025', 'CD-expdte Gestiona 20260414.xlsx', 1071)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2200, '2200', '1773/2025', 'CD-expdte Gestiona 20260414.xlsx', 1072)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2201, '2201', '1774/2025', 'CD-expdte Gestiona 20260414.xlsx', 1073)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2203, '2203', '1776/2025', 'CD-expdte Gestiona 20260414.xlsx', 1074)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2204, '2204', '1777/2025', 'CD-expdte Gestiona 20260414.xlsx', 1075)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2205, '2205', '1778/2025', 'CD-expdte Gestiona 20260414.xlsx', 1076)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2207, '2207', '1780/2025', 'CD-expdte Gestiona 20260414.xlsx', 1077)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2206, '2206', '1779/2025', 'CD-expdte Gestiona 20260414.xlsx', 1078)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2208, '2208', '1781/2025', 'CD-expdte Gestiona 20260414.xlsx', 1079)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2209, '2209', '1782/2025', 'CD-expdte Gestiona 20260414.xlsx', 1080)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-486', '1769/2025', 'CD-expdte Gestiona 20260414.xlsx', 1081)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-475', '1783/2025', 'CD-expdte Gestiona 20260414.xlsx', 1082)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-484', '1768/2025', 'CD-expdte Gestiona 20260414.xlsx', 1083)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-487', '1784/2025', 'CD-expdte Gestiona 20260414.xlsx', 1084)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2210, '2210', '1786/2025', 'CD-expdte Gestiona 20260414.xlsx', 1085)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-901', '1785/2025', 'CD-expdte Gestiona 20260414.xlsx', 1086)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2212, '2212', '1788/2025', 'CD-expdte Gestiona 20260414.xlsx', 1087)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2211, '2211', '1787/2025', 'CD-expdte Gestiona 20260414.xlsx', 1088)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2213, '2213', '1797/2025', 'CD-expdte Gestiona 20260414.xlsx', 1089)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2214, '2214', '1798/2025', 'CD-expdte Gestiona 20260414.xlsx', 1090)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2215, '2215', '1799//2025', 'CD-expdte Gestiona 20260414.xlsx', 1091)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2216, '2216', '1800/2025', 'CD-expdte Gestiona 20260414.xlsx', 1092)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2217, '2217', '1801/2025', 'CD-expdte Gestiona 20260414.xlsx', 1093)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2218, '2218', '1805/2025', 'CD-expdte Gestiona 20260414.xlsx', 1094)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2221, '2221', '1815/2025', 'CD-expdte Gestiona 20260414.xlsx', 1095)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2219, '2219', '1813/2025', 'CD-expdte Gestiona 20260414.xlsx', 1096)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2220, '2220', '1814/2025', 'CD-expdte Gestiona 20260414.xlsx', 1097)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-491', '1812/2025', 'CD-expdte Gestiona 20260414.xlsx', 1098)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2222, '2222', '1816/2025', 'CD-expdte Gestiona 20260414.xlsx', 1099)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2223, '2223', '1817/2025', 'CD-expdte Gestiona 20260414.xlsx', 1100)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2225, '2225', '1821/2025', 'CD-expdte Gestiona 20260414.xlsx', 1101)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2224, '2224', '1820/2025', 'CD-expdte Gestiona 20260414.xlsx', 1102)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2227, '2227', '1824/2025', 'CD-expdte Gestiona 20260414.xlsx', 1103)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2226, '2226', '1822/2025', 'CD-expdte Gestiona 20260414.xlsx', 1104)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2228, '2228', '1825/2025', 'CD-expdte Gestiona 20260414.xlsx', 1105)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2229, '2229', '1826/2025', 'CD-expdte Gestiona 20260414.xlsx', 1106)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-501', '1828/2025', 'CD-expdte Gestiona 20260414.xlsx', 1107)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2230, '2230', '1833/2025', 'CD-expdte Gestiona 20260414.xlsx', 1108)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2232, '2232', '1835/2025', 'CD-expdte Gestiona 20260414.xlsx', 1109)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-507', '1831/2025', 'CD-expdte Gestiona 20260414.xlsx', 1110)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2231, '2231', '1834/2025', 'CD-expdte Gestiona 20260414.xlsx', 1111)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2238, '2238', '1844/2025', 'CD-expdte Gestiona 20260414.xlsx', 1112)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2234, '2234', '1838/2025', 'CD-expdte Gestiona 20260414.xlsx', 1113)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2236, '2236', '1842/2025', 'CD-expdte Gestiona 20260414.xlsx', 1114)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2233, '2233', '1837/2025', 'CD-expdte Gestiona 20260414.xlsx', 1115)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2237, '2237', '1843/2025', 'CD-expdte Gestiona 20260414.xlsx', 1116)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2235, '2235', '1841/2025', 'CD-expdte Gestiona 20260414.xlsx', 1117)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2240, '2240', '1846/2025', 'CD-expdte Gestiona 20260414.xlsx', 1118)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2241, '2241', '1847/2025', 'CD-expdte Gestiona 20260414.xlsx', 1119)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2239, '2239', '1845/2025', 'CD-expdte Gestiona 20260414.xlsx', 1120)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2240, '2240', '1848/2025', 'CD-expdte Gestiona 20260414.xlsx', 1121)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2241, '2241', '1849/2025', 'CD-expdte Gestiona 20260414.xlsx', 1122)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2242, '2242', '1850/2025', 'CD-expdte Gestiona 20260414.xlsx', 1123)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2243, '2243', '1851/2025', 'CD-expdte Gestiona 20260414.xlsx', 1124)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2244, '2244', '1852/2025', 'CD-expdte Gestiona 20260414.xlsx', 1125)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2247, '2247', '1853/2025', 'CD-expdte Gestiona 20260414.xlsx', 1126)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2248, '2248', '1858/2025', 'CD-expdte Gestiona 20260414.xlsx', 1127)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2249, '2249', '1859/2025', 'CD-expdte Gestiona 20260414.xlsx', 1128)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2250, '2250', '1860/2025', 'CD-expdte Gestiona 20260414.xlsx', 1129)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2251, '2251', '1861/2025', 'CD-expdte Gestiona 20260414.xlsx', 1130)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2252, '2252', '1862/2025', 'CD-expdte Gestiona 20260414.xlsx', 1131)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2253, '2253', '1863/2025', 'CD-expdte Gestiona 20260414.xlsx', 1132)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2255, '2255', '1872/2025', 'CD-expdte Gestiona 20260414.xlsx', 1133)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2256, '2256', '1873/2025', 'CD-expdte Gestiona 20260414.xlsx', 1134)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-518', '1870/2025', 'CD-expdte Gestiona 20260414.xlsx', 1135)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2254, '2254', '1871/2025', 'CD-expdte Gestiona 20260414.xlsx', 1136)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2259, '2259', '1879/2025', 'CD-expdte Gestiona 20260414.xlsx', 1137)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2257, '2257', '1874/2025', 'CD-expdte Gestiona 20260414.xlsx', 1138)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2258, '2258', '1878/2025', 'CD-expdte Gestiona 20260414.xlsx', 1139)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2260, '2260', '1880/2025', 'CD-expdte Gestiona 20260414.xlsx', 1140)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2263, '2263', '1883/2025', 'CD-expdte Gestiona 20260414.xlsx', 1141)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2264, '2264', '1884/2025', 'CD-expdte Gestiona 20260414.xlsx', 1142)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2262, '2262', '1882/2025', 'CD-expdte Gestiona 20260414.xlsx', 1143)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2265, '2265', '1885/2025', 'CD-expdte Gestiona 20260414.xlsx', 1144)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2261, '2261', '1881/2025', 'CD-expdte Gestiona 20260414.xlsx', 1145)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2266, '2266', '1886/2025', 'CD-expdte Gestiona 20260414.xlsx', 1146)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2267, '2267', '1887/2025', 'CD-expdte Gestiona 20260414.xlsx', 1147)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2268, '2268', '1888/2025', 'CD-expdte Gestiona 20260414.xlsx', 1148)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2271, '2271', '1894/2025', 'CD-expdte Gestiona 20260414.xlsx', 1149)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2270, '2270', '1893/2025', 'CD-expdte Gestiona 20260414.xlsx', 1150)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2269, '2269', '1892/2025', 'CD-expdte Gestiona 20260414.xlsx', 1151)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2273, '2273', '1896/2025', 'CD-expdte Gestiona 20260414.xlsx', 1152)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2275, '2275', '1898/2025', 'CD-expdte Gestiona 20260414.xlsx', 1153)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2272, '2272', '1895/2025', 'CD-expdte Gestiona 20260414.xlsx', 1154)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2274, '2274', '1897/2025', 'CD-expdte Gestiona 20260414.xlsx', 1155)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2277, '2277', '1904/2025', 'CD-expdte Gestiona 20260414.xlsx', 1156)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2276, '2276', '1899/2025', 'CD-expdte Gestiona 20260414.xlsx', 1157)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2278, '2278', '1905/2025', 'CD-expdte Gestiona 20260414.xlsx', 1158)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2279, '2279', '1906/2025', 'CD-expdte Gestiona 20260414.xlsx', 1159)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2280, '2280', '1907/2025', 'CD-expdte Gestiona 20260414.xlsx', 1160)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2282, '2282', '1909/2025', 'CD-expdte Gestiona 20260414.xlsx', 1161)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2281, '2281', '1908/2025', 'CD-expdte Gestiona 20260414.xlsx', 1162)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2283, '2283', '1916/2025', 'CD-expdte Gestiona 20260414.xlsx', 1163)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2284, '2284', '1917/2025', 'CD-expdte Gestiona 20260414.xlsx', 1164)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2285, '2285', '1918/2025', 'CD-expdte Gestiona 20260414.xlsx', 1165)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2286, '2286', '1919/2025', 'CD-expdte Gestiona 20260414.xlsx', 1166)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2289, '2289', '1926/2025', 'CD-expdte Gestiona 20260414.xlsx', 1167)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-534', '1921/2025', 'CD-expdte Gestiona 20260414.xlsx', 1168)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-635', '1922/2025', 'CD-expdte Gestiona 20260414.xlsx', 1169)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2287, '2287', '1924/2025', 'CD-expdte Gestiona 20260414.xlsx', 1170)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2288, '2288', '1925/2025', 'CD-expdte Gestiona 20260414.xlsx', 1171)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-541', '1928/2025', 'CD-expdte Gestiona 20260414.xlsx', 1172)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-542', '1929/2025', 'CD-expdte Gestiona 20260414.xlsx', 1173)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2290, '2290', '1932/2025', 'CD-expdte Gestiona 20260414.xlsx', 1174)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2292, '2292', '1933/2025', 'CD-expdte Gestiona 20260414.xlsx', 1175)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2293, '2293', '1934/2025', 'CD-expdte Gestiona 20260414.xlsx', 1176)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2294, '2294', '1937/2025', 'CD-expdte Gestiona 20260414.xlsx', 1177)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-999', '1938/2025', 'CD-expdte Gestiona 20260414.xlsx', 1178)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-546', '1941/2025', 'CD-expdte Gestiona 20260414.xlsx', 1179)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2295, '2295', '0001/2026', 'CD-expdte Gestiona 20260414.xlsx', 1180)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2296, '2296', '0002/2026', 'CD-expdte Gestiona 20260414.xlsx', 1181)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2297, '2297', '0003/2026', 'CD-expdte Gestiona 20260414.xlsx', 1182)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2298, '2298', '0004/2026', 'CD-expdte Gestiona 20260414.xlsx', 1183)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2299, '2299', '0005/2026', 'CD-expdte Gestiona 20260414.xlsx', 1184)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2300, '2300', '0006/2026', 'CD-expdte Gestiona 20260414.xlsx', 1185)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2301, '2301', '0007/2026', 'CD-expdte Gestiona 20260414.xlsx', 1186)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2302, '2302', '0008/2026', 'CD-expdte Gestiona 20260414.xlsx', 1187)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2303, '2303', '0009/2026', 'CD-expdte Gestiona 20260414.xlsx', 1188)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2304, '2304', '0010/2026', 'CD-expdte Gestiona 20260414.xlsx', 1189)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2305, '2305', '0011/2026', 'CD-expdte Gestiona 20260414.xlsx', 1190)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2306, '2306', '0012/2026', 'CD-expdte Gestiona 20260414.xlsx', 1191)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2307, '2307', '0013/2026', 'CD-expdte Gestiona 20260414.xlsx', 1192)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2308, '2308', '0014/2026', 'CD-expdte Gestiona 20260414.xlsx', 1193)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2309, '2309', '0015/2026', 'CD-expdte Gestiona 20260414.xlsx', 1194)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2310, '2310', '0016/2026', 'CD-expdte Gestiona 20260414.xlsx', 1195)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2311, '2311', '0017/2026', 'CD-expdte Gestiona 20260414.xlsx', 1196)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2312, '2312', '0018/2026', 'CD-expdte Gestiona 20260414.xlsx', 1197)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2313, '2313', '0019/2026', 'CD-expdte Gestiona 20260414.xlsx', 1198)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2314, '2314', '0020/2026', 'CD-expdte Gestiona 20260414.xlsx', 1199)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2315, '2315', '0022/2026', 'CD-expdte Gestiona 20260414.xlsx', 1200)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2316, '2316', '0023/2026', 'CD-expdte Gestiona 20260414.xlsx', 1201)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2317, '2317', '0024/2026', 'CD-expdte Gestiona 20260414.xlsx', 1202)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2318, '2318', '0025/2026', 'CD-expdte Gestiona 20260414.xlsx', 1203)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2319, '2319', '0026/2026', 'CD-expdte Gestiona 20260414.xlsx', 1204)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2320, '2320', '0027/2026', 'CD-expdte Gestiona 20260414.xlsx', 1205)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2321, '2321', '0030/2026', 'CD-expdte Gestiona 20260414.xlsx', 1206)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2322, '2322', '0031/2026', 'CD-expdte Gestiona 20260414.xlsx', 1207)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2323, '2323', '0032/2026', 'CD-expdte Gestiona 20260414.xlsx', 1208)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-3', '0037/2026', 'CD-expdte Gestiona 20260414.xlsx', 1209)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-4', '0038/2026', 'CD-expdte Gestiona 20260414.xlsx', 1210)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2324, '2324', '0042/2026', 'CD-expdte Gestiona 20260414.xlsx', 1211)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2325, '2325', '0043/2026', 'CD-expdte Gestiona 20260414.xlsx', 1212)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2326, '2326', '0044/2026', 'CD-expdte Gestiona 20260414.xlsx', 1213)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2327, '2327', '0045/2026', 'CD-expdte Gestiona 20260414.xlsx', 1214)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2328, '2328', '0046/2026', 'CD-expdte Gestiona 20260414.xlsx', 1215)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2329, '2329', '0047/2026', 'CD-expdte Gestiona 20260414.xlsx', 1216)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-10', '0051/2026', 'CD-expdte Gestiona 20260414.xlsx', 1217)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2330, '2330', '0053/2026', 'CD-expdte Gestiona 20260414.xlsx', 1218)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2331, '2331', '0054/2026', 'CD-expdte Gestiona 20260414.xlsx', 1219)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2332, '2332', '0055/2026', 'CD-expdte Gestiona 20260414.xlsx', 1220)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2333, '2333', '0056/2026', 'CD-expdte Gestiona 20260414.xlsx', 1221)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2334, '2334', '0057/2026', 'CD-expdte Gestiona 20260414.xlsx', 1222)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2335, '2335', '0058/2026', 'CD-expdte Gestiona 20260414.xlsx', 1223)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-11', '0059/2026', 'CD-expdte Gestiona 20260414.xlsx', 1224)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2336, '2336', '0063/2026', 'CD-expdte Gestiona 20260414.xlsx', 1225)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-19', '0069/2026', 'CD-expdte Gestiona 20260414.xlsx', 1226)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-20', '0071/2026', 'CD-expdte Gestiona 20260414.xlsx', 1227)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2337, '2337', '0075/2026', 'CD-expdte Gestiona 20260414.xlsx', 1228)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2338, '2338', '0076/2026', 'CD-expdte Gestiona 20260414.xlsx', 1229)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2339, '2339', '0077/2026', 'CD-expdte Gestiona 20260414.xlsx', 1230)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2340, '2340', '0078/2026', 'CD-expdte Gestiona 20260414.xlsx', 1231)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2341, '2341', '0079/2026', 'CD-expdte Gestiona 20260414.xlsx', 1232)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2342, '2342', '0080/2026', 'CD-expdte Gestiona 20260414.xlsx', 1233)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2343, '2343', '0081/2026', 'CD-expdte Gestiona 20260414.xlsx', 1234)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2344, '2344', '0082/2026', 'CD-expdte Gestiona 20260414.xlsx', 1235)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2345, '2345', '0083/2026', 'CD-expdte Gestiona 20260414.xlsx', 1236)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2346, '2346', '0087/2026', 'CD-expdte Gestiona 20260414.xlsx', 1237)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2347, '2347', '0088/2026', 'CD-expdte Gestiona 20260414.xlsx', 1238)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2348, '2348', '0089/2026', 'CD-expdte Gestiona 20260414.xlsx', 1239)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2349, '2349', '0090/2026', 'CD-expdte Gestiona 20260414.xlsx', 1240)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2350, '2350', '0091/2026', 'CD-expdte Gestiona 20260414.xlsx', 1241)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2351, '2351', '0092/2026', 'CD-expdte Gestiona 20260414.xlsx', 1242)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2352, '2352', '0093/2026', 'CD-expdte Gestiona 20260414.xlsx', 1243)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2353, '2353', '0094/2026', 'CD-expdte Gestiona 20260414.xlsx', 1244)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2354, '2354', '0099/2026', 'CD-expdte Gestiona 20260414.xlsx', 1245)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2355, '2355', '0100/2026', 'CD-expdte Gestiona 20260414.xlsx', 1246)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2356, '2356', '0109/2026', 'CD-expdte Gestiona 20260414.xlsx', 1247)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2357, '2357', '0110/2026', 'CD-expdte Gestiona 20260414.xlsx', 1248)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '1+B1262', '0111/2026', 'CD-expdte Gestiona 20260414.xlsx', 1249)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-28', '0117/2026', 'CD-expdte Gestiona 20260414.xlsx', 1250)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-29', '0121/2026', 'CD-expdte Gestiona 20260414.xlsx', 1251)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2359, '2359', '0122/2026', 'CD-expdte Gestiona 20260414.xlsx', 1252)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2360, '2360', '0123/2026', 'CD-expdte Gestiona 20260414.xlsx', 1253)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2361, '2361', '0124/2026', 'CD-expdte Gestiona 20260414.xlsx', 1254)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2362, '2362', '0125/2026', 'CD-expdte Gestiona 20260414.xlsx', 1255)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-30', '0126/2026', 'CD-expdte Gestiona 20260414.xlsx', 1256)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2363, '2363', '0128/2026', 'CD-expdte Gestiona 20260414.xlsx', 1257)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2364, '2364', '0129/2026', 'CD-expdte Gestiona 20260414.xlsx', 1258)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2365, '2365', '0130/2026', 'CD-expdte Gestiona 20260414.xlsx', 1259)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2366, '2366', '0131/2026', 'CD-expdte Gestiona 20260414.xlsx', 1260)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2367, '2367', '0132/2026', 'CD-expdte Gestiona 20260414.xlsx', 1261)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2368, '2368', '0135/2026', 'CD-expdte Gestiona 20260414.xlsx', 1262)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2369, '2369', '0136/2026', 'CD-expdte Gestiona 20260414.xlsx', 1263)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2370, '2370', '0137/2026', 'CD-expdte Gestiona 20260414.xlsx', 1264)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2371, '2371', '0138/2026', 'CD-expdte Gestiona 20260414.xlsx', 1265)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2372, '2372', '0142/2026', 'CD-expdte Gestiona 20260414.xlsx', 1266)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2373, '2373', '0143/2026', 'CD-expdte Gestiona 20260414.xlsx', 1267)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2374, '2374', '0144/2026', 'CD-expdte Gestiona 20260414.xlsx', 1268)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2375, '2375', '0145/2026', 'CD-expdte Gestiona 20260414.xlsx', 1269)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2376, '2376', '0146/2026', 'CD-expdte Gestiona 20260414.xlsx', 1270)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2377, '2377', '0147/2026', 'CD-expdte Gestiona 20260414.xlsx', 1271)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2378, '2378', '0148/2026', 'CD-expdte Gestiona 20260414.xlsx', 1272)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2379, '2379', '0149/2026', 'CD-expdte Gestiona 20260414.xlsx', 1273)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2380, '2380', '0152/2026', 'CD-expdte Gestiona 20260414.xlsx', 1274)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2381, '2381', '0153/2026', 'CD-expdte Gestiona 20260414.xlsx', 1275)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2382, '2382', '0154/2026', 'CD-expdte Gestiona 20260414.xlsx', 1276)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2383, '2383', '0155/2026', 'CD-expdte Gestiona 20260414.xlsx', 1277)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2384, '2384', '0168/2026', 'CD-expdte Gestiona 20260414.xlsx', 1278)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2385, '2385', '0169/2026', 'CD-expdte Gestiona 20260414.xlsx', 1279)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2386, '2386', '0170/2026', 'CD-expdte Gestiona 20260414.xlsx', 1280)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2387, '2387', '0171/2026', 'CD-expdte Gestiona 20260414.xlsx', 1281)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2388, '2388', '0172/2026', 'CD-expdte Gestiona 20260414.xlsx', 1282)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2389, '2389', '0173/2026', 'CD-expdte Gestiona 20260414.xlsx', 1283)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2390, '2390', '0174/2026', 'CD-expdte Gestiona 20260414.xlsx', 1284)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2391, '2391', '0175/2026', 'CD-expdte Gestiona 20260414.xlsx', 1285)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2392, '2392', '0178/2026', 'CD-expdte Gestiona 20260414.xlsx', 1286)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-41', '0162/2026', 'CD-expdte Gestiona 20260414.xlsx', 1287)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-49', '0176/2026', 'CD-expdte Gestiona 20260414.xlsx', 1288)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-50', '0177/2026', 'CD-expdte Gestiona 20260414.xlsx', 1289)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2393, '2393', '0179/2026', 'CD-expdte Gestiona 20260414.xlsx', 1290)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2394, '2394', '0180/2026', 'CD-expdte Gestiona 20260414.xlsx', 1291)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2395, '2395', '0181/2026', 'CD-expdte Gestiona 20260414.xlsx', 1292)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2396, '2396', '0183/2026', 'CD-expdte Gestiona 20260414.xlsx', 1293)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2397, '2397', '0184/2026', 'CD-expdte Gestiona 20260414.xlsx', 1294)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2398, '2398', '0185/2026', 'CD-expdte Gestiona 20260414.xlsx', 1295)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2399, '2399', '0186/2026', 'CD-expdte Gestiona 20260414.xlsx', 1296)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2400, '2400', '0187/2026', 'CD-expdte Gestiona 20260414.xlsx', 1297)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2401, '2401', '0188/2026', 'CD-expdte Gestiona 20260414.xlsx', 1298)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2402, '2402', '0189/2026', 'CD-expdte Gestiona 20260414.xlsx', 1299)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2403, '2403', '0190/2026', 'CD-expdte Gestiona 20260414.xlsx', 1300)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-54', '0192/2026', 'CD-expdte Gestiona 20260414.xlsx', 1301)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2404, '2404', '0195/2026', 'CD-expdte Gestiona 20260414.xlsx', 1302)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2405, '2405', '0196/2026', 'CD-expdte Gestiona 20260414.xlsx', 1303)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2406, '2406', '0197/2026', 'CD-expdte Gestiona 20260414.xlsx', 1304)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2407, '2407', '0198/2026', 'CD-expdte Gestiona 20260414.xlsx', 1305)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-74', '0199/2026', 'CD-expdte Gestiona 20260414.xlsx', 1306)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2408, '2408', '0205/2026', 'CD-expdte Gestiona 20260414.xlsx', 1307)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2409, '2409', '0206/2026', 'CD-expdte Gestiona 20260414.xlsx', 1308)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2410, '2410', '0207/2026', 'CD-expdte Gestiona 20260414.xlsx', 1309)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2411, '2411', '0208/2026', 'CD-expdte Gestiona 20260414.xlsx', 1310)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2412, '2412', '0210/2026', 'CD-expdte Gestiona 20260414.xlsx', 1311)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2413, '2413', '0211/2026', 'CD-expdte Gestiona 20260414.xlsx', 1312)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2414, '2414', '0213/2026', 'CD-expdte Gestiona 20260414.xlsx', 1313)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2415, '2415', '0214/2026', 'CD-expdte Gestiona 20260414.xlsx', 1314)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2416, '2416', '0215/2026', 'CD-expdte Gestiona 20260414.xlsx', 1315)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2417, '2417', '0216/2026', 'CD-expdte Gestiona 20260414.xlsx', 1316)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2418, '2418', '0217/2026', 'CD-expdte Gestiona 20260414.xlsx', 1317)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2419, '2419', '0218/2026', 'CD-expdte Gestiona 20260414.xlsx', 1318)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2420, '2420', '0219/2026', 'CD-expdte Gestiona 20260414.xlsx', 1319)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2421, '2421', '0220/2026', 'CD-expdte Gestiona 20260414.xlsx', 1320)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-111', '0221/2026', 'CD-expdte Gestiona 20260414.xlsx', 1321)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2422, '2422', '0225/2026', 'CD-expdte Gestiona 20260414.xlsx', 1322)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2423, '2423', '0226/2026', 'CD-expdte Gestiona 20260414.xlsx', 1323)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2424, '2424', '0227/2026', 'CD-expdte Gestiona 20260414.xlsx', 1324)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-128', '0232/2026', 'CD-expdte Gestiona 20260414.xlsx', 1325)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2425, '2425', '0236/2026', 'CD-expdte Gestiona 20260414.xlsx', 1326)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2426, '2426', '0237/2026', 'CD-expdte Gestiona 20260414.xlsx', 1327)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2427, '2427', '0238/2026', 'CD-expdte Gestiona 20260414.xlsx', 1328)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2428, '2428', '0239/2026', 'CD-expdte Gestiona 20260414.xlsx', 1329)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2429, '2429', '0240/2026', 'CD-expdte Gestiona 20260414.xlsx', 1330)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2430, '2430', '0241/2026', 'CD-expdte Gestiona 20260414.xlsx', 1331)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2431, '2431', '0242/2026', 'CD-expdte Gestiona 20260414.xlsx', 1332)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2432, '2432', '0243/2026', 'CD-expdte Gestiona 20260414.xlsx', 1333)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2433, '2433', '0244/2026', 'CD-expdte Gestiona 20260414.xlsx', 1334)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2434, '2434', '0245/2026', 'CD-expdte Gestiona 20260414.xlsx', 1335)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2435, '2435', '0259/2026', 'CD-expdte Gestiona 20260414.xlsx', 1336)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2436, '2436', '0260/2026', 'CD-expdte Gestiona 20260414.xlsx', 1337)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2437, '2437', '0261/2026', 'CD-expdte Gestiona 20260414.xlsx', 1338)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2438, '2438', '0262/2026', 'CD-expdte Gestiona 20260414.xlsx', 1339)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2439, '2439', '0263/2026', 'CD-expdte Gestiona 20260414.xlsx', 1340)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2440, '2440', '0264/2026', 'CD-expdte Gestiona 20260414.xlsx', 1341)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2441, '2441', '0265/2026', 'CD-expdte Gestiona 20260414.xlsx', 1342)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2442, '2442', '0266/2026', 'CD-expdte Gestiona 20260414.xlsx', 1343)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2443, '2443', '0269/2026', 'CD-expdte Gestiona 20260414.xlsx', 1344)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2444, '2444', '0270/2026', 'CD-expdte Gestiona 20260414.xlsx', 1345)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2445, '2445', '0271/2026', 'CD-expdte Gestiona 20260414.xlsx', 1346)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2446, '2446', '0272/2026', 'CD-expdte Gestiona 20260414.xlsx', 1347)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2447, '2447', '0273/2026', 'CD-expdte Gestiona 20260414.xlsx', 1348)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2448, '2448', '0274/2026', 'CD-expdte Gestiona 20260414.xlsx', 1349)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2449, '2449', '0275/2026', 'CD-expdte Gestiona 20260414.xlsx', 1350)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2450, '2450', '0276/2026', 'CD-expdte Gestiona 20260414.xlsx', 1351)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2451, '2451', '0280/2026', 'CD-expdte Gestiona 20260414.xlsx', 1352)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2452, '2452', '0281/2026', 'CD-expdte Gestiona 20260414.xlsx', 1353)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-182', '0282/2026', 'CD-expdte Gestiona 20260414.xlsx', 1354)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2453, '2453', '0283/2026', 'CD-expdte Gestiona 20260414.xlsx', 1355)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2454, '2454', '0284/2026', 'CD-expdte Gestiona 20260414.xlsx', 1356)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2455, '2455', '0286/2026', 'CD-expdte Gestiona 20260414.xlsx', 1357)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2456, '2456', '0287/2026', 'CD-expdte Gestiona 20260414.xlsx', 1358)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2457, '2457', '0288/2026', 'CD-expdte Gestiona 20260414.xlsx', 1359)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2458, '2458', '0289/2026', 'CD-expdte Gestiona 20260414.xlsx', 1360)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2459, '2459', '0291/2026', 'CD-expdte Gestiona 20260414.xlsx', 1361)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2460, '2460', '0292/2026', 'CD-expdte Gestiona 20260414.xlsx', 1362)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2461, '2461', '0293/2026', 'CD-expdte Gestiona 20260414.xlsx', 1363)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2462, '2462', '0294/2026', 'CD-expdte Gestiona 20260414.xlsx', 1364)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2463, '2463', '0295/2026', 'CD-expdte Gestiona 20260414.xlsx', 1365)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2464, '2464', '0296/2026', 'CD-expdte Gestiona 20260414.xlsx', 1366)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2465, '2465', '0297/2026', 'CD-expdte Gestiona 20260414.xlsx', 1367)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2466, '2466', '0298/2026', 'CD-expdte Gestiona 20260414.xlsx', 1368)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-188', '0299/2026', 'CD-expdte Gestiona 20260414.xlsx', 1369)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-89', '0301/2026', 'CD-expdte Gestiona 20260414.xlsx', 1370)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-93', '0304/2026', 'CD-expdte Gestiona 20260414.xlsx', 1371)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-94', '0306/2026', 'CD-expdte Gestiona 20260414.xlsx', 1372)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-95', '0309/2026', 'CD-expdte Gestiona 20260414.xlsx', 1373)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-96', '0321/2026', 'CD-expdte Gestiona 20260414.xlsx', 1374)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2467, '2467', '0324/2026', 'CD-expdte Gestiona 20260414.xlsx', 1375)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2468, '2468', '0325/2026', 'CD-expdte Gestiona 20260414.xlsx', 1376)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2469, '2469', '0326/2026', 'CD-expdte Gestiona 20260414.xlsx', 1377)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2470, '2470', '0327/2026', 'CD-expdte Gestiona 20260414.xlsx', 1378)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2471, '2471', '0328/2026', 'CD-expdte Gestiona 20260414.xlsx', 1379)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2472, '2472', '0329/2026', 'CD-expdte Gestiona 20260414.xlsx', 1380)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2473, '2473', '0330/2026', 'CD-expdte Gestiona 20260414.xlsx', 1381)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2474, '2474', '0331/2026', 'CD-expdte Gestiona 20260414.xlsx', 1382)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2475, '2475', '0332/2026', 'CD-expdte Gestiona 20260414.xlsx', 1383)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2476, '2476', '0333/2026', 'CD-expdte Gestiona 20260414.xlsx', 1384)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2477, '2477', '0334/2026', 'CD-expdte Gestiona 20260414.xlsx', 1385)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2478, '2478', '0335/2026', 'CD-expdte Gestiona 20260414.xlsx', 1386)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2479, '2479', '0336/2026', 'CD-expdte Gestiona 20260414.xlsx', 1387)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2480, '2480', '0337/2026', 'CD-expdte Gestiona 20260414.xlsx', 1388)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2481, '2481', '0338/2026', 'CD-expdte Gestiona 20260414.xlsx', 1389)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2482, '2482', '0339/2026', 'CD-expdte Gestiona 20260414.xlsx', 1390)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2483, '2483', '0340/2026', 'CD-expdte Gestiona 20260414.xlsx', 1391)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2484, '2484', '0341/2026', 'CD-expdte Gestiona 20260414.xlsx', 1392)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2485, '2485', '0342/2026', 'CD-expdte Gestiona 20260414.xlsx', 1393)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2486, '2486', '0343/2026', 'CD-expdte Gestiona 20260414.xlsx', 1394)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2487, '2487', '0344/2026', 'CD-expdte Gestiona 20260414.xlsx', 1395)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-97', '0346/2026', 'CD-expdte Gestiona 20260414.xlsx', 1396)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2488, '2488', '0348/2026', 'CD-expdte Gestiona 20260414.xlsx', 1397)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-98', '0349/2026', 'CD-expdte Gestiona 20260414.xlsx', 1398)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2490, '2490', '0350/2026', 'CD-expdte Gestiona 20260414.xlsx', 1399)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-101', '0351/2026', 'CD-expdte Gestiona 20260414.xlsx', 1400)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2492, '2492', '0358/2026', 'CD-expdte Gestiona 20260414.xlsx', 1401)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2493, '2493', '0359/2026', 'CD-expdte Gestiona 20260414.xlsx', 1402)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2494, '2494', '0360/2026', 'CD-expdte Gestiona 20260414.xlsx', 1403)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2495, '2495', '0363/2026', 'CD-expdte Gestiona 20260414.xlsx', 1405)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2496, '2496', '0364/2026', 'CD-expdte Gestiona 20260414.xlsx', 1406)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2497, '2497', '0365/2026', 'CD-expdte Gestiona 20260414.xlsx', 1407)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2498, '2498', '0366/2026', 'CD-expdte Gestiona 20260414.xlsx', 1408)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2499, '2499', '0367/2026', 'CD-expdte Gestiona 20260414.xlsx', 1409)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RC-113', '0370/2026', 'CD-expdte Gestiona 20260414.xlsx', 1410)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-115', '0372/2026', 'CD-expdte Gestiona 20260414.xlsx', 1411)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-116', '0376/2026', 'CD-expdte Gestiona 20260414.xlsx', 1412)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-117', '0379/2026', 'CD-expdte Gestiona 20260414.xlsx', 1413)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2500, '2500', '0383/2026', 'CD-expdte Gestiona 20260414.xlsx', 1414)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2501, '2501', '0384/2026', 'CD-expdte Gestiona 20260414.xlsx', 1415)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2502, '2502', '0385/2026', 'CD-expdte Gestiona 20260414.xlsx', 1416)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2503, '2503', '0386/2026', 'CD-expdte Gestiona 20260414.xlsx', 1417)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2504, '2504', '0387/2026', 'CD-expdte Gestiona 20260414.xlsx', 1418)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2505, '2505', '0388/2026', 'CD-expdte Gestiona 20260414.xlsx', 1419)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2506, '2506', '0389/2026', 'CD-expdte Gestiona 20260414.xlsx', 1420)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2507, '2507', '0390/2026', 'CD-expdte Gestiona 20260414.xlsx', 1421)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2508, '2508', '0391/2026', 'CD-expdte Gestiona 20260414.xlsx', 1422)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2509, '2509', '0392/2026', 'CD-expdte Gestiona 20260414.xlsx', 1423)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2510, '2510', '0393/2026', 'CD-expdte Gestiona 20260414.xlsx', 1424)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2511, '2511', '0394/2026', 'CD-expdte Gestiona 20260414.xlsx', 1425)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2512, '2512', '0395/2026', 'CD-expdte Gestiona 20260414.xlsx', 1426)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2513, '2513', '0396/2026', 'CD-expdte Gestiona 20260414.xlsx', 1427)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2514, '2514', '0397/2026', 'CD-expdte Gestiona 20260414.xlsx', 1428)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2515, '2515', '0398/2026', 'CD-expdte Gestiona 20260414.xlsx', 1429)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2516, '2516', '0400/2026', 'CD-expdte Gestiona 20260414.xlsx', 1430)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2517, '2517', '0401/2026', 'CD-expdte Gestiona 20260414.xlsx', 1431)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-122', '0403/2026', 'CD-expdte Gestiona 20260414.xlsx', 1432)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2519, '2519', '0404/2026', 'CD-expdte Gestiona 20260414.xlsx', 1433)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2520, '2520', '0405/2026', 'CD-expdte Gestiona 20260414.xlsx', 1434)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2521, '2521', '0406/2026', 'CD-expdte Gestiona 20260414.xlsx', 1435)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2525, '2525', '0408/2026', 'CD-expdte Gestiona 20260414.xlsx', 1436)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2526, '2526', '0409/2026', 'CD-expdte Gestiona 20260414.xlsx', 1437)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2527, '2527', '0410/2026', 'CD-expdte Gestiona 20260414.xlsx', 1438)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2528, '2528', '0411/2026', 'CD-expdte Gestiona 20260414.xlsx', 1439)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2529, '2529', '0412/2026', 'CD-expdte Gestiona 20260414.xlsx', 1440)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2530, '2530', '0413/2026', 'CD-expdte Gestiona 20260414.xlsx', 1441)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-130', '0418/2026', 'CD-expdte Gestiona 20260414.xlsx', 1442)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-284', '0419/2026', 'CD-expdte Gestiona 20260414.xlsx', 1443)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-133', '0420/2026', 'CD-expdte Gestiona 20260414.xlsx', 1444)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2531, '2531', '0421/2026', 'CD-expdte Gestiona 20260414.xlsx', 1445)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2532, '2532', '0422/2026', 'CD-expdte Gestiona 20260414.xlsx', 1446)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2533, '2533', '0423/2026', 'CD-expdte Gestiona 20260414.xlsx', 1447)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2534, '2534', '0424/2026', 'CD-expdte Gestiona 20260414.xlsx', 1448)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2535, '2535', '0425/2026', 'CD-expdte Gestiona 20260414.xlsx', 1449)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2536, '2536', '0426/2026', 'CD-expdte Gestiona 20260414.xlsx', 1450)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2537, '2537', '0427/2026', 'CD-expdte Gestiona 20260414.xlsx', 1451)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2538, '2538', '0428/2026', 'CD-expdte Gestiona 20260414.xlsx', 1452)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-134', '0429/2026', 'CD-expdte Gestiona 20260414.xlsx', 1453)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2539, '2539', '0431/2026', 'CD-expdte Gestiona 20260414.xlsx', 1454)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-135', '0432/2026', 'CD-expdte Gestiona 20260414.xlsx', 1455)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2540, '2540', '0448/2026', 'CD-expdte Gestiona 20260414.xlsx', 1456)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2541, '2541', '0449/2026', 'CD-expdte Gestiona 20260414.xlsx', 1457)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2542, '2542', '0450/2026', 'CD-expdte Gestiona 20260414.xlsx', 1458)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2543, '2543', '0451/2026', 'CD-expdte Gestiona 20260414.xlsx', 1459)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2544, '2544', '0452/2026', 'CD-expdte Gestiona 20260414.xlsx', 1460)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2545, '2545', '0453/2026', 'CD-expdte Gestiona 20260414.xlsx', 1461)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2551, '2551', '0454/2026', 'CD-expdte Gestiona 20260414.xlsx', 1462)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2552, '2552', '0455/2026', 'CD-expdte Gestiona 20260414.xlsx', 1463)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2553, '2553', '0456/2026', 'CD-expdte Gestiona 20260414.xlsx', 1464)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2554, '2554', '0457/2026', 'CD-expdte Gestiona 20260414.xlsx', 1465)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2555, '2555', '0458/2026', 'CD-expdte Gestiona 20260414.xlsx', 1466)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2556, '2556', '0459/2026', 'CD-expdte Gestiona 20260414.xlsx', 1467)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2557, '2557', '0460/2026', 'CD-expdte Gestiona 20260414.xlsx', 1468)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-152', '0464/2026', 'CD-expdte Gestiona 20260414.xlsx', 1469)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-153', '0465/2026', 'CD-expdte Gestiona 20260414.xlsx', 1470)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-154', '0467/2026', 'CD-expdte Gestiona 20260414.xlsx', 1471)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-155', '0469/2026', 'CD-expdte Gestiona 20260414.xlsx', 1472)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2558, '2558', '0478/2026', 'CD-expdte Gestiona 20260414.xlsx', 1473)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2559, '2559', '0479/2026', 'CD-expdte Gestiona 20260414.xlsx', 1474)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2560, '2560', '0480/2026', 'CD-expdte Gestiona 20260414.xlsx', 1475)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2561, '2561', '0481/2026', 'CD-expdte Gestiona 20260414.xlsx', 1476)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2562, '2562', '0482/2026', 'CD-expdte Gestiona 20260414.xlsx', 1477)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2563, '2563', '0483/2026', 'CD-expdte Gestiona 20260414.xlsx', 1478)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2564, '2564', '0484/2026', 'CD-expdte Gestiona 20260414.xlsx', 1479)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2565, '2565', '0485/2026', 'CD-expdte Gestiona 20260414.xlsx', 1480)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2566, '2566', '0487/2026', 'CD-expdte Gestiona 20260414.xlsx', 1481)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2567, '2567', '0488/2026', 'CD-expdte Gestiona 20260414.xlsx', 1482)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2568, '2568', '0489/2026', 'CD-expdte Gestiona 20260414.xlsx', 1483)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2569, '2569', '0490/2026', 'CD-expdte Gestiona 20260414.xlsx', 1484)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2570, '2570', '0491/2026', 'CD-expdte Gestiona 20260414.xlsx', 1485)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2571, '2571', '0492/2026', 'CD-expdte Gestiona 20260414.xlsx', 1486)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2572, '2572', '0493/2026', 'CD-expdte Gestiona 20260414.xlsx', 1487)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2573, '2573', '0494/2026', 'CD-expdte Gestiona 20260414.xlsx', 1488)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2574, '2574', '0500/2026', 'CD-expdte Gestiona 20260414.xlsx', 1489)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2575, '2575', '0501/2026', 'CD-expdte Gestiona 20260414.xlsx', 1490)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2576, '2576', '0502/2026', 'CD-expdte Gestiona 20260414.xlsx', 1491)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-202', '0504/2026', 'CD-expdte Gestiona 20260414.xlsx', 1492)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2577, '2577', '0512/2026', 'CD-expdte Gestiona 20260414.xlsx', 1493)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2578, '2578', '0513/2026', 'CD-expdte Gestiona 20260414.xlsx', 1494)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2579, '2579', '0514/2026', 'CD-expdte Gestiona 20260414.xlsx', 1495)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2580, '2580', '0515/2026', 'CD-expdte Gestiona 20260414.xlsx', 1496)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2581, '2581', '0516/2026', 'CD-expdte Gestiona 20260414.xlsx', 1497)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2582, '2582', '0517/2026', 'CD-expdte Gestiona 20260414.xlsx', 1498)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2583, '2583', '0523/2026', 'CD-expdte Gestiona 20260414.xlsx', 1499)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2584, '2584', '0524/2026', 'CD-expdte Gestiona 20260414.xlsx', 1500)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2585, '2585', '0531/2026', 'CD-expdte Gestiona 20260414.xlsx', 1501)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2586, '2586', '0532/2026', 'CD-expdte Gestiona 20260414.xlsx', 1502)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2587, '2587', '0533/2026', 'CD-expdte Gestiona 20260414.xlsx', 1503)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-351', '0534/2026', 'CD-expdte Gestiona 20260414.xlsx', 1504)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-352', '0541/2026', 'CD-expdte Gestiona 20260414.xlsx', 1505)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-234', '0551/2026', 'CD-expdte Gestiona 20260414.xlsx', 1506)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2588, '2588', '0553/2026', 'CD-expdte Gestiona 20260414.xlsx', 1507)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2589, '2589', '0554/2026', 'CD-expdte Gestiona 20260414.xlsx', 1508)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2590, '2590', '0555/2026', 'CD-expdte Gestiona 20260414.xlsx', 1509)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2591, '2591', '0556/2026', 'CD-expdte Gestiona 20260414.xlsx', 1510)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2592, '2592', '0557/2026', 'CD-expdte Gestiona 20260414.xlsx', 1511)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-237', '0558/2026', 'CD-expdte Gestiona 20260414.xlsx', 1512)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RC-238', '0559/2026', 'CD-expdte Gestiona 20260414.xlsx', 1513)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2593, '2593', '0576/2026', 'CD-expdte Gestiona 20260414.xlsx', 1514)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2594, '2594', '0577/2026', 'CD-expdte Gestiona 20260414.xlsx', 1515)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2595, '2595', '0578/2026', 'CD-expdte Gestiona 20260414.xlsx', 1516)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2596, '2596', '0591/2026', 'CD-expdte Gestiona 20260414.xlsx', 1517)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2597, '2597', '0592/2026', 'CD-expdte Gestiona 20260414.xlsx', 1518)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2598, '2598', '0593/2026', 'CD-expdte Gestiona 20260414.xlsx', 1519)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2599, '2599', '0594/2026', 'CD-expdte Gestiona 20260414.xlsx', 1520)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2600, '2600', '0653/2026', 'CD-expdte Gestiona 20260414.xlsx', 1521)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2601, '2601', '0654/2026', 'CD-expdte Gestiona 20260414.xlsx', 1522)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2602, '2602', '0655/2026', 'CD-expdte Gestiona 20260414.xlsx', 1523)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2603, '2603', '0656/2026', 'CD-expdte Gestiona 20260414.xlsx', 1524)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2604, '2604', '0657/2026', 'CD-expdte Gestiona 20260414.xlsx', 1525)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2605, '2605', '0658/2026', 'CD-expdte Gestiona 20260414.xlsx', 1526)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2606, '2606', '0659/2026', 'CD-expdte Gestiona 20260414.xlsx', 1527)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2607, '2607', '0660/2026', 'CD-expdte Gestiona 20260414.xlsx', 1528)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2608, '2608', '0701/2026', 'CD-expdte Gestiona 20260414.xlsx', 1529)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2609, '2609', '0702/2026', 'CD-expdte Gestiona 20260414.xlsx', 1530)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2610, '2610', '0703/2026', 'CD-expdte Gestiona 20260414.xlsx', 1531)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2611, '2611', '0704/2026', 'CD-expdte Gestiona 20260414.xlsx', 1532)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2612, '2612', '0705/2026', 'CD-expdte Gestiona 20260414.xlsx', 1533)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2613, '2613', '0706/2026', 'CD-expdte Gestiona 20260414.xlsx', 1534)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2614, '2614', '0707/2026', 'CD-expdte Gestiona 20260414.xlsx', 1535)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2615, '2615', '0708/2026', 'CD-expdte Gestiona 20260414.xlsx', 1536)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2616, '2616', '0709/2026', 'CD-expdte Gestiona 20260414.xlsx', 1537)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (2617, '2617', '0710/2026', 'CD-expdte Gestiona 20260414.xlsx', 1538)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2026-E-RE-496', '0711/2026', 'CD-expdte Gestiona 20260414.xlsx', 1539)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
INSERT INTO gestiona_file_exceptions (external_report_id, external_reference, gestiona_file_code, notes, source_row)
|
|
VALUES (NULL, '2025-E-RE-916', '0714/2026', 'CD-expdte Gestiona 20260414.xlsx', 1540)
|
|
ON DUPLICATE KEY UPDATE
|
|
external_report_id = VALUES(external_report_id),
|
|
notes = VALUES(notes),
|
|
source_row = VALUES(source_row),
|
|
updated_at_utc = CURRENT_TIMESTAMP(6);
|
|
|
|
-- Verificacion rapida
|
|
SELECT COUNT(*) AS total_excepciones FROM gestiona_file_exceptions;
|
|
SELECT external_reference, COUNT(*) AS total
|
|
FROM gestiona_file_exceptions
|
|
GROUP BY external_reference
|
|
HAVING COUNT(*) > 1
|
|
ORDER BY total DESC, external_reference;
|
|
SELECT * FROM gestiona_file_exceptions ORDER BY source_row DESC LIMIT 20; |