1167 lines
50 KiB
C#
1167 lines
50 KiB
C#
//
|
|
// Class: Document
|
|
// Current CLR: 4.0.30319.34209
|
|
// System: Microsoft Visual Studio 10.0
|
|
// Author: dani
|
|
// Created: 5/27/2015 8:52:50 PM
|
|
//
|
|
// Copyright (c) 2015 Informatikbüro Daniel Schick. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
using MigraDoc;
|
|
using MigraDoc.DocumentObjectModel;
|
|
using MigraDoc.DocumentObjectModel.Shapes;
|
|
using MigraDoc.DocumentObjectModel.Tables;
|
|
using MigraDoc.Rendering;
|
|
|
|
// keine "echten" Dependencies, nur durch File Link notwendig (Code sharing)
|
|
using ENI2;
|
|
using bsmd.ExcelReadService;
|
|
|
|
using bsmd.database;
|
|
|
|
namespace bsmd.ReportGenerator
|
|
{
|
|
public class BSMDDocument
|
|
{
|
|
|
|
#region create document
|
|
|
|
public static Document CreateDocument(string title, string subject, string author,
|
|
Dictionary<string, string> coverInfos, bool isUpdate)
|
|
{
|
|
// Create a new MigraDoc document
|
|
Document document = new Document();
|
|
if(title != null) document.Info.Title = title;
|
|
if(subject != null) document.Info.Subject = subject;
|
|
if(author != null) document.Info.Author = author;
|
|
|
|
BSMDDocument.DefineStyles(document);
|
|
|
|
BSMDDocument.DefineCover(document, coverInfos, isUpdate);
|
|
BSMDDocument.DefineContentSection(document, Orientation.Portrait, true);
|
|
|
|
//TableOfContents.DefineTableOfContents(document);
|
|
|
|
//DefineContentSection(document);
|
|
|
|
//Paragraphs.DefineParagraphs(document);
|
|
//Tables.DefineTables(document);
|
|
//Charts.DefineCharts(document);
|
|
|
|
return document;
|
|
}
|
|
|
|
internal static Document CreateSingleClassDocument(MessageCore reportCore, List<Message> reportMessages,
|
|
Dictionary<string, string> coverInfos, string classes, ReportingParty rp)
|
|
{
|
|
|
|
Document document = new Document();
|
|
document.Info.Title = string.Format("{0} for {1}", classes, reportCore.DisplayId);
|
|
document.Info.Subject = "Reporting class info";
|
|
document.Info.Author = Properties.Settings.Default.ReportAuthor;
|
|
|
|
BSMDDocument.DefineSingleStyle(document);
|
|
BSMDDocument.DefineSingleHeader(document, coverInfos, rp);
|
|
BSMDDocument.DefineContentSectionInitial(document);
|
|
DatabaseEntity.ReportReplacer += DatabaseEntity_ReportReplacer;
|
|
|
|
return document;
|
|
}
|
|
|
|
/// <summary>
|
|
/// create the final output document
|
|
/// </summary>
|
|
/// <param name="document">document to render</param>
|
|
/// <param name="filename">full path of bla.pdf output file</param>
|
|
public static void RenderDocument(Document document, string filename)
|
|
{
|
|
|
|
// wozu braucht man das hier?
|
|
string filenameCore = Path.GetFileNameWithoutExtension(filename);
|
|
string migraTempFile = string.Format("{1}\\{0}.mdddl", filenameCore, Path.GetDirectoryName(filename));
|
|
MigraDoc.DocumentObjectModel.IO.DdlWriter.WriteToFile(document, migraTempFile);
|
|
|
|
// TODO Test font embedding (-> filesize!)
|
|
PdfDocumentRenderer renderer = new PdfDocumentRenderer(true, PdfSharp.Pdf.PdfFontEmbedding.None);
|
|
renderer.Document = document;
|
|
renderer.RenderDocument();
|
|
|
|
renderer.PdfDocument.Save(filename);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Style
|
|
|
|
public static void DefineStyles(Document document)
|
|
{
|
|
// Get the predefined style Normal.
|
|
Style style = document.Styles["Normal"];
|
|
|
|
// Because all styles are derived from Normal, the next line changes the
|
|
// font of the whole document. Or, more exactly, it changes the font of
|
|
// all styles and paragraphs that do not redefine the font.
|
|
style.Font.Name = "Times New Roman";
|
|
|
|
// Heading1 to Heading9 are predefined styles with an outline level. An outline level
|
|
// other than OutlineLevel.BodyText automatically creates the outline (or bookmarks)
|
|
// in PDF.
|
|
style = document.Styles["Heading1"];
|
|
style.Font.Name = "Tahoma";
|
|
style.Font.Size = 14;
|
|
style.Font.Bold = true;
|
|
style.Font.Color = Colors.DarkBlue;
|
|
style.ParagraphFormat.PageBreakBefore = true;
|
|
style.ParagraphFormat.SpaceAfter = 6;
|
|
|
|
style = document.Styles["Heading2"];
|
|
style.Font.Size = 12;
|
|
style.Font.Bold = true;
|
|
style.ParagraphFormat.PageBreakBefore = false;
|
|
style.ParagraphFormat.SpaceBefore = 6;
|
|
style.ParagraphFormat.SpaceAfter = 6;
|
|
|
|
style = document.Styles["Heading3"];
|
|
style.Font.Size = 10;
|
|
style.Font.Bold = true;
|
|
style.Font.Italic = true;
|
|
style.ParagraphFormat.SpaceBefore = 6;
|
|
style.ParagraphFormat.SpaceAfter = 3;
|
|
|
|
style = document.Styles[StyleNames.Header];
|
|
style.ParagraphFormat.AddTabStop("16cm", TabAlignment.Right);
|
|
|
|
style = document.Styles[StyleNames.Footer];
|
|
style.ParagraphFormat.AddTabStop("8cm", TabAlignment.Center);
|
|
|
|
// Create a new style called TextBox based on style Normal
|
|
style = document.Styles.AddStyle("TextBox", "Normal");
|
|
style.ParagraphFormat.Alignment = ParagraphAlignment.Justify;
|
|
style.ParagraphFormat.Borders.Width = 2.5;
|
|
style.ParagraphFormat.Borders.Distance = "3pt";
|
|
style.ParagraphFormat.Shading.Color = Colors.SkyBlue;
|
|
|
|
// Create a new style called TOC based on style Normal
|
|
style = document.Styles.AddStyle("TOC", "Normal");
|
|
style.ParagraphFormat.AddTabStop("16cm", TabAlignment.Right, TabLeader.Dots);
|
|
style.ParagraphFormat.Font.Color = Colors.Blue;
|
|
}
|
|
|
|
static void DefineSingleStyle(Document doc)
|
|
{
|
|
Style style = doc.Styles["Normal"];
|
|
style.Font.Name = "Verdana";
|
|
|
|
Style grayStyle = doc.Styles.AddStyle("Gray", "Normal");
|
|
grayStyle.Font.Size = 9;
|
|
grayStyle.Font.Color = Colors.Gray;
|
|
|
|
Style tableStyle = doc.Styles.AddStyle("Table", "Normal");
|
|
tableStyle.Font.Name = "Verdana";
|
|
tableStyle.Font.Size = 9;
|
|
|
|
// usw
|
|
Style tableHeaderStyle = doc.Styles.AddStyle("TableHeader", "Normal");
|
|
//tableHeaderStyle.Font.Name = "Verdana";
|
|
tableHeaderStyle.Font.Size = 10;
|
|
tableHeaderStyle.Font.Bold = true;
|
|
|
|
Style tableValueStyle = doc.Styles.AddStyle("TableValue", "Normal");
|
|
tableValueStyle.Font.Size = 9;
|
|
tableValueStyle.Font.Bold = true;
|
|
|
|
style = doc.Styles["Heading2"];
|
|
style.Font.Size = 12;
|
|
style.Font.Bold = true;
|
|
style.ParagraphFormat.SpaceBefore = 6;
|
|
style.ParagraphFormat.SpaceAfter = 6;
|
|
|
|
style = doc.Styles["Heading3"];
|
|
style.Font.Size = 10;
|
|
style.Font.Bold = true;
|
|
style.Font.Italic = true;
|
|
style.ParagraphFormat.SpaceBefore = 6;
|
|
style.ParagraphFormat.SpaceAfter = 3;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Cover (alt, EU-NOAD)
|
|
|
|
/// <summary>
|
|
/// Defines the cover page.
|
|
/// </summary>
|
|
public static void DefineCover(Document document, Dictionary<string, string> coverInfos, bool isUpdate)
|
|
{
|
|
Section section = document.AddSection();
|
|
|
|
Paragraph paragraph = section.AddParagraph();
|
|
paragraph.Format.SpaceAfter = "2cm";
|
|
|
|
Image image = section.AddImage(Properties.Settings.Default.LogoPath);
|
|
image.Width = "3cm";
|
|
|
|
if (isUpdate)
|
|
section.AddParagraph("EU-NOAD data UPDATE");
|
|
else
|
|
paragraph = section.AddParagraph("EU-NOAD incoming data receipt");
|
|
|
|
paragraph.Format.Font.Size = 16;
|
|
paragraph.Format.Font.Color = Colors.DarkRed;
|
|
paragraph.Format.SpaceBefore = Unit.FromCentimeter(4);
|
|
|
|
paragraph = section.AddParagraph("Rendering date: ");
|
|
paragraph.AddDateField();
|
|
|
|
paragraph = section.AddParagraph("Note: Timezone for all values is assumed as UTC!");
|
|
paragraph.Format.Font.Size = 12;
|
|
paragraph.Format.Font.Bold = true;
|
|
paragraph.Format.SpaceAfter = Unit.FromCentimeter(1.5);
|
|
|
|
Table table = document.LastSection.AddTable();
|
|
table.Format.Font.Size = 14;
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(4);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(8);
|
|
|
|
foreach (string key in coverInfos.Keys)
|
|
{
|
|
Row row = table.AddRow();
|
|
row.Cells[0].AddParagraph(key);
|
|
row.Cells[1].AddParagraph(coverInfos[key] ?? string.Empty);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Label DB
|
|
|
|
static List<KeyValuePair<string, string>> ReplaceLabels(List<KeyValuePair<string, string>> messageText)
|
|
{
|
|
if (messageText == null) return null;
|
|
List<KeyValuePair<string, string>> result = new List<KeyValuePair<string, string>>();
|
|
foreach(KeyValuePair<string, string> field in messageText)
|
|
{
|
|
if (LabelStorage.FieldLabelDict.ContainsKey(field.Key))
|
|
result.Add(new KeyValuePair<string, string>(LabelStorage.FieldLabelDict[field.Key], field.Value));
|
|
else
|
|
result.Add(field);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
static string ReplaceTitle(string title)
|
|
{
|
|
if (LabelStorage.CollectionLabelDict.ContainsKey(title))
|
|
return LabelStorage.CollectionLabelDict[title];
|
|
return title;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region "Neuer" EUREPORT Header Block für Einzelnachrichten
|
|
|
|
internal static void DefineSingleHeader(Document document, Dictionary<string, string> coverInfos, ReportingParty rp)
|
|
{
|
|
Section section = document.AddSection();
|
|
section.PageSetup.StartingNumber = 1;
|
|
|
|
Table table = document.LastSection.AddTable();
|
|
table.Style = "Table";
|
|
table.Borders.Color = Colors.LightGray;
|
|
table.Borders.Width = 0.25;
|
|
|
|
// Define Colums
|
|
Column col = table.AddColumn(90); // die Bildspalte
|
|
col.Format.Alignment = ParagraphAlignment.Center;
|
|
|
|
col = table.AddColumn(70);
|
|
col = table.AddColumn(140);
|
|
col = table.AddColumn(60);
|
|
col = table.AddColumn(140);
|
|
|
|
Row row = table.AddRow();
|
|
Image logoImage = row.Cells[0].AddImage(Properties.Settings.Default.LogoPath);
|
|
logoImage.Width = 80;
|
|
row.Cells[0].MergeDown = 6;
|
|
|
|
Paragraph paragraph = row.Cells[1].AddParagraph("Visit Details");
|
|
row.Cells[1].MergeRight = 3;
|
|
row.Cells[1].Shading.Color = Colors.LightGray;
|
|
paragraph.Style = "TableHeader";
|
|
|
|
row = table.AddRow();
|
|
row.Cells[1].AddParagraph("Visit-ID");
|
|
paragraph = row.Cells[2].AddParagraph(coverInfos["Visit-ID"] ?? "");
|
|
paragraph.Style = "TableValue";
|
|
row.Cells[3].AddParagraph("Name");
|
|
paragraph = row.Cells[4].AddParagraph(coverInfos["Ship"] ?? "");
|
|
paragraph.Style = "TableValue";
|
|
|
|
row = table.AddRow();
|
|
row.Cells[1].AddParagraph("Port of call");
|
|
paragraph = row.Cells[2].AddParagraph(coverInfos["Port of call"] ?? "");
|
|
paragraph.Style = "TableValue";
|
|
row.Cells[3].AddParagraph("ETA");
|
|
paragraph = row.Cells[4].AddParagraph(coverInfos["ETA"] ?? "");
|
|
paragraph.Style = "TableValue";
|
|
|
|
row = table.AddRow();
|
|
row.Shading.Color = Colors.LightGray;
|
|
paragraph = row.Cells[1].AddParagraph("Reporting Party");
|
|
row.Cells[1].MergeRight = 3;
|
|
paragraph.Style = "TableHeader";
|
|
|
|
row = table.AddRow();
|
|
row.Cells[1].AddParagraph("Organization");
|
|
paragraph = row.Cells[2].AddParagraph(rp.Name ?? "");
|
|
paragraph.Style = "TableValue";
|
|
row.Cells[2].MergeRight = 2;
|
|
|
|
row = table.AddRow();
|
|
row.Cells[1].AddParagraph("Last name");
|
|
paragraph = row.Cells[2].AddParagraph(rp.LastName ?? "");
|
|
paragraph.Style = "TableValue";
|
|
|
|
row.Cells[3].AddParagraph("City");
|
|
paragraph = row.Cells[4].AddParagraph(rp.City ?? "");
|
|
paragraph.Style = "TableValue";
|
|
|
|
row = table.AddRow();
|
|
row.Cells[1].AddParagraph("Phone");
|
|
paragraph = row.Cells[2].AddParagraph(rp.Phone ?? "");
|
|
paragraph.Style = "TableValue";
|
|
|
|
row.Cells[3].AddParagraph("Email");
|
|
paragraph = row.Cells[4].AddParagraph(rp.EMail ?? "");
|
|
paragraph.Style = "TableValue";
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region setup, header and footers
|
|
|
|
public static void DefineContentSectionInitial(Document document)
|
|
{
|
|
Section section = document.LastSection;
|
|
section.PageSetup.OddAndEvenPagesHeaderFooter = false;
|
|
section.PageSetup.Orientation = Orientation.Portrait;
|
|
HeaderFooter header = section.Headers.Primary;
|
|
header.AddParagraph(string.Format("Bremer Schiffsmeldedienst - created {0}", DateTime.Now.ToString()));
|
|
|
|
Paragraph paragraph = new Paragraph();
|
|
paragraph.AddTab();
|
|
paragraph.AddPageField();
|
|
paragraph.AddText(" / ");
|
|
paragraph.AddNumPagesField();
|
|
section.Footers.Primary.Add(paragraph);
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Defines page setup, headers, and footers.
|
|
/// </summary>
|
|
public static void DefineContentSection(Document document, Orientation orientation, bool isInitialSection)
|
|
{
|
|
Section section = document.AddSection();
|
|
section.PageSetup.OddAndEvenPagesHeaderFooter = true;
|
|
if(isInitialSection)
|
|
section.PageSetup.StartingNumber = 1;
|
|
section.PageSetup.Orientation = orientation;
|
|
|
|
HeaderFooter header = section.Headers.Primary;
|
|
header.AddParagraph("\tEU-NOAD receive receipt");
|
|
|
|
header = section.Headers.EvenPage;
|
|
header.AddParagraph("EU-NOAD receive receipt");
|
|
|
|
// Create a paragraph with centered page number. See definition of style "Footer".
|
|
Paragraph paragraph = new Paragraph();
|
|
paragraph.AddTab();
|
|
paragraph.AddPageField();
|
|
|
|
// Add paragraph to footer for odd pages.
|
|
section.Footers.Primary.Add(paragraph);
|
|
// Add clone of paragraph to footer for odd pages. Cloning is necessary because an object must
|
|
// not belong to more than one other object. If you forget cloning an exception is thrown.
|
|
section.Footers.EvenPage.Add(paragraph.Clone());
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region NSW data
|
|
|
|
public static void AddNSWMessageParagraph(Document document, IMessageParagraph messageParagraph)
|
|
{
|
|
Message message = messageParagraph as Message;
|
|
|
|
#region Einzelne Seite in Landscape für CREW Meldung
|
|
|
|
if ((message != null) && (message.MessageNotificationClass == Message.NotificationClass.CREW))
|
|
{
|
|
// Landscape!
|
|
BSMDDocument.DefineContentSection(document, Orientation.Landscape, false);
|
|
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(messageParagraph.Title), "Heading2");
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(messageParagraph.Subtitle), "Heading3");
|
|
|
|
BSMDDocument.CreateCrewTable(document, message);
|
|
|
|
BSMDDocument.DefineContentSection(document, Orientation.Portrait, false);
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Einzelne Seite in Landscape für PAS Meldung
|
|
|
|
if ((message != null) && (message.MessageNotificationClass == Message.NotificationClass.PAS))
|
|
{
|
|
// Landscape!
|
|
BSMDDocument.DefineContentSection(document, Orientation.Landscape, false);
|
|
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(messageParagraph.Title), "Heading2");
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(messageParagraph.Subtitle), "Heading3");
|
|
|
|
BSMDDocument.CreatePassengerTable(document, message);
|
|
|
|
BSMDDocument.DefineContentSection(document, Orientation.Portrait, false);
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(messageParagraph.Title), "Heading2");
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(messageParagraph.Subtitle), "Heading3");
|
|
|
|
#region Spezialbehandlung WAS Meldung
|
|
|
|
if ((message != null) && (message.MessageNotificationClass == Message.NotificationClass.WAS))
|
|
{
|
|
BSMDDocument.CreateWASTable(document, message);
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region BKRD
|
|
|
|
if((message != null) && (message.MessageNotificationClass == Message.NotificationClass.BKRD))
|
|
{
|
|
BSMDDocument.CreateBKRDTable(document, message);
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region BKRA
|
|
|
|
if ((message != null) && (message.MessageNotificationClass == Message.NotificationClass.BKRA))
|
|
{
|
|
BSMDDocument.CreateBKRATable(document, message);
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region LADG
|
|
/*
|
|
if((message != null) && (message.MessageNotificationClass == Message.NotificationClass.LADG))
|
|
{
|
|
BSMDDocument.CreateLADGTable(document, message);
|
|
return;
|
|
}
|
|
*/
|
|
#endregion
|
|
|
|
if (messageParagraph.MessageText != null) // komplette Nachricht (z.B. STAT)
|
|
BSMDDocument.AddActualTableParagraph(document, messageParagraph, false);
|
|
|
|
#region SEC
|
|
|
|
if((message != null) && (message.MessageNotificationClass == Message.NotificationClass.SEC))
|
|
{
|
|
BSMDDocument.CreateLast10PortFacilitiesTable(document, message);
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region MDH
|
|
|
|
if((message != null) && (message.MessageNotificationClass == Message.NotificationClass.MDH))
|
|
{
|
|
BSMDDocument.CreatePoCLast30DaysTable(document, message);
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Child paragraphs (1:n message CREW, PAS,..)
|
|
|
|
if (messageParagraph.ChildParagraphs != null)
|
|
{
|
|
foreach (IMessageParagraph childParagraph in messageParagraph.ChildParagraphs)
|
|
{
|
|
BSMDDocument.AddActualTableParagraph(document, childParagraph, true);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
#region CREW
|
|
private static void CreateCrewTable(Document document, Message message)
|
|
{
|
|
Table table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
|
|
Row hRow = table.AddRow();
|
|
hRow.Cells[1].AddParagraph("Last name");
|
|
hRow.Cells[2].AddParagraph("First name");
|
|
hRow.Cells[3].AddParagraph("Place of birth");
|
|
hRow.Cells[4].AddParagraph("Date of birth");
|
|
hRow.Cells[5].AddParagraph("Gender");
|
|
hRow.Cells[6].AddParagraph("Nat.");
|
|
hRow.Cells[7].AddParagraph("Id doc. type");
|
|
hRow.Cells[8].AddParagraph("Id doc. number");
|
|
hRow.Cells[9].AddParagraph("Visa number");
|
|
hRow.Cells[10].AddParagraph("Duty");
|
|
|
|
for (int i = 0; i < message.Elements.Count; i++)
|
|
{
|
|
CREW crew = message.Elements[i] as CREW;
|
|
Row row = table.AddRow();
|
|
row.Cells[0].AddParagraph((i + 1).ToString());
|
|
row.Cells[1].AddParagraph(crew.CrewMemberLastName ?? "");
|
|
row.Cells[2].AddParagraph(crew.CrewMemberFirstName ?? "");
|
|
row.Cells[3].AddParagraph(crew.CrewMemberPlaceOfBirth ?? "");
|
|
row.Cells[4].AddParagraph(crew.CrewMemberDateOfBirthDisplay);
|
|
row.Cells[5].AddParagraph(crew.CrewMemberGenderDisplay);
|
|
row.Cells[6].AddParagraph(crew.CrewMemberNationality ?? "");
|
|
row.Cells[7].AddParagraph(crew.CrewMemberIdentityDocumentTypeDisplay);
|
|
row.Cells[8].AddParagraph(crew.CrewMemberIdentityDocumentId ?? "");
|
|
row.Cells[9].AddParagraph(crew.CrewMemberVisaNumber ?? "");
|
|
row.Cells[10].AddParagraph(crew.CrewMemberDuty ?? "");
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region PAS
|
|
private static void CreatePassengerTable(Document document, Message message)
|
|
{
|
|
Table table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(0.8);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1.8);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1.5);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1.5);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(0.5);
|
|
|
|
Row hRow = table.AddRow();
|
|
hRow.Cells[1].AddParagraph("Last name");
|
|
hRow.Cells[2].AddParagraph("First name");
|
|
hRow.Cells[3].AddParagraph("Place of birth");
|
|
hRow.Cells[4].AddParagraph("Date of birth");
|
|
hRow.Cells[5].AddParagraph("Gender");
|
|
hRow.Cells[6].AddParagraph("Nat.");
|
|
hRow.Cells[7].AddParagraph("Id doc. type");
|
|
hRow.Cells[8].AddParagraph("Id doc. number");
|
|
hRow.Cells[9].AddParagraph("Visa number");
|
|
hRow.Cells[10].AddParagraph("Emb.");
|
|
hRow.Cells[11].AddParagraph("Disemb.");
|
|
hRow.Cells[12].AddParagraph("T");
|
|
|
|
for (int i = 0; i < message.Elements.Count; i++)
|
|
{
|
|
PAS pas = message.Elements[i] as PAS;
|
|
Row row = table.AddRow();
|
|
row.Cells[0].AddParagraph((i + 1).ToString());
|
|
row.Cells[1].AddParagraph(pas.PassengerLastName ?? "");
|
|
row.Cells[2].AddParagraph(pas.PassengerFirstName ?? "");
|
|
row.Cells[3].AddParagraph(pas.PassengerPlaceOfBirth ?? "");
|
|
row.Cells[4].AddParagraph(pas.PassengerDateOfBirthDisplay);
|
|
row.Cells[5].AddParagraph(pas.PassengerGenderDisplay);
|
|
row.Cells[6].AddParagraph(pas.PassengerNationality ?? "");
|
|
row.Cells[7].AddParagraph(pas.PassengerIdentityDocumentTypeDisplay);
|
|
row.Cells[8].AddParagraph(pas.PassengerIdentityDocumentId ?? "");
|
|
row.Cells[9].AddParagraph(pas.PassengerVisaNumber ?? "");
|
|
row.Cells[10].AddParagraph(pas.PassengerPortOfEmbarkation ?? "");
|
|
row.Cells[11].AddParagraph(pas.PassengerPortOfDisembarkation ?? "");
|
|
row.Cells[12].AddParagraph(pas.PassengerInTransit ?? false ? "X" : "");
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region MDH
|
|
|
|
private static void CreatePoCLast30DaysTable(Document document, Message message)
|
|
{
|
|
MDH mdh = message.Elements[0] as MDH;
|
|
if (mdh.PortOfCallLast30Days.Count > 0)
|
|
{
|
|
document.LastSection.AddParagraph("Port of call last 30 days", "Heading3");
|
|
Table table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(0.8);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1.2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(9);
|
|
|
|
Row hRow = table.AddRow();
|
|
|
|
hRow.Cells[1].AddParagraph("Port");
|
|
hRow.Cells[2].AddParagraph("Date of departure");
|
|
hRow.Cells[3].AddParagraph("Crew members joined");
|
|
hRow.Cells[4].AddParagraph("Names of joining crew");
|
|
|
|
for (int i = 0; i < mdh.PortOfCallLast30Days.Count; i++)
|
|
{
|
|
Row row = table.AddRow();
|
|
BSMDDocument.SetPoCLast30Days(((PortOfCallLast30Days) mdh.PortOfCallLast30Days[i]), row);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void SetPoCLast30Days(PortOfCallLast30Days portOfCallLast30Days, Row row)
|
|
{
|
|
row.Cells[0].AddParagraph(portOfCallLast30Days.Identifier);
|
|
row.Cells[1].AddParagraph(portOfCallLast30Days.PortOfCallLast30DaysLocode ?? "");
|
|
row.Cells[2].AddParagraph(portOfCallLast30Days.PortOfCallLast30DaysDateOfDeparture.HasValue ?
|
|
portOfCallLast30Days.PortOfCallLast30DaysDateOfDeparture.Value.ToShortDateString() : "");
|
|
row.Cells[3].AddParagraph(portOfCallLast30Days.PortOfCallLast30DaysCrewMembersJoined.HasValue ?
|
|
portOfCallLast30Days.PortOfCallLast30DaysCrewMembersJoined.Value ? "Yes" : "No" : "");
|
|
for (int i = 0; i < portOfCallLast30Days.CrewJoinedShip.Count; i++)
|
|
{
|
|
row.Cells[4].AddParagraph(((PortOfCallLast30DaysCrewJoinedShip)portOfCallLast30Days.CrewJoinedShip[i]).PortOfCallLast30DaysCrewJoinedShipName ?? "");
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region LADG
|
|
|
|
private static void CreateLADGTable(Document document, Message message)
|
|
{
|
|
Table table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(7);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(4);
|
|
|
|
Row hRow = table.AddRow();
|
|
hRow.Cells[1].AddParagraph("handling type");
|
|
hRow.Cells[2].AddParagraph("Code (NST2007)");
|
|
hRow.Cells[3].AddParagraph("Number of items");
|
|
hRow.Cells[4].AddParagraph("Gross quantity (tons)");
|
|
|
|
for (int i = 0; i < message.Elements.Count; i++)
|
|
{
|
|
Row row = table.AddRow();
|
|
LADG ladg = message.Elements[i] as LADG;
|
|
row.Cells[0].AddParagraph((i + 1).ToString());
|
|
row.Cells[1].AddParagraph(ladg.CargoHandlingType.HasValue ? (ladg.CargoHandlingType.Value == 0) ? "Load" : "Discharge" : "");
|
|
row.Cells[2].AddParagraph(ladg.CargoCodeNST ?? "");
|
|
row.Cells[3].AddParagraph(ladg.CargoNumberOfItems.HasValue ? ladg.CargoNumberOfItems.Value.ToString() : "");
|
|
row.Cells[4].AddParagraph(ladg.CargoGrossQuantity_TNE.HasValue ? ladg.CargoGrossQuantity_TNE.Value.ToString("N2") : "");
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region SEC
|
|
|
|
private static void CreateLast10PortFacilitiesTable(Document document, Message message)
|
|
{
|
|
SEC sec = message.Elements[0] as SEC;
|
|
if (sec.LastTenPortFacilitesCalled.Count > 0)
|
|
{
|
|
document.LastSection.AddParagraph("Last 10 port facilites called", "Heading3");
|
|
Table table = document.LastSection.AddTable();
|
|
table.Format.Font.Size = 8;
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(0.8);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(3.9);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1.5);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(0.8);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(1);
|
|
|
|
Row hRow = table.AddRow();
|
|
hRow.Cells[0].AddParagraph("No.");
|
|
hRow.Cells[1].AddParagraph("Port name");
|
|
hRow.Cells[2].AddParagraph("Country");
|
|
hRow.Cells[3].AddParagraph("LoCode");
|
|
hRow.Cells[4].AddParagraph("Arr.");
|
|
hRow.Cells[5].AddParagraph("Dep.");
|
|
hRow.Cells[6].AddParagraph("Ship sec. level");
|
|
hRow.Cells[7].AddParagraph("sec. matter to report");
|
|
hRow.Cells[8].AddParagraph("GISIS");
|
|
|
|
for(int i=0;i<sec.LastTenPortFacilitesCalled.Count;i++) {
|
|
Row row = table.AddRow();
|
|
BSMDDocument.SetLast10PortFacility((i + 1), ((LastTenPortFacilitiesCalled) sec.LastTenPortFacilitesCalled[i]), row);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void SetLast10PortFacility(int p, LastTenPortFacilitiesCalled lastTenPortFacilitiesCalled, Row row)
|
|
{
|
|
row.Cells[0].AddParagraph(p.ToString());
|
|
row.Cells[1].AddParagraph(lastTenPortFacilitiesCalled.PortFacilityPortName ?? "");
|
|
row.Cells[2].AddParagraph(lastTenPortFacilitiesCalled.PortFacilityPortCountry ?? "");
|
|
row.Cells[3].AddParagraph(lastTenPortFacilitiesCalled.PortFacilityPortLoCode ?? "");
|
|
row.Cells[4].AddParagraph(lastTenPortFacilitiesCalled.PortFacilityDateOfArrival.HasValue ? lastTenPortFacilitiesCalled.PortFacilityDateOfArrival.Value.ToShortDateString() : "");
|
|
row.Cells[5].AddParagraph(lastTenPortFacilitiesCalled.PortFacilityDateOfDeparture.HasValue ? lastTenPortFacilitiesCalled.PortFacilityDateOfDeparture.Value.ToShortDateString() : "");
|
|
row.Cells[6].AddParagraph(lastTenPortFacilitiesCalled.PortFacilityShipSecurityLevel.HasValue ? lastTenPortFacilitiesCalled.PortFacilityShipSecurityLevel.ToString() : "");
|
|
row.Cells[7].AddParagraph(lastTenPortFacilitiesCalled.PortFacilitySecurityMattersToReport ?? "");
|
|
row.Cells[8].AddParagraph(lastTenPortFacilitiesCalled.PortFacilityGISISCode ?? "");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region BKRD
|
|
|
|
private static void CreateBKRDTable(Document document, Message message)
|
|
{
|
|
Table table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(6);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(8);
|
|
|
|
Row hRow = table.AddRow();
|
|
hRow.Cells[1].AddParagraph("Name / type of fuel");
|
|
hRow.Cells[2].AddParagraph("Bunker fuel amount in tons");
|
|
|
|
for (int i = 0; i < message.Elements.Count; i++)
|
|
{
|
|
Row row = table.AddRow();
|
|
BRKD brkd = message.Elements[i] as BRKD;
|
|
row.Cells[0].AddParagraph((i + 1).ToString());
|
|
row.Cells[1].AddParagraph(brkd.BunkerFuelType ?? "");
|
|
row.Cells[2].AddParagraph(brkd.BunkerFuelQuantity_TNE.HasValue ? brkd.BunkerFuelQuantity_TNE.Value.ToString("N2") : "");
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region BKRA
|
|
|
|
private static void CreateBKRATable(Document document, Message message)
|
|
{
|
|
Table table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(6);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(8);
|
|
|
|
Row hRow = table.AddRow();
|
|
hRow.Cells[1].AddParagraph("Name / type of fuel");
|
|
hRow.Cells[2].AddParagraph("Bunker fuel amount in tons");
|
|
|
|
for (int i = 0; i < message.Elements.Count; i++)
|
|
{
|
|
Row row = table.AddRow();
|
|
BRKA brkd = message.Elements[i] as BRKA;
|
|
row.Cells[0].AddParagraph((i + 1).ToString());
|
|
row.Cells[1].AddParagraph(brkd.BunkerFuelType ?? "");
|
|
row.Cells[2].AddParagraph(brkd.BunkerFuelQuantity_TNE.HasValue ? brkd.BunkerFuelQuantity_TNE.Value.ToString("N2") : "");
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region CreateWASTable
|
|
|
|
private static void CreateWASTable(Document document, Message message)
|
|
{
|
|
WAS was = message.Elements[0] as WAS;
|
|
|
|
Table table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Center;
|
|
table.Borders.Visible = true;
|
|
|
|
Column column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(10);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(6);
|
|
|
|
Row row = table.AddRow();
|
|
|
|
row.Cells[0].AddParagraph("Valid exemption?");
|
|
row.Cells[1].AddParagraph("Confirmation of correctness");
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph(was.WasteDisposalValidExemption ?? false ? "Yes" : "No");
|
|
row.Cells[1].AddParagraph(was.ConfirmationOfCorrectness ?? false ? "Yes" : "No");
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("Last port where waste or cargo residues were discharged");
|
|
row.Cells[1].AddParagraph("Date of last disposal");
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph(was.LastWasteDisposalPort ?? "");
|
|
if(was.LastWasteDisposalDate.HasValue)
|
|
row.Cells[1].AddParagraph(was.LastWasteDisposalDate?.ToShortDateString());
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("Name of waste disposal service provider");
|
|
row.Cells[1].AddParagraph("Waste disposal order (all, some, none)");
|
|
row = table.AddRow();
|
|
for (int i = 0; i < was.WasteDisposalServiceProvider.Count; i++)
|
|
row.Cells[0].AddParagraph(((WasteDisposalServiceProvider) was.WasteDisposalServiceProvider[i]).WasteDisposalServiceProviderName);
|
|
if (was.WasteDisposalDelivery.HasValue)
|
|
row.Cells[1].AddParagraph((was.WasteDisposalDelivery.Value == 0) ? "ALL" : (was.WasteDisposalDelivery == 1) ? "SOME" : "NONE");
|
|
|
|
table = document.LastSection.AddTable();
|
|
table.Rows.VerticalAlignment = VerticalAlignment.Top;
|
|
table.Borders.Visible = true;
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(4);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
column = table.AddColumn();
|
|
column.Width = Unit.FromCentimeter(2);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("TYPE");
|
|
row.Cells[1].AddParagraph("Description");
|
|
row.Cells[2].AddParagraph("Amount to be disposed");
|
|
row.Cells[3].AddParagraph("Maximum dedicated storage capacity on board");
|
|
row.Cells[4].AddParagraph("Amount retained on board");
|
|
row.Cells[5].AddParagraph("Port of delivery of remaining waste");
|
|
row.Cells[6].AddParagraph("Estimated waste/cargo residues amount generated between port of call and next port");
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("1100 Oily residues (sludge)");
|
|
GetWasteForIndex(1100, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("1200 Oily bilge water");
|
|
GetWasteForIndex(1200, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("1300 Waste oil - others");
|
|
GetWasteForIndex(1300, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("2100 Food waste");
|
|
GetWasteForIndex(2100, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("2200 Plastic");
|
|
GetWasteForIndex(2200, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("2300 Domestic wastes");
|
|
GetWasteForIndex(2300, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("2311 Cooking oil");
|
|
GetWasteForIndex(2311, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("2308 Incinerator ashes");
|
|
GetWasteForIndex(2308, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("2600 Operational wastes");
|
|
GetWasteForIndex(2600, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("2309 Animal carcass(es)");
|
|
GetWasteForIndex(2309, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("3000 Sewage");
|
|
GetWasteForIndex(3000, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("5100 Cargo residues - Marpol Annex I");
|
|
GetWasteForIndex(5100, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("5200 Cargo residues - Marpol Annex II");
|
|
GetWasteForIndex(5200, was, row);
|
|
|
|
row = table.AddRow();
|
|
row.Cells[0].AddParagraph("5300 Cargo residues - Marpol Annex ");
|
|
GetWasteForIndex(5300, was, row);
|
|
|
|
}
|
|
|
|
private static void GetWasteForIndex(int index, WAS was, Row row)
|
|
{
|
|
foreach (Waste waste in was.Waste)
|
|
{
|
|
if (!waste.WasteType.HasValue) continue; // kaputt!
|
|
if (waste.WasteType.Value == index)
|
|
{
|
|
row.Cells[1].AddParagraph(waste.WasteDescription ?? "");
|
|
row.Cells[2].AddParagraph(waste.WasteDisposalAmount_MTQ.HasValue ? waste.WasteDisposalAmount_MTQ.Value.ToString("N3") : "");
|
|
row.Cells[3].AddParagraph(waste.WasteCapacity_MTQ.HasValue ? waste.WasteCapacity_MTQ.Value.ToString("N3") : "");
|
|
row.Cells[4].AddParagraph(waste.WasteAmountRetained_MTQ.HasValue ? waste.WasteAmountRetained_MTQ.Value.ToString("N3") : "");
|
|
row.Cells[5].AddParagraph(waste.WasteDisposalPort ?? "");
|
|
row.Cells[6].AddParagraph(waste.WasteAmountGeneratedTillNextPort_MTQ.HasValue ? waste.WasteAmountGeneratedTillNextPort_MTQ.Value.ToString("N3") : "");
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
private static void AddActualTableParagraph(Document document, IMessageParagraph paragraph, bool isSubTable)
|
|
{
|
|
|
|
if(isSubTable)
|
|
{
|
|
if(!paragraph.Title.IsNullOrEmpty())
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(paragraph.Title), "Heading3");
|
|
if(!paragraph.Subtitle.IsNullOrEmpty())
|
|
document.LastSection.AddParagraph(BSMDDocument.ReplaceTitle(paragraph.Subtitle), "Heading4");
|
|
}
|
|
|
|
List<KeyValuePair<string, string>> messageText = BSMDDocument.ReplaceLabels(paragraph.MessageText);
|
|
|
|
Table table = document.LastSection.AddTable();
|
|
table.Borders.Color = Colors.LightGray;
|
|
|
|
|
|
Column leadColumn = table.AddColumn(200);
|
|
leadColumn.Format.Alignment = ParagraphAlignment.Left;
|
|
|
|
|
|
Column mainColumn = table.AddColumn(290);
|
|
mainColumn.Format.Alignment = ParagraphAlignment.Left;
|
|
|
|
for (int i = 0; i < messageText.Count; i++)
|
|
{
|
|
KeyValuePair<string, string> elem = messageText[i];
|
|
Row row = table.AddRow();
|
|
Cell cell = row.Cells[0];
|
|
Paragraph aParagraph = cell.AddParagraph(elem.Key);
|
|
if (elem.Value.IsNullOrEmpty())
|
|
aParagraph.Style = "Gray";
|
|
string val = elem.Value;
|
|
// funktioniert leider nicht, müsste das auf PDFsharp umstellen (http://www.pdfsharp.net/wiki/Unicode-sample.ashx)
|
|
if (val == "True") val = "Yes"; // @"\u2611"; // unicode ballot box with check
|
|
if (val == "False") val = "No"; // @"\u2610"; // unicode ballot box
|
|
row.Cells[1].AddParagraph(val);
|
|
}
|
|
|
|
if (isSubTable)
|
|
{
|
|
table.SetEdge(0, 0, 2, messageText.Count, Edge.Box, BorderStyle.DashLargeGap, new Unit(1.0, UnitType.Point));
|
|
}
|
|
|
|
document.LastSection.AddParagraph();
|
|
|
|
if (isSubTable)
|
|
{
|
|
if (paragraph.ChildParagraphs != null)
|
|
{
|
|
foreach (IMessageParagraph childParagraph in paragraph.ChildParagraphs)
|
|
AddActualTableParagraph(document, childParagraph, true);
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Spezialbehandlung Ersetzen einzelner Felder durch Klartexte
|
|
/// <summary>
|
|
/// Auf besonderen Wunsch einer einzelnen Dame :D
|
|
/// </summary>
|
|
/// <param name="propertyName">Name des Felds (ohne Klassenname)</param>
|
|
/// <param name="value">Aktueller Wert / Wert aus der DB</param>
|
|
/// <returns>ggf. ersetzter Wert</returns>
|
|
|
|
|
|
private static string DatabaseEntity_ReportReplacer(string propertyName, string value)
|
|
{
|
|
if (propertyName.IsNullOrEmpty()) return value;
|
|
if (value.IsNullOrEmpty()) return value;
|
|
|
|
string result = value;
|
|
|
|
// ACHTUNG! Die Name (propertyName) sind die bereits in report.db *ersetzten* Namen, d.h. ändert man dort
|
|
// wieder etwas funktioniert es ggf. hier nicht mehr. Das ist leider aufwändig zu ändern, man müsste die Report
|
|
// Erzeugung komplett umbauen
|
|
|
|
switch(propertyName)
|
|
{
|
|
case "PackageType":
|
|
if (LocalizedLookup.getPackageTypes().ContainsKey(value))
|
|
result = string.Format("{0} - {1}", value, LocalizedLookup.getPackageTypes()[value]);
|
|
break;
|
|
case "PortOfLoading":
|
|
case "PortOfDischarge":
|
|
case "PoC":
|
|
{
|
|
string portName = LocodeDB.PortNameFromLocode(value);
|
|
if (!portName.IsNullOrEmpty())
|
|
{
|
|
result = string.Format("{0} - {1}", value, portName);
|
|
}
|
|
}
|
|
break;
|
|
case "Ship Type":
|
|
if (LocalizedLookup.getVesselTypes().ContainsKey(value))
|
|
result = string.Format("{0} - {1}", value, LocalizedLookup.getVesselTypes()[value]);
|
|
break;
|
|
case "INFShipClass":
|
|
case "INF-Ship-Class":
|
|
case "INF - Ship - Class":
|
|
{
|
|
switch(value)
|
|
{
|
|
case "0": result = "INF1"; break;
|
|
case "1": result = "INF2"; break;
|
|
case "2": result = "INF3"; break;
|
|
default: break;
|
|
}
|
|
}
|
|
break;
|
|
case "PackingGroup":
|
|
case "Packing Group":
|
|
{
|
|
switch (value)
|
|
{
|
|
case "0": result = "I"; break;
|
|
case "1": result = "II"; break;
|
|
case "2": result = "III"; break;
|
|
default: break;
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if(propertyName.Contains("flag", StringComparison.OrdinalIgnoreCase))
|
|
if (LocalizedLookup.getNationalities().ContainsKey(value))
|
|
result = LocalizedLookup.getNationalities()[value];
|
|
|
|
if(propertyName.Contains("port", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
string portName = LocodeDB.PortNameFromLocode(value);
|
|
if (!portName.IsNullOrEmpty())
|
|
{
|
|
result = string.Format("{0} - {1}", value, portName);
|
|
}
|
|
}
|
|
|
|
if (propertyName.Contains("nst2007", StringComparison.OrdinalIgnoreCase))
|
|
if (LocalizedLookup.getCargoCodesNST().ContainsKey(value))
|
|
result = LocalizedLookup.getCargoCodesNST()[value];
|
|
|
|
|
|
return result;
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|