|
@@ -1,62 +1,52 @@
|
|
|
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="GCHR.Main" xmlns:View="clr-namespace:GCHR.View" xml:lang="de-DE"
|
|
|
- Title="GCHR - GlobalCube Herstellerreporting"
|
|
|
- Height="507" Width="633"
|
|
|
- WindowStyle="SingleBorderWindow" SizeToContent="Manual" ResizeMode="CanMinimize" Loaded="WindowLoaded"> <!-- Icon="pack://siteOfOrigin:,,,/img/GCHR.ico">-->
|
|
|
-
|
|
|
- <Window.Resources>
|
|
|
- <Storyboard x:Key="sbGridMainAusblenden">
|
|
|
- <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridMain" Storyboard.TargetProperty="Opacity" />
|
|
|
- </Storyboard>
|
|
|
-
|
|
|
- <Storyboard x:Key="sbGridMainEinblenden">
|
|
|
- <DoubleAnimation From=".0" To="1.0" Duration="0:0:0.3" Storyboard.TargetName="GridMain" Storyboard.TargetProperty="Opacity" />
|
|
|
- </Storyboard>
|
|
|
-
|
|
|
- <Storyboard x:Key="sbGridManuelleAusblenden">
|
|
|
- <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridManuelle" Storyboard.TargetProperty="Opacity" />
|
|
|
- </Storyboard>
|
|
|
-
|
|
|
- <Storyboard x:Key="sbGridManuelleEinblenden">
|
|
|
- <DoubleAnimation From=".0" To="1.0" Duration="0:0:0.3" Storyboard.TargetName="GridManuelle" Storyboard.TargetProperty="Opacity" />
|
|
|
- </Storyboard>
|
|
|
-
|
|
|
- <Storyboard x:Key="sbGridOverlayAusblenden">
|
|
|
- <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridOverlay" Storyboard.TargetProperty="Opacity" />
|
|
|
- </Storyboard>
|
|
|
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="GCHR.Main" xmlns:view="clr-namespace:GCHR.View"
|
|
|
+ xmlns:model="clr-namespace:GCHR.Model"
|
|
|
+ xml:lang="de-DE"
|
|
|
+ Title="GCHR - GlobalCube Herstellerreporting"
|
|
|
+ WindowStyle="SingleBorderWindow" ResizeMode="CanMinimize" Loaded="WindowLoaded" SizeToContent="WidthAndHeight">
|
|
|
|
|
|
- <Storyboard x:Key="sbGridOverlayEinblenden">
|
|
|
- <DoubleAnimation From=".0" To="1.0" BeginTime="0:0:0" Duration="0:0:0.3" Storyboard.TargetName="GridOverlay" Storyboard.TargetProperty="Opacity" />
|
|
|
- </Storyboard>
|
|
|
- <Style x:Key="taskLabel" TargetType="{x:Type TextBlock}">
|
|
|
- <Setter Property="FontSize" Value="12" />
|
|
|
- <Setter Property="Margin" Value="25,0,0,0" />
|
|
|
+ <Window.Resources>
|
|
|
+ <Style x:Key="TaskLabel" TargetType="{x:Type TextBlock}">
|
|
|
+ <Setter Property="Margin" Value="5,2,0,5" />
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
- <Setter Property="VerticalAlignment" Value="Center" />
|
|
|
+ <Setter Property="Width" Value="290" />
|
|
|
+ <Setter Property="HorizontalAlignment" Value="Left" />
|
|
|
</Style>
|
|
|
- <Style x:Key="taskHead" TargetType="{x:Type TextBlock}">
|
|
|
+ <Style x:Key="TaskHead" TargetType="{x:Type TextBlock}">
|
|
|
<Setter Property="FontSize" Value="14" />
|
|
|
<Setter Property="FontWeight" Value="Bold" />
|
|
|
- <Setter Property="Margin" Value="10,0,0,0" />
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
- <Setter Property="VerticalAlignment" Value="Center" />
|
|
|
</Style>
|
|
|
+
|
|
|
+ <DataTemplate x:Key="StatusTemplate" DataType="{x:Type model:Periode}">
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock FontSize="14" FontWeight="Bold" Margin="5,2,135,2" Text="{Binding Klartext}" />
|
|
|
+ <view:Ampel Status="Gelb" Message="{Binding Info}" />
|
|
|
+ <TextBlock VerticalAlignment="Center" Margin="25,2,5,2" Text="{Binding Stand}"/>
|
|
|
+ </WrapPanel>
|
|
|
+ </DataTemplate>
|
|
|
</Window.Resources>
|
|
|
-
|
|
|
+
|
|
|
<Grid>
|
|
|
- <Grid Opacity="1.0" Name="GridMain">
|
|
|
- <Grid.Background>
|
|
|
- <LinearGradientBrush StartPoint="0,1" EndPoint="0,0">
|
|
|
- <GradientStop Color="#FF9EBFDE" Offset=".5"/>
|
|
|
- <GradientStop Color="#FF30567A" Offset="1"/>
|
|
|
- </LinearGradientBrush>
|
|
|
- </Grid.Background>
|
|
|
- <Label Height="32" Margin="12,0,0,0" Foreground="White" VerticalAlignment="Top" HorizontalAlignment="Left" FontSize="14" FontWeight="Bold">
|
|
|
- Periode auswählen
|
|
|
- </Label>
|
|
|
- <WrapPanel Margin="12,30,168,2" ClipToBounds="False">
|
|
|
+ <Grid.Background>
|
|
|
+ <LinearGradientBrush StartPoint="0,1" EndPoint="0,0">
|
|
|
+ <GradientStop Color="#FF9EBFDE" Offset=".5" />
|
|
|
+ <GradientStop Color="#FF30567A" Offset="1" />
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Grid.Background>
|
|
|
+ <StackPanel Opacity="1.0" Name="GridMain" Margin="10">
|
|
|
+
|
|
|
+ <Label Foreground="White" FontSize="20" FontWeight="Bold" Name="Kopfzeile">AZ West - Opel</Label>
|
|
|
+
|
|
|
+ <!--
|
|
|
+ <ScrollViewer Height="80" Margin="10,3">
|
|
|
+ <ListView Name="LvPerioden" ItemTemplate="{StaticResource StatusTemplate}"/>
|
|
|
+ </ScrollViewer>
|
|
|
+-->
|
|
|
+ <Label Foreground="White" FontSize="14" FontWeight="Bold">Periode auswählen</Label>
|
|
|
+ <WrapPanel HorizontalAlignment="Center" Margin="0,0,0,10">
|
|
|
<Label Foreground="White">Monat:</Label>
|
|
|
- <ComboBox Name="monatsbox" Width="100" Margin="0,0,10,0">
|
|
|
+ <ComboBox Name="Monatsbox" Width="100" Margin="0,0,10,0" VerticalContentAlignment="Center">
|
|
|
<ComboBoxItem>Januar</ComboBoxItem>
|
|
|
<ComboBoxItem>Februar</ComboBoxItem>
|
|
|
<ComboBoxItem>März</ComboBoxItem>
|
|
@@ -71,119 +61,91 @@
|
|
|
<ComboBoxItem>Dezember</ComboBoxItem>
|
|
|
</ComboBox>
|
|
|
<Label Foreground="White">Jahr:</Label>
|
|
|
- <ComboBox Name="jahrbox" Width="55" Margin="0,0,15,0" />
|
|
|
- <Button Template="{DynamicResource GlassButton}" Margin="10,0,0,0" Click="BtnStartenClick" Width="131" Foreground="White" Name="btnStarten">
|
|
|
- Prozess starten
|
|
|
- </Button>
|
|
|
+ <ComboBox Name="Jahrbox" Width="55" Margin="0,0,15,0" VerticalContentAlignment="Center" />
|
|
|
+ <Button Click="BtnStartenClick" Width="100" Name="BtnStarten">Prozess starten</Button>
|
|
|
</WrapPanel>
|
|
|
|
|
|
- <Border CornerRadius="5" BorderThickness="0.5" BorderBrush="Black" Margin="12,74,192,15.553" Padding="3,3,3,10">
|
|
|
+ <Border CornerRadius="5" BorderThickness="1" BorderBrush="Black" Margin="0" Padding="10,5">
|
|
|
<Border.Background>
|
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
|
|
- <GradientStop Color="#FF9EBFDE" Offset="-.1"/>
|
|
|
- <GradientStop Color="#FF30567A" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF9EBFDE" Offset="-.1" />
|
|
|
+ <GradientStop Color="#FF30567A" Offset="1" />
|
|
|
</LinearGradientBrush>
|
|
|
</Border.Background>
|
|
|
|
|
|
- <Grid Background="Transparent" Width="360">
|
|
|
- <Grid.ColumnDefinitions>
|
|
|
- <ColumnDefinition />
|
|
|
- <ColumnDefinition Width="55" />
|
|
|
- </Grid.ColumnDefinitions>
|
|
|
-
|
|
|
- <Grid.RowDefinitions>
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- <RowDefinition />
|
|
|
- </Grid.RowDefinitions>
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskHead}" Grid.ColumnSpan="2">Vorbereitungen</TextBlock>
|
|
|
-
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="1">Kontenrahmen laden</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_KontenrahmenLaden" Grid.Row="1" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="2">Übersetzungstabelle laden</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_ÜbersetzungstabelleLaden" Grid.Row="2" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="3">Übersetzungstabelle für Statistikkonten laden</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_ÜbersetzungstabelleStatLaden" Grid.Row="3" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="4" HorizontalAlignment="Left" Width="282">Vormonatswerte für manuelle Konten laden</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_ManuelleLaden" Grid.Row="4" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskHead}" Grid.Row="5" Grid.ColumnSpan="2">
|
|
|
- Verarbeitung der Konten
|
|
|
- <CheckBox Name="btnOffline" Margin="100,0,0,0" Checked="BtnOfflineChecked" Unchecked="BtnOfflineChecked">
|
|
|
- <TextBlock FontSize="9" FontWeight="Normal" Foreground="White">Offlinemodus</TextBlock>
|
|
|
- </CheckBox>
|
|
|
+ <StackPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskHead}">Vorbereitungen</TextBlock>
|
|
|
+
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Kontenrahmen laden</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelKontenrahmenLaden" />
|
|
|
+ </WrapPanel>
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Übersetzungstabelle laden</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelÜbersetzungstabelleLaden" />
|
|
|
+ </WrapPanel>
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Übersetzungstabelle für Statistikkonten laden</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelÜbersetzungstabelleStatLaden" />
|
|
|
+ </WrapPanel>
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Vormonatswerte für manuelle Konten laden</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelManuelleLaden" />
|
|
|
+ </WrapPanel>
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskHead}">
|
|
|
+ Verarbeitung der Konten
|
|
|
</TextBlock>
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="6">Import der SuSa-Konten</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_SuSaKontenImport" Grid.Row="6" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="7">
|
|
|
- <CheckBox Name="btnKeinJahresabschluss">
|
|
|
- <TextBlock Foreground="White">Eröffnungsbilanz berechnen</TextBlock>
|
|
|
- </CheckBox>
|
|
|
+ <CheckBox Name="BtnOffline" Margin="100,0,0,0" Checked="BtnOfflineChecked"
|
|
|
+ Unchecked="BtnOfflineChecked">
|
|
|
+ <TextBlock FontSize="9" FontWeight="Normal" Foreground="White">Offlinemodus</TextBlock>
|
|
|
+ </CheckBox>
|
|
|
+ </WrapPanel>
|
|
|
+
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Import der SuSa-Konten</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelSuSaKontenImport" />
|
|
|
+ </WrapPanel>
|
|
|
+
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">
|
|
|
+ <CheckBox Name="BtnKeinJahresabschluss">
|
|
|
+ <TextBlock Foreground="White">Eröffnungsbilanz berechnen</TextBlock>
|
|
|
+ </CheckBox>
|
|
|
</TextBlock>
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="8">Import der Statistikkonten</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_StatKontenImport" Grid.Row="8" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="9">
|
|
|
- <CheckBox Name="btnImportdatenSichern" Checked="BtnImportdatenSichernChecked" Unchecked="BtnImportdatenSichernUnchecked">
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Import der Statistikkonten</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelStatKontenImport" />
|
|
|
+ </WrapPanel>
|
|
|
+
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">
|
|
|
+ <CheckBox Name="BtnImportdatenSichern" Checked="BtnImportdatenSichernChecked"
|
|
|
+ Unchecked="BtnImportdatenSichernUnchecked">
|
|
|
<TextBlock Foreground="White">Importierte Werte sichern</TextBlock>
|
|
|
</CheckBox>
|
|
|
- </TextBlock>
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="10">Übersetzung der Konten</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_SuSaKontenVerarbeitung" Grid.Row="10" Grid.Column="1"/>
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="11">Verarbeitung der manuellen Konten</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_ManuelleKontenVerarbeitung" Grid.Row="11" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskHead}" Grid.Row="12" Grid.ColumnSpan="2">Ergebnisse exportieren</TextBlock>
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="13">Dateien schreiben</TextBlock>
|
|
|
- <View:Ampel x:Name="ampel_Export" Grid.Row="13" Grid.Column="1" />
|
|
|
-
|
|
|
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="14" Visibility="Hidden">
|
|
|
- <CheckBox Name="btnExportprotokoll">
|
|
|
- <TextBlock Foreground="White">Exportprotokoll schreiben</TextBlock>
|
|
|
- </CheckBox>
|
|
|
- </TextBlock>
|
|
|
- </Grid>
|
|
|
+ </TextBlock>
|
|
|
+ </WrapPanel>
|
|
|
+
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Übersetzung der Konten</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelSuSaKontenVerarbeitung" />
|
|
|
+ </WrapPanel>
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Verarbeitung der manuellen Konten</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelManuelleKontenVerarbeitung" />
|
|
|
+ </WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskHead}">Ergebnisse exportieren</TextBlock>
|
|
|
+
|
|
|
+ <WrapPanel>
|
|
|
+ <TextBlock Style="{StaticResource TaskLabel}">Dateien schreiben</TextBlock>
|
|
|
+ <view:Ampel x:Name="AmpelExport" />
|
|
|
+ </WrapPanel>
|
|
|
+ <Button HorizontalAlignment="Left" Width="130" Margin="15,3" Click="BtnProtokollClick"
|
|
|
+ Name="BtnProtokoll" Visibility="Hidden">
|
|
|
+ Export-Verzeichnis
|
|
|
+ </Button>
|
|
|
+ </StackPanel>
|
|
|
</Border>
|
|
|
-
|
|
|
- <StackPanel Margin="0,12,12,0" HorizontalAlignment="Right" Name="stack1" Width="210" Height="149.605" VerticalAlignment="Top">
|
|
|
- <!--<Image Name="imgGlobalCube" Source="pack://siteOfOrigin:,,,/img/GlobalCube.png" />-->
|
|
|
- <!--
|
|
|
- <Label Height="50" Name="label1" VerticalAlignment="Top" FontSize="35" FontWeight="Normal" FontFamily="Gill Sans Ultra Bold" HorizontalAlignment="Right" Width="72" HorizontalContentAlignment="Right" VerticalContentAlignment="Top" Foreground="White">GC</Label>
|
|
|
- <Label Height="23" HorizontalAlignment="Right" Name="label2" FontFamily="Gill Sans Ultra Bold" VerticalAlignment="Top" Width="160" Foreground="White">Herstellerreporting</Label>
|
|
|
- <Image HorizontalAlignment="Right" Name="image1" Stretch="None" Width="50" /> -->
|
|
|
- </StackPanel>
|
|
|
-
|
|
|
- <StackPanel VerticalAlignment="Bottom" Margin="0,0,5,10" HorizontalAlignment="Right" Width="155">
|
|
|
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnManuelleKontenClick" Foreground="White" Height="23" Name="btnManuelleKonten" Visibility="Hidden">Manuelle Konten</Button>
|
|
|
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnProtokollClick" Foreground="White" Height="23" Name="btnProtokoll" Visibility="Hidden">Export-Verzeichnis</Button>
|
|
|
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnEinstellungenClick" Foreground="White" Height="23" Name="btnEinstellungen" Visibility="Hidden">Einstellungen</Button>
|
|
|
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnBeendenClick" Foreground="White" Height="23" Name="btnBeenden">Beenden</Button>
|
|
|
- </StackPanel>
|
|
|
- </Grid>
|
|
|
-
|
|
|
-
|
|
|
+ </StackPanel>
|
|
|
</Grid>
|
|
|
-</Window>
|
|
|
+</Window>
|