|
@@ -139,6 +139,7 @@ namespace FurnaceUI.Views.Editors
|
|
|
{
|
|
|
errorCallRecipeViewModel.IsAlarmVisibility = Visibility.Visible;
|
|
|
errorCallRecipeViewModel.ResultParameterStr = AlarmStr;
|
|
|
+ errorCallRecipeViewModel.CallReciepType = "alarm";
|
|
|
if ((bool)(windowManager as WindowManager)?.ShowDialogWithTitle(errorCallRecipeViewModel, null, "Call Alarm Recipe"))
|
|
|
{
|
|
|
ResultParameterStr = errorCallRecipeViewModel.ResultParameterStr;
|
|
@@ -178,6 +179,7 @@ namespace FurnaceUI.Views.Editors
|
|
|
errorCallRecipeViewModel = new AlarmErrorCallRecipeViewModel();
|
|
|
errorCallRecipeViewModel.IsAlarmVisibility = Visibility.Hidden;
|
|
|
errorCallRecipeViewModel.ResultParameterStr = AbortStr;
|
|
|
+ errorCallRecipeViewModel.CallReciepType = "abort";
|
|
|
if ((bool)(windowManager as WindowManager)?.ShowDialogWithTitle(errorCallRecipeViewModel, null, "Call Abort Recipe"))
|
|
|
{
|
|
|
ResultParameterStr = errorCallRecipeViewModel.ResultParameterStr;
|