add - 箱壳集存库界面设计
parent
f94e3c2946
commit
58ce09bb5f
Binary file not shown.
@ -0,0 +1,12 @@
|
||||
<UserControl x:Class="Aucma.Scada.UI.Page.AssemblyPlan.AssemblyPlanControl"
|
||||
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:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Aucma.Scada.UI.Page.AssemblyPlan"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800">
|
||||
<Grid>
|
||||
|
||||
</Grid>
|
||||
</UserControl>
|
@ -0,0 +1,138 @@
|
||||
<UserControl x:Class="Aucma.Scada.UI.Page.InStoreInfo.InStoreInfoControl"
|
||||
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:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Aucma.Scada.UI.Page.InStoreInfo"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="750" d:DesignWidth="1920" Background="AliceBlue">
|
||||
<Grid Margin="5,5">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition/>
|
||||
<RowDefinition/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<!--扫码信息-->
|
||||
<Border Grid.Row="0" Grid.Column="0" BorderBrush="Green" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition/>
|
||||
<RowDefinition/>
|
||||
<RowDefinition/>
|
||||
<RowDefinition/>
|
||||
</Grid.RowDefinitions>
|
||||
<Border Grid.Row="1" BorderBrush="Red" BorderThickness="0" CornerRadius="5" >
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition/>
|
||||
<RowDefinition/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
|
||||
<TextBlock Text="箱壳物料条码:" FontSize="15" Foreground="Black"/>
|
||||
<TextBox FontSize="15" Text="{Binding ShellMaterialCode}" Foreground="Black" Width="200" IsReadOnly="True"/>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Grid.Row="0" Grid.Column="1" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
|
||||
<TextBlock Text="箱壳物料名称:" FontSize="15" Foreground="Black"/>
|
||||
<TextBox FontSize="15" Text="{Binding ShellMaterialName}" Foreground="Black" Width="200" IsReadOnly="True"/>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
|
||||
<TextBlock Text="箱壳入库货道:" FontSize="15" Foreground="Black"/>
|
||||
<TextBox FontSize="15" Text="{Binding ShellSpaceName}" Foreground="Black" Width="200" IsReadOnly="True"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
<Border Grid.Row="2" BorderBrush="Red" BorderThickness="0" CornerRadius="5" >
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition/>
|
||||
<RowDefinition/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
|
||||
<TextBlock Text="内胆物料条码:" FontSize="15" Foreground="Black"/>
|
||||
<TextBox FontSize="15" Text="{Binding LinerMaterialCode}" Foreground="Black" Width="200" IsReadOnly="True"/>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Grid.Row="0" Grid.Column="1" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
|
||||
<TextBlock Text="内胆物料名称:" FontSize="15" Foreground="Black"/>
|
||||
<TextBox FontSize="15" Text="{Binding LinerMaterialName}" Foreground="Black" Width="200" IsReadOnly="True"/>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
|
||||
<TextBlock Text="内胆入库货道:" FontSize="15" Foreground="Black"/>
|
||||
<TextBox FontSize="15" Text="{Binding LinerSpaceName}" Foreground="Black" Width="200" IsReadOnly="True"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
<!--库存统计-->
|
||||
<Border Grid.Row="0" Grid.Column="1" BorderBrush="Green" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
||||
|
||||
</Border>
|
||||
|
||||
<!--入库任务-->
|
||||
<Border Grid.Row="1" Grid.Column="0" BorderBrush="Green" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="6*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Border Grid.Row="0" BorderBrush="Red" BorderThickness="0,0,0,1">
|
||||
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="20,0,0,0">
|
||||
<TextBlock Text="物料条码" VerticalAlignment="Center" Foreground="Black" FontSize="15"/>
|
||||
<TextBox Width="200" Height="25" Margin="10 0 0 0" Text="{Binding Search}" Foreground="Black" VerticalAlignment="Center" FontSize="15"/>
|
||||
<!--resourceStyle 413行修改边框颜色-->
|
||||
|
||||
<TextBlock Text="物料类型" VerticalAlignment="Center" Foreground="Black" FontSize="15" Margin="20,0,0,0"/>
|
||||
<ComboBox Text="{Binding MaterialTypeCombox}" Width="200" Height="25" Margin="10 0 0 0" Foreground="Black" VerticalAlignment="Center" FontSize="15">
|
||||
<ComboBoxItem Content="所有" IsSelected="True"/>
|
||||
<ComboBoxItem Content="箱壳" />
|
||||
<ComboBoxItem Content="内胆" />
|
||||
</ComboBox>
|
||||
|
||||
<Button Content="查询" Command="{Binding QueryCommand}" Background="#007DFA" Foreground="White" Margin="20,0,0,0" Height="30" BorderBrush="DeepSkyBlue" BorderThickness="1" Width="80" />
|
||||
<Button Content="重置" Command="{Binding ResetCommand}" Background="#007DFA" Foreground="White" Margin="20,0,0,0" Height="30" BorderBrush="DeepSkyBlue" BorderThickness="1" Width="80" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<DataGrid Grid.Row="1" ItemsSource="{Binding ShellInstoreTask}" Background="Transparent"
|
||||
FontSize="15" ColumnHeaderHeight="35"
|
||||
RowHeight="30" AutoGenerateColumns="False" RowHeaderWidth="0"
|
||||
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
||||
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False"
|
||||
Foreground="Black" >
|
||||
<!--resourceStyle 399行修改选中字体颜色-->
|
||||
<DataGrid.Columns>
|
||||
<DataGridTextColumn Binding="{Binding userId}" Header="物料条码" Width="100" IsReadOnly="True"/>
|
||||
<DataGridTextColumn Binding="{Binding userName}" Header="物料名称" Width="*" IsReadOnly="True"/>
|
||||
<DataGridTextColumn Binding="{Binding userName}" Header="物料类型" Width="*" IsReadOnly="True"/>
|
||||
<DataGridTextColumn Binding="{Binding userName}" Header="入库货道" Width="*" IsReadOnly="True"/>
|
||||
<DataGridTextColumn Binding="{Binding userName}" Header="入库状态" Width="*" IsReadOnly="True"/>
|
||||
<DataGridTextColumn Binding="{Binding userName}" Header="任务时间" Width="*" IsReadOnly="True"/>
|
||||
</DataGrid.Columns>
|
||||
</DataGrid>
|
||||
</Grid>
|
||||
</Border>
|
||||
<!--日志信息-->
|
||||
<Border Grid.Row="1" Grid.Column="1" BorderBrush="Green" BorderThickness="2" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
|
||||
<ListBox x:Name="listBox" ItemsSource="{Binding LogInfoListBox}" Background="Transparent" BorderBrush="CornflowerBlue" ScrollViewer.HorizontalScrollBarVisibility="Hidden" ScrollViewer.VerticalScrollBarVisibility="Hidden"/>
|
||||
</Border>
|
||||
</Grid>
|
||||
</UserControl>
|
@ -0,0 +1,12 @@
|
||||
<UserControl x:Class="Aucma.Scada.UI.Page.InventoryInfo.InventoryInfoControl"
|
||||
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:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Aucma.Scada.UI.Page.InventoryInfo"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800">
|
||||
<Grid>
|
||||
|
||||
</Grid>
|
||||
</UserControl>
|
@ -0,0 +1,12 @@
|
||||
<UserControl x:Class="Aucma.Scada.UI.Page.OutStoreInfo.OutStoreInfoControl"
|
||||
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:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Aucma.Scada.UI.Page.OutStoreInfo"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800">
|
||||
<Grid>
|
||||
|
||||
</Grid>
|
||||
</UserControl>
|
@ -0,0 +1,12 @@
|
||||
<UserControl x:Class="Aucma.Scada.UI.Page.TaskInfo.TaskInfoControl"
|
||||
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:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Aucma.Scada.UI.Page.TaskInfo"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800">
|
||||
<Grid>
|
||||
|
||||
</Grid>
|
||||
</UserControl>
|
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -1 +1 @@
|
||||
2f8a87be1b190a202195a93475a72dddedef6d3f
|
||||
709a750aeb126125de6abbe3419e83ff8882c96b
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue