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