Browse Source

修改删除条目查找由根据原料位置查找变为根据原料名称查找。

master
ZhaoGang 1 year ago
parent
commit
a1c3bd29e9
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      BPASmartClient.JXJFoodSmallStation/View/NewLocalRecipeView.xaml
  2. +1
    -1
      BPASmartClient.JXJFoodSmallStation/ViewModel/NewLocalRecipeViewModel.cs

+ 1
- 1
BPASmartClient.JXJFoodSmallStation/View/NewLocalRecipeView.xaml View File

@@ -358,7 +358,7 @@
Grid.Column="5"
Height="25"
Command="{Binding DataContext.RemoveCommand, RelativeSource={RelativeSource AncestorType=ItemsControl, Mode=FindAncestor}}"
CommandParameter="{Binding RawMaterialLocation}"
CommandParameter="{Binding RawMaterialName}"
Content="删除"
FontSize="16"
Style="{StaticResource ControlButtonStyle}" />


+ 1
- 1
BPASmartClient.JXJFoodSmallStation/ViewModel/NewLocalRecipeViewModel.cs View File

@@ -54,7 +54,7 @@ namespace BPASmartClient.JXJFoodSmallStation.ViewModel
}), "LocalRecipeEdit", true);
RemoveCommand = new RelayCommand<object>((o) =>
{
var res = AllRawMaterial.FirstOrDefault(p => p.RawMaterialLocation == (int)o);
var res = AllRawMaterial.FirstOrDefault(p => p.RawMaterialName == o.ToString());
if (res != null) AllRawMaterial.Remove(res);
//NoticeDemoViewModel.OpenMsg(EnumPromptType.Success, App.MainWindow, "提示", $"{o.ToString()}:原料删除成功!");
});


Loading…
Cancel
Save