Replace hand-coded envelope report with DevExpress XtraReport

Switch to a designer-generated DevExpress XtraReport for envelope history, replacing the previous manual layout. Added designer (.Designer.cs), resource (.resx), and updated code-behind (.cs) files. Updated the project file to include new report assets. Changed report generation to use the new async API. This modernizes the report, improves maintainability, and enhances appearance.
This commit is contained in:
2026-03-30 16:53:39 +02:00
parent 8f845e8a9a
commit c2ab18e184
5 changed files with 881 additions and 98 deletions

View File

@@ -79,7 +79,7 @@ public class FinalizeDocumentJob(IOptions<WorkerOptions> options, ILogger<Finali
actionService.CreateReport(envelope, cancel);
var report = reportCreator!.CreateReport(envelope);
var report = await reportCreator!.CreateReportAsync(envelope, cancel);
var mergedDocument = pdfMerger!.MergeDocuments(burnedDocument, report);