|
|
|
@ -2,22 +2,109 @@
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:local="clr-namespace:SlnMesnac.WPF.Page"
|
|
|
|
|
xmlns:cvt="clr-namespace:SlnMesnac.WPF.ConvertTo"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
d:DesignHeight="750" d:DesignWidth="1920" Background="Transparent">
|
|
|
|
|
<UserControl.Resources>
|
|
|
|
|
<cvt:MultiBindingConverter x:Key="QueryConvert"></cvt:MultiBindingConverter>
|
|
|
|
|
<!-- 定义样式 -->
|
|
|
|
|
<Style x:Key="CustomDatePicker" TargetType="DatePicker">
|
|
|
|
|
|
|
|
|
|
<!-- 设置背景颜色 -->
|
|
|
|
|
<Setter Property="Background" Value="LightBlue"></Setter>
|
|
|
|
|
<!-- 设置边框颜色 -->
|
|
|
|
|
<Setter Property="BorderBrush" Value="DarkBlue"></Setter>
|
|
|
|
|
<!-- 设置字体样式 -->
|
|
|
|
|
<Setter Property="FontSize" Value="20"></Setter>
|
|
|
|
|
<!-- 设置前景色(文本颜色) -->
|
|
|
|
|
<Setter Property="Foreground" Value="Black"></Setter>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 定义日历的样式 -->
|
|
|
|
|
<Style x:Key="CustomCalendarStyle" TargetType="Calendar">
|
|
|
|
|
<!-- 设置背景颜色 -->
|
|
|
|
|
<Setter Property="Background" Value="White"></Setter>
|
|
|
|
|
<!-- 设置边框颜色 -->
|
|
|
|
|
<Setter Property="BorderBrush" Value="Blue"></Setter>
|
|
|
|
|
|
|
|
|
|
<Setter Property="Width" Value="350"></Setter>
|
|
|
|
|
<Setter Property="Height" Value="250"></Setter>
|
|
|
|
|
<!-- 设置字体样式 -->
|
|
|
|
|
<Setter Property="FontSize" Value="16"></Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</UserControl.Resources>
|
|
|
|
|
|
|
|
|
|
<Grid Margin="5,5">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="6*"/>
|
|
|
|
|
<RowDefinition Height="6*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<Border Grid.Row="0" Grid.Column="0" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<WrapPanel HorizontalAlignment="Left" VerticalAlignment="Center">
|
|
|
|
|
<TextBlock Text="开始时间" Margin="10 0" Foreground="White" FontSize="20" VerticalAlignment="Center"/>
|
|
|
|
|
|
|
|
|
|
<DatePicker Style="{StaticResource CustomDatePicker}" CalendarStyle="{StaticResource CustomCalendarStyle}"
|
|
|
|
|
x:Name="BeginTime" FontSize="20"
|
|
|
|
|
Width="170" Margin="10 0" BorderBrush="White"
|
|
|
|
|
materialDesign:CalendarAssist.IsHeaderVisible="False">
|
|
|
|
|
<DatePicker.SelectedDate >
|
|
|
|
|
<Binding
|
|
|
|
|
Path="BeginDate"
|
|
|
|
|
UpdateSourceTrigger="PropertyChanged">
|
|
|
|
|
<Binding.ValidationRules>
|
|
|
|
|
</Binding.ValidationRules>
|
|
|
|
|
</Binding>
|
|
|
|
|
</DatePicker.SelectedDate>
|
|
|
|
|
|
|
|
|
|
</DatePicker>
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="结束时间" Margin="10 0" Foreground="White" FontSize="20" VerticalAlignment="Center"/>
|
|
|
|
|
<DatePicker Style="{StaticResource CustomDatePicker}"
|
|
|
|
|
x:Name="EndTime" Margin="10 0"
|
|
|
|
|
Width="170" BorderBrush="White" FontSize="20"
|
|
|
|
|
materialDesign:CalendarAssist.IsHeaderVisible="False"
|
|
|
|
|
CalendarStyle="{StaticResource CustomCalendarStyle}">
|
|
|
|
|
<!-- 添加这一行 -->
|
|
|
|
|
<DatePicker.SelectedDate>
|
|
|
|
|
<Binding
|
|
|
|
|
Path="EndDate"
|
|
|
|
|
UpdateSourceTrigger="PropertyChanged">
|
|
|
|
|
<Binding.ValidationRules>
|
|
|
|
|
</Binding.ValidationRules>
|
|
|
|
|
</Binding>
|
|
|
|
|
</DatePicker.SelectedDate>
|
|
|
|
|
</DatePicker>
|
|
|
|
|
|
|
|
|
|
<Button Margin="10 0"
|
|
|
|
|
Content="时间查询" Command="{Binding QueryCommand}"
|
|
|
|
|
Style="{StaticResource BUTTON_AGREE}" Background="LimeGreen">
|
|
|
|
|
<Button.CommandParameter>
|
|
|
|
|
<MultiBinding Converter="{StaticResource QueryConvert}">
|
|
|
|
|
<Binding ElementName="BeginTime" Path="Text"/>
|
|
|
|
|
<Binding ElementName="EndTime" Path="Text"/>
|
|
|
|
|
</MultiBinding>
|
|
|
|
|
</Button.CommandParameter>
|
|
|
|
|
</Button>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="0" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="1*"/>
|
|
|
|
@ -30,35 +117,25 @@
|
|
|
|
|
|
|
|
|
|
<!--计划列表-->
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="0" BorderBrush="Green" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<DataGrid Grid.Row="0" ItemsSource="{Binding PalletTaskDataGrid}" Background="Transparent"
|
|
|
|
|
<DataGrid Grid.Row="0" ItemsSource="{Binding WmsRawOutstockDetailDataGrid}" Background="Transparent"
|
|
|
|
|
FontSize="15" ColumnHeaderHeight="35"
|
|
|
|
|
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
|
|
RowHeight="50" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
|
|
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False" HorizontalAlignment="Center"
|
|
|
|
|
Foreground="#FFFFFF" >
|
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Visible" BorderThickness="0" CanUserAddRows="False" HorizontalAlignment="Center"
|
|
|
|
|
Foreground="White" >
|
|
|
|
|
<!--resourceStyle 399行修改选中字体颜色-->
|
|
|
|
|
<DataGrid.Columns>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding ObjId}" Header="序号" Width="1*" IsReadOnly="True"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding PalletCode}" Header="托盘编号" Width="3*" IsReadOnly="True"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding RecordTime ,StringFormat=\{0:MM月dd日 HH:mm\}}" Header="记录时间" Width="2*" IsReadOnly="True"/>
|
|
|
|
|
<!--<DataGridTextColumn Binding="{Binding RealEndTime ,StringFormat=\{0:MM月dd日 HH:mm\}}" Header="完成时间" Width="1*" IsReadOnly="True"/>-->
|
|
|
|
|
<DataGridTemplateColumn Header="操作" Width="2*">
|
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<Button Content="删除" CommandParameter="{Binding PalletCode}" Background="Red" Foreground="White" Margin="10,0,0,0" Height="25" BorderBrush="Red" BorderThickness="0" Width="45" Command="{Binding DataContext.DeletePalletCommand, RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=DataGrid }}"/>
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding RawOutstockDetailId}" Header="序号" Width="1*" IsReadOnly="True"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding LocationCode}" Header="库位编号" Width="2*" IsReadOnly="True"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding MaterialBarcode}" Header="原材料条码" Width="4*" IsReadOnly="True"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding OutstockTime ,StringFormat=\{0:MM月dd日 HH:mm:ss\}}" Header="出库时间" Width="2*" IsReadOnly="True"/>
|
|
|
|
|
|
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
|
</DataGrid.Columns>
|
|
|
|
|
</DataGrid>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Grid.Row="0" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="1*"/>
|
|
|
|
@ -73,7 +150,7 @@
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="0" BorderBrush="Green" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<DataGrid Grid.Row="0" ItemsSource="{Binding BarCodeTaskDataGrid}" Background="Transparent"
|
|
|
|
|
FontSize="15" ColumnHeaderHeight="35"
|
|
|
|
|
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
|
|
RowHeight="50" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
|
|
|
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False" HorizontalAlignment="Center"
|
|
|
|
|
Foreground="#FFFFFF" >
|
|
|
|
@ -85,26 +162,25 @@ Foreground="#FFFFFF" >
|
|
|
|
|
<DataGridTextColumn Binding="{Binding MaterialCode}" Header="物料编号" Width="3*" IsReadOnly="True"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding RecordTime ,StringFormat=\{0:MM月dd日 HH:mm\}}" Header="记录时间" Width="2*" IsReadOnly="True"/>
|
|
|
|
|
<!--<DataGridTextColumn Binding="{Binding RealEndTime ,StringFormat=\{0:MM月dd日 HH:mm\}}" Header="完成时间" Width="1*" IsReadOnly="True"/>-->
|
|
|
|
|
<DataGridTemplateColumn Header="操作" Width="2*">
|
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<Button Content="删除" CommandParameter="{Binding BarCode}" Background="Red" Foreground="White" Margin="10,0,0,0" Height="25" BorderBrush="Red" BorderThickness="0" Width="45" Command="{Binding DataContext.DeleteBarCodeCommand, RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=DataGrid }}"/>
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
|
|
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
|
</DataGrid.Columns>
|
|
|
|
|
</DataGrid>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="0" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<Border Grid.Row="2" Grid.Column="0" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="1*"/>
|
|
|
|
|
<RowDefinition Height="9*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Border Grid.Row="0" BorderBrush="CadetBlue" BorderThickness="0,0,0,0" CornerRadius="0" Background="Transparent" Margin="1,6,5,5" >
|
|
|
|
|
<TextBlock Text="日投料统计图" FontSize="20" FontWeight="Bold" Foreground="#0288d1" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
<Border Grid.Row="2" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
|
|
|
|
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|