终端一体化运控平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

55 строки
1.9 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Toolkit.Mvvm.ComponentModel;
  7. using System.Collections.ObjectModel;
  8. using Microsoft.Toolkit.Mvvm.Input;
  9. using BPASmartClient.Helper;
  10. using BPASmartClient.JXJFoodSmallStation.Model;
  11. using BPASmartClient.CustomResource.Pages.Model;
  12. namespace BPASmartClient.JXJFoodSmallStation.ViewModel
  13. {
  14. public class RecipeInfosViewModel : ObservableObject
  15. {
  16. public RecipeInfosViewModel()
  17. {
  18. ActionManage.GetInstance.CancelRegister("RecipeInfo");
  19. ActionManage.GetInstance.Register(new Action<object>((o) =>
  20. {
  21. if (o != null && o is RemoteRecipeData rm)
  22. {
  23. RecipeName = rm.RecipeName;
  24. RecipeCode = rm.RecipeCode;
  25. TrayCode = rm.TrayCode;
  26. foreach (var item in rm.RawMaterial)
  27. {
  28. RawMaterialsInfo.Add(item);
  29. }
  30. }
  31. }), "RecipeInfo");
  32. ReturnPage = new RelayCommand(() =>
  33. {
  34. ActionManage.GetInstance.Send("CloseRecipeInfosView");
  35. });
  36. }
  37. public string RecipeName { get { return _mRecipeName; } set { _mRecipeName = value; OnPropertyChanged(); } }
  38. private string _mRecipeName;
  39. public string RecipeCode { get { return _mRecipeCode; } set { _mRecipeCode = value; OnPropertyChanged(); } }
  40. private string _mRecipeCode;
  41. public int TrayCode { get { return _mTrayCode; } set { _mTrayCode = value; OnPropertyChanged(); } }
  42. private int _mTrayCode;
  43. public RelayCommand ReturnPage { get; set; }
  44. public ObservableCollection<RemoteRecipeRawMaterial> RawMaterialsInfo { get; set; } = new ObservableCollection<RemoteRecipeRawMaterial>();
  45. }
  46. }