|
|
@@ -27,7 +27,7 @@ namespace FryPot_DosingSystem.ViewModel |
|
|
|
public string targetWeightOffset { get { return _targetWeightOffset; } set { _targetWeightOffset = value;OnPropertyChanged(); } } |
|
|
|
private string _targetWeightOffset="0"; |
|
|
|
|
|
|
|
private string _stirTime; |
|
|
|
private string _stirTime="0"; |
|
|
|
/// <summary> |
|
|
|
/// 秘制配方搅拌时间 |
|
|
|
/// </summary> |
|
|
@@ -139,7 +139,7 @@ namespace FryPot_DosingSystem.ViewModel |
|
|
|
name.FlowProcess.targetWeightOffset = 0.0F; |
|
|
|
return; |
|
|
|
} |
|
|
|
if (ushort.TryParse(_stirTime.Trim(), out ushort time)) |
|
|
|
if (ushort.TryParse(StirTime.Trim(), out ushort time)) |
|
|
|
{ |
|
|
|
name.FlowProcess.StirTime = time;//秘制配方搅拌时间 |
|
|
|
} |
|
|
|