Explorar el Código

修复统计NTF时Yield表字段:NTF、Oncepass、RealFail时没有包含重流数量的Bug.

sat23 hace 3 años
padre
commit
f8c7c481e3
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      BLL/NTFBLL.cs

+ 4 - 4
BLL/NTFBLL.cs

@@ -326,9 +326,9 @@ namespace MOKA_Factory_Tools.BLL
             }
 
             yields.Total = hourlydata.TotalAllCount;
-            yields.OncePass = hourlydata.OncePassZeroCount;
+            yields.OncePass = hourlydata.OncePassAllCount;
             //yields.TwiceFail = hourlydata.TwiceFailCount;
-            yields.NTF = hourlydata.NTFZeroCount;
+            yields.NTF = hourlydata.NTFAllCount;
             yields.RealFail = hourlydata.RealFailCount;
             yields.NTF_SN = hourlydata.NTFSN;
             yields.FailDSN = hourlydata.FailDSN;
@@ -584,9 +584,9 @@ namespace MOKA_Factory_Tools.BLL
             }
 
             yields.Total = hourlydata.TotalAllCount;
-            yields.OncePass = hourlydata.OncePassZeroCount;
+            yields.OncePass = hourlydata.OncePassAllCount;
             //yields.TwiceFail = hourlydata.TwiceFailCount;
-            yields.NTF = hourlydata.NTFZeroCount;
+            yields.NTF = hourlydata.NTFAllCount;
             yields.RealFail = hourlydata.RealFailCount;
             yields.NTF_SN = hourlydata.NTFSN;
             yields.FailDSN = hourlydata.FailDSN;