Browse Source

1. 修改配方完成日志打印及显示界面。

master
ZhaoGang 1 year ago
parent
commit
03b164da15
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      BPASmartClient.CustomResource/Pages/View/RecipeCompleteView.xaml
  2. +1
    -1
      BPASmartClient.JXJFoodSmallStation/Model/ProcessControl.cs

+ 1
- 1
BPASmartClient.CustomResource/Pages/View/RecipeCompleteView.xaml View File

@@ -312,7 +312,7 @@
Margin="10,0,0,0"
HorizontalAlignment="Left"
Style="{StaticResource DataTextBlockStyle}"
Text="{Binding RunLogInfo}" />
Text="{Binding RecipeName}" />

<Border
Grid.ColumnSpan="6"


+ 1
- 1
BPASmartClient.JXJFoodSmallStation/Model/ProcessControl.cs View File

@@ -1025,7 +1025,7 @@ namespace BPASmartClient.JXJFoodSmallStation.Model
SiemensDevice.Siemens_PLC_S7.WriteClass<XL_Finish_DB>(RecipeFinishInfo, 2261);

MessageNotify.GetInstance.ShowRunLog($"托盘1,配方【{res.RecipeCode}】,配料完成,数据反馈给西门子");
MessageNotify.GetInstance.ShowRecipeLog(res.RecipeName);
MessageNotify.GetInstance.ShowRecipeLog($"配方名称:【{res.RecipeName}】\t 配方号:【{res.RecipeCode}】");
}
else
{


Loading…
Cancel
Save