Compare commits
1
Commits
522970f341
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d53dc968de |
+2
-2
@@ -6,7 +6,7 @@
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
MinWidth="1000" MinHeight="600" IsVisible="False"
|
||||
x:Class="Logof_Client.MainWindow" WindowState="Maximized" Icon="assets/icon.ico"
|
||||
Title="Logof Client">
|
||||
Title="Logofclient">
|
||||
<Border>
|
||||
<Grid RowDefinitions="30,*">
|
||||
<Menu Background="#50888888">
|
||||
@@ -288,7 +288,7 @@
|
||||
<Label Grid.Column="0" Content="Zellenrand rechts (mm)"></Label>
|
||||
<NumericUpDown Grid.Column="1" x:Name="NudExpMargCellPaddingRight" Minimum="0" Maximum="20" Value="5"></NumericUpDown>
|
||||
</Grid>
|
||||
<CheckBox Content="Laufzettel erstellen" x:Name="CbExpRnsEnable"></CheckBox>
|
||||
<CheckBox Content="Bundleitzettel erstellen" x:Name="CbExpRnsEnable"></CheckBox>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Grid.Column="1" Orientation="Vertical" Spacing="10">
|
||||
|
||||
+5
-5
@@ -656,13 +656,13 @@ public class PdfBuilder
|
||||
{
|
||||
path = path.Substring(0, path.Length - 4);
|
||||
international_path = path;
|
||||
path = path + "-Laufzettel.pdf";
|
||||
international_path = international_path + "-Laufzettel-International.pdf";
|
||||
path = path + "-Leitzettel.pdf";
|
||||
international_path = international_path + "-Leitzettel-International.pdf";
|
||||
}
|
||||
else
|
||||
{
|
||||
path = path + "-Laufzettel.pdf";
|
||||
international_path = international_path + "-Laufzettel-International.pdf";
|
||||
path = path + "-Leitzettel.pdf";
|
||||
international_path = international_path + "-Leitzettel-International.pdf";
|
||||
}
|
||||
|
||||
CreateGermanyRunningSheets(setID, path);
|
||||
@@ -674,7 +674,7 @@ public class PdfBuilder
|
||||
{
|
||||
KasAddressList list = Settings._instance.addressSets.GetAddressSetByID(setID);
|
||||
var document = new PdfDocument();
|
||||
document.Info.Title = $"Laufzettel für {list.Name}";
|
||||
document.Info.Title = $"Leitzettel für {list.Name}";
|
||||
document.Info.Subject = "powered by logofclient";
|
||||
document.Info.Author = "logofclient";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user