Browse Source

1

AddValidOverTime
506583276@qq.com 3 years ago
parent
commit
1781444445
  1. 8
      BBWY.Client/ViewModels/PackTask/WareHouseListViewModel.cs
  2. 2
      BBWY.Client/Views/MainWindow.xaml

8
BBWY.Client/ViewModels/PackTask/WareHouseListViewModel.cs

@ -293,6 +293,14 @@ namespace BBWY.Client.ViewModels.PackTask
case PackTaskState.:
break;
case PackTaskState.:
var packModel = PackTaskList.SingleOrDefault(p => p.TaskId == taskId);
if (packModel == null || packModel.FeesItemResponse == null || packModel.FeesItemResponse.DiscountAllFees == 0)
{
System.Windows.MessageBox.Show("请先设置打包费用!");
return;
}
res = packTaskService.SetPackTaskState(taskId, PackTaskState.);
break;
case PackTaskState.:

2
BBWY.Client/Views/MainWindow.xaml

@ -26,7 +26,7 @@
<!--<TextBlock Text="{Binding GlobalContext.User.TeamName}" Margin="5,0,0,0"/>
<TextBlock Text="{Binding GlobalContext.User.Shop.Platform}" Margin="5,0,0,0"/>-->
<TextBlock Text="{Binding GlobalContext.User.Shop.ShopName}" Margin="5,0,0,0"/>
<TextBlock Text="v10109" Margin="5,0,0,0"/>
<TextBlock Text="v10110" Margin="5,0,0,0"/>
</StackPanel>
</Border>
<Grid Grid.Row="1">

Loading…
Cancel
Save