显示工位编号
This commit is contained in:
@ -29,10 +29,23 @@ namespace 智慧物流软件系统.ViewModel
|
|||||||
{
|
{
|
||||||
public BatchBindMatDetailViewModel()
|
public BatchBindMatDetailViewModel()
|
||||||
{
|
{
|
||||||
|
StationCode = LocalFile.Config.LocationCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Property
|
#region Property
|
||||||
|
/// <summary>
|
||||||
|
/// 工位编号
|
||||||
|
/// </summary>
|
||||||
|
private string stationCode;
|
||||||
|
public string StationCode
|
||||||
|
{
|
||||||
|
get { return stationCode; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
SetProperty(ref stationCode, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private List<MatDetailCurrentInfoModel> dataGridItemSource;
|
private List<MatDetailCurrentInfoModel> dataGridItemSource;
|
||||||
public List<MatDetailCurrentInfoModel> DataGridItemSource
|
public List<MatDetailCurrentInfoModel> DataGridItemSource
|
||||||
{
|
{
|
||||||
|
@ -86,6 +86,16 @@
|
|||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
<StackPanel Grid.Row="0" Orientation="Horizontal">
|
<StackPanel Grid.Row="0" Orientation="Horizontal">
|
||||||
|
|
||||||
|
<Button MinHeight="40"
|
||||||
|
FontSize="18"
|
||||||
|
Margin="5"
|
||||||
|
Content="新 增"
|
||||||
|
FontFamily="{StaticResource IconFont}"
|
||||||
|
Foreground="WhiteSmoke"
|
||||||
|
Background="HotPink"
|
||||||
|
Command="{Binding BtnAddCommand}"></Button>
|
||||||
|
|
||||||
<Button MinHeight="40" FontSize="18" Margin="5"
|
<Button MinHeight="40" FontSize="18" Margin="5"
|
||||||
Content="修 改" FontFamily="{StaticResource IconFont}"
|
Content="修 改" FontFamily="{StaticResource IconFont}"
|
||||||
Foreground="WhiteSmoke"
|
Foreground="WhiteSmoke"
|
||||||
@ -115,6 +125,31 @@
|
|||||||
Foreground="WhiteSmoke"
|
Foreground="WhiteSmoke"
|
||||||
Background="DarkOrange">
|
Background="DarkOrange">
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
<TextBlock MinHeight="40"
|
||||||
|
FontSize="25"
|
||||||
|
Margin="20 0 0 0 "
|
||||||
|
VerticalAlignment="Center">站位编号:</TextBlock>
|
||||||
|
<TextBlock MinHeight="40"
|
||||||
|
FontSize="25"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{Binding StationCode}"></TextBlock>
|
||||||
|
<Button MinHeight="40"
|
||||||
|
FontSize="18"
|
||||||
|
Margin="5"
|
||||||
|
Content="呼叫货架"
|
||||||
|
FontFamily="{StaticResource IconFont}"
|
||||||
|
Command="{Binding BtnImportCommand}"
|
||||||
|
Foreground="WhiteSmoke"
|
||||||
|
Background="Green"></Button>
|
||||||
|
<Button MinHeight="40"
|
||||||
|
FontSize="18"
|
||||||
|
Margin="5"
|
||||||
|
Content="送货架"
|
||||||
|
FontFamily="{StaticResource IconFont}"
|
||||||
|
Command="{Binding BtnExportCommand}"
|
||||||
|
Foreground="WhiteSmoke"
|
||||||
|
Background="DarkOrange"></Button>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<DataGrid Grid.Row="1"
|
<DataGrid Grid.Row="1"
|
||||||
|
Reference in New Issue
Block a user