You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System.Collections.Concurrent;
- using System.Collections.ObjectModel;
- using System.Windows;
- using BPASmartClient.Helper;
- using Microsoft.Toolkit.Mvvm.Input;
- using BPASmartClient.JXJFoodSmallStation.Model;
- using BPASmartClient.JXJFoodSmallStation.View;
- using BPASmartClient.CustomResource.UserControls;
- using BPASmartClient.CustomResource.UserControls.Model;
- using BPASmartClient.CustomResource.UserControls.Enum;
- using System.Windows.Media;
- using BPASmartClient.CustomResource.UserControls.MessageShow;
- using BPASmartClient.CustomResource.Pages.Model;
- using BPASmartClient.JXJFoodSmallStation.Model.Siemens;
- using BPASmartClient.JXJFoodSmallStation.Model.GVL;
-
- namespace BPASmartClient.JXJFoodSmallStation.ViewModel
- {
- public class SiemensRecipeReceiveViewModel : ObservableObject
- {
- //ObservableCollection<RemoteRecipeRawMaterial> RawMaterials { get; set; } = new ObservableCollection<RemoteRecipeRawMaterial>();
- public SiemensRecipeReceiveViewModel()
- {
- Recipes = Json<RemoteRecipeDataColl>.Data.Recipes;
- DetailsCommand = new RelayCommand<object>((o) =>
- {
- if (o != null && o is string cnt)
- {
- ActionManage.GetInstance.Send("CloseRecipeInfosView");
- RecipeInfosView nrv = new RecipeInfosView();
-
- var res = Json<RemoteRecipeDataColl>.Data.Recipes.FirstOrDefault(p => p.RecipeCode == cnt);
- if (res != null)
- {
- ActionManage.GetInstance.Send("RecipeInfo", res);
- nrv.Show();
- MessageNotify.GetInstance.ShowUserLog($"查看配方——{res.RecipeName}");
- }
- }
- });
- ClearAllRecipe = new RelayCommand(() =>
- {
- Json<RemoteRecipeDataColl>.Data.Recipes.Clear();
- });
- }
- public RelayCommand<object> DetailsCommand { get; set; }
- public RelayCommand ClearAllRecipe { get; set; }
- public ObservableCollection<RemoteRecipeData> Recipes { get; set; }
- }
- }
|