P2 processor is working as a charm!
All checks were successful
Build Docker Images / test (map[name:Morska plugin_project:DiunaBI.Plugins.Morska]) (push) Successful in 1m23s
Build Docker Images / test (map[name:PedrolloPL plugin_project:DiunaBI.Plugins.PedrolloPL]) (push) Successful in 1m28s
Build Docker Images / build-and-push (map[image_suffix:morska name:Morska plugin_project:DiunaBI.Plugins.Morska]) (push) Successful in 1m40s
Build Docker Images / build-and-push (map[image_suffix:pedrollopl name:PedrolloPL plugin_project:DiunaBI.Plugins.PedrolloPL]) (push) Successful in 1m37s

This commit is contained in:
2025-12-05 19:10:28 +01:00
parent 0eb2a457f7
commit 6b0f936f40
6 changed files with 663 additions and 45 deletions

View File

@@ -338,8 +338,8 @@ public class PedrolloPLImportB3 : BaseDataImporter
IsCancelled = false,
CreatedAt = now,
ModifiedAt = now,
CreatedById = importWorker.CreatedById,
ModifiedById = importWorker.ModifiedById
CreatedById = Guid.Parse("f392209e-123e-4651-a5a4-0b1d6cf9ff9d"), // System user
ModifiedById = Guid.Parse("f392209e-123e-4651-a5a4-0b1d6cf9ff9d") // System user
};
importLayer.Name = $"L{importLayer.Number}-I-B3-{ImportYear}-{now:yyyyMMddHHmm}";
@@ -374,8 +374,8 @@ public class PedrolloPLImportB3 : BaseDataImporter
foreach (var record in records)
{
record.LayerId = importLayer.Id;
record.CreatedById = importLayer.CreatedById;
record.ModifiedById = importLayer.ModifiedById;
record.CreatedById = Guid.Parse("f392209e-123e-4651-a5a4-0b1d6cf9ff9d"); // System user
record.ModifiedById = Guid.Parse("f392209e-123e-4651-a5a4-0b1d6cf9ff9d"); // System user
_db.Records.Add(record);
}