|
@@ -39,7 +39,7 @@ namespace FurnaceUI.Views.Operations
|
|
|
public List<string> OriginModuleItems { get; set; } = new List<string>();
|
|
|
public bool IsPermission { get => this.Permission == 3; }
|
|
|
|
|
|
- public bool IsEnableManualOperation => IsPermission&&RtStatus != "AutoRunning";
|
|
|
+ public bool IsEnableManualOperation => IsPermission && RtStatus != "AutoRunning";
|
|
|
private int? _boatSlotFrom = 1;
|
|
|
public int? BoatSlotFrom
|
|
|
{
|
|
@@ -236,7 +236,7 @@ namespace FurnaceUI.Views.Operations
|
|
|
UpperSDNum = BoatMapWafers.Where(x => x == "SD").Count();
|
|
|
LowerSDNum = BoatMapWafers.Where(x => x == "ED").Count();
|
|
|
|
|
|
- ProductNum = BoatMapWafers.Where(x => x.StartsWith("P")).Count();
|
|
|
+ ProductNum = BoatMapWafers.Where(x => !string.IsNullOrEmpty(x) && x.StartsWith("P")).Count();
|
|
|
MonitorNum1 = BoatMapWafers.Where(x => x == "M1").Count();
|
|
|
MonitorNum2 = BoatMapWafers.Where(x => x == "M2").Count();
|
|
|
}
|