|
|
@ -11,7 +11,7 @@ |
|
|
|
xmlns:b="http://schemas.microsoft.com/xaml/behaviors" |
|
|
|
DataContext="{Binding OrderList,Source={StaticResource Locator}}" |
|
|
|
mc:Ignorable="d" |
|
|
|
d:DesignHeight="450" d:DesignWidth="800" |
|
|
|
d:DesignHeight="450" d:DesignWidth="2048" |
|
|
|
Title="OrderList"> |
|
|
|
<Page.Resources> |
|
|
|
<ObjectDataProvider x:Key="storageTypeProvider" MethodName="GetValues" ObjectType="{x:Type sys:Enum}"> |
|
|
@ -277,7 +277,8 @@ |
|
|
|
<TextBlock Text="采购信息" Grid.Column="2" Style="{StaticResource middleTextBlock}"/> |
|
|
|
<TextBlock Text="成本信息" Grid.Column="3" Style="{StaticResource middleTextBlock}"/> |
|
|
|
<TextBlock Text="利润信息" Grid.Column="4" Style="{StaticResource middleTextBlock}"/> |
|
|
|
<TextBlock Text="物流信息" Grid.Column="5" Style="{StaticResource middleTextBlock}"/> |
|
|
|
<TextBlock x:Name="txtwuliu" Text="物流信息" Grid.Column="5" Style="{StaticResource middleTextBlock}"/> |
|
|
|
<TextBlock x:Name="txtshouhou" Text="售后信息" Grid.Column="5" Style="{StaticResource middleTextBlock}"/> |
|
|
|
<TextBlock Text="订单状态" Grid.Column="6" Style="{StaticResource middleTextBlock}"/> |
|
|
|
<TextBlock Text="备注信息" Grid.Column="7" Style="{StaticResource middleTextBlock}"/> |
|
|
|
|
|
|
@ -710,7 +711,9 @@ |
|
|
|
</TextBlock> |
|
|
|
</StackPanel> |
|
|
|
|
|
|
|
<StackPanel Grid.Column="5" |
|
|
|
|
|
|
|
<Grid Grid.Column="5"> |
|
|
|
<StackPanel |
|
|
|
VerticalAlignment="Center" |
|
|
|
HorizontalAlignment="Center"> |
|
|
|
<TextBlock x:Name="txt_storeName" |
|
|
@ -726,7 +729,7 @@ |
|
|
|
CommandParameter="{Binding }" Margin="5,0,0,0"/> |
|
|
|
</StackPanel> |
|
|
|
</StackPanel> |
|
|
|
<c:BButton x:Name="btn_outStore" Content="出库" Grid.Column="5" VerticalAlignment="Bottom" |
|
|
|
<c:BButton x:Name="btn_outStore" Content="出库" VerticalAlignment="Bottom" |
|
|
|
Foreground="{StaticResource Text.Color}" |
|
|
|
HorizontalAlignment="Stretch" |
|
|
|
Background="White" |
|
|
@ -735,8 +738,9 @@ |
|
|
|
Visibility="Collapsed" |
|
|
|
Command="{Binding DataContext.OutStockCommand,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type ListBox}}}" |
|
|
|
CommandParameter="{Binding }"/> |
|
|
|
<Border Height="1" Background="{StaticResource Border.Brush}" Grid.Column="5" VerticalAlignment="Bottom" Margin="0,0,0,25" |
|
|
|
<Border Height="1" Background="{StaticResource Border.Brush}" VerticalAlignment="Bottom" Margin="0,0,0,25" |
|
|
|
Visibility="{Binding Visibility,ElementName=btn_outStore}"/> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="{Binding OrderState}" Grid.Column="6" |
|
|
|