|
|
|
<c:BWindow x:Class="BBWY.Client.Views.SealBox.SealBoxPolicyDetailsWindow"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:local="clr-namespace:BBWY.Client.Views.SealBox"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
|
|
|
xmlns:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls"
|
|
|
|
Height="1123" Width="794"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
CloseButtonVisibility="Visible"
|
|
|
|
CloseButtonColor="{StaticResource WindowButtonColor}"
|
|
|
|
MinButtonVisibility="Collapsed"
|
|
|
|
MaxButtonVisibility="Collapsed"
|
|
|
|
RightButtonGroupMargin="0,5,5,0"
|
|
|
|
>
|
|
|
|
<!-- DataContext="{Binding CreateSetBarCodeView,Source={StaticResource Locator}}"-->
|
|
|
|
<Grid Name="print_sealbox">
|
|
|
|
|
|
|
|
<Grid Margin="30">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="50"/>
|
|
|
|
<RowDefinition Height="50"/>
|
|
|
|
<RowDefinition/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="封箱策略明细" FontSize="36" VerticalAlignment="Center" HorizontalAlignment="Left" FontWeight="Bold"/>
|
|
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Left" Grid.Row="1">
|
|
|
|
<TextBlock Text="封箱ID:"/>
|
|
|
|
<TextBlock Text="{Binding SealBoxId}"/>
|
|
|
|
|
|
|
|
<!--<TextBlock Text="箱数:" Margin="50 0 0 0"/>
|
|
|
|
<TextBlock Text="1"/>
|
|
|
|
<TextBlock Text="/"/>
|
|
|
|
<TextBlock Text="2"/>-->
|
|
|
|
|
|
|
|
<TextBlock Text="店铺:" Margin="50 0 0 0"/>
|
|
|
|
<TextBlock Text="{Binding ShopName}"/>
|
|
|
|
|
|
|
|
<TextBlock Text="仓库:" Margin="50 0 0 0"/>
|
|
|
|
<TextBlock Text="{Binding WareName}"/>
|
|
|
|
|
|
|
|
<TextBlock Text="对接人:" Margin="50 0 0 0"/>
|
|
|
|
<TextBlock Text="{Binding AcceptUserName}"/>
|
|
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<Grid Grid.Row="2" >
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="35"/>
|
|
|
|
<RowDefinition />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border BorderBrush="Black" BorderThickness="1,1,1,0"
|
|
|
|
>
|
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
<ColumnDefinition />
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<TextBlock Text="选择" Style="{StaticResource middleTextBlock}"/>
|
|
|
|
<TextBlock Text="商品信息" Grid.Column="1" Style="{StaticResource middleTextBlock}"/>
|
|
|
|
<TextBlock Text="装箱数量" Grid.Column="2" Style="{StaticResource middleTextBlock}"/>
|
|
|
|
|
|
|
|
<Border Grid.Row="0" HorizontalAlignment="Right" Width="1" Background="Black"/>
|
|
|
|
<Border Grid.Column="1" HorizontalAlignment="Right" Width="1" Background="Black"/>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
<ListBox x:Name="listbox_orerSku" ItemsSource="{Binding SealBoxSkus}" BorderThickness="0 1 0 0" BorderBrush="Black"
|
|
|
|
Grid.Row="2" Style="{StaticResource NoScrollViewListBoxStyle}"
|
|
|
|
ItemContainerStyle="{StaticResource NoBgListBoxItemStyle}" >
|
|
|
|
<ListBox.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Grid MinHeight="60" Width="{Binding ActualWidth,ElementName=listbox_orerSku}">
|
|
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="81"/>
|
|
|
|
<ColumnDefinition/>
|
|
|
|
<ColumnDefinition Width="81"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid Grid.Column="1">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition/>
|
|
|
|
<ColumnDefinition/>
|
|
|
|
<ColumnDefinition/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Orientation="Vertical" Margin="10 10 0 0" Grid.ColumnSpan="3">
|
|
|
|
<TextBlock>
|
|
|
|
<Run Text="SKU:"/>
|
|
|
|
<Run Text="{Binding SkuId}"/>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock Margin="0 10 0 0">
|
|
|
|
<Run Text="SKU名称:"/>
|
|
|
|
<Run Text="{Binding SkuTitle}"/>
|
|
|
|
</TextBlock>
|
|
|
|
</StackPanel>
|
|
|
|
<TextBlock Grid.Column="1" Margin="10 10 0 0">
|
|
|
|
<Run Text="任务ID:"/>
|
|
|
|
<Run Text="{Binding TaskId}"/>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock Grid.Column="2" Margin="10 10 0 0">
|
|
|
|
<Run Text="需装数量:"/>
|
|
|
|
<Run Text="{Binding WareHourseSkuCount}"/>
|
|
|
|
</TextBlock>
|
|
|
|
</Grid>
|
|
|
|
<Border Grid.Row="0" HorizontalAlignment="Left" Width="1" Background="Black"/>
|
|
|
|
<Border Grid.Row="0" HorizontalAlignment="Right" Width="1" Background="Black"/>
|
|
|
|
<Border Grid.Column="1" HorizontalAlignment="Right" Width="1" Background="Black"/>
|
|
|
|
<Border Grid.Column="2" HorizontalAlignment="Right" Width="1" Background="Black"/>
|
|
|
|
|
|
|
|
<Border Grid.Row="0" VerticalAlignment="Bottom" Height="1" Grid.ColumnSpan="3" Background="Black"/>
|
|
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</c:BWindow>
|