From 1356676b1304c66e822ad3344ff5847c68c27e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=91=E5=8F=AB=E9=94=84=E5=A4=B4?= Date: Mon, 4 Dec 2023 08:13:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=A4=A7=E4=BA=8E400=20?= =?UTF-8?q?=E4=B8=8D=E7=BB=9F=E8=AE=A1=E6=95=B0=E6=8D=AE=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LjReport/DayWhiteEmbryo/GelBlackPowderCount.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjReport/DayWhiteEmbryo/GelBlackPowderCount.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjReport/DayWhiteEmbryo/GelBlackPowderCount.cs index d2cf9b9..9a96f38 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjReport/DayWhiteEmbryo/GelBlackPowderCount.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjReport/DayWhiteEmbryo/GelBlackPowderCount.cs @@ -204,14 +204,14 @@ namespace Mesnac.Action.ChemicalWeighing.LjReport.DayWhiteEmbryo dr[0] = "湿混机" + i; var totalWeight = list.Where(x => x.deviceno == i).Sum(x => x.value); dr[1] = totalWeight.ToString(); - var totalCount = list.Where(x => x.deviceno == i).Where(x => x.value > 400).Count(); + var totalCount = list.Where(x => x.deviceno == i).Where(x => x.value > 300).Count(); dr[2] = totalCount.ToString(); dt.Rows.Add(dr); } var edr = dt.NewRow(); edr[0] = "生产总和"; edr[1] = list.Sum(x => x.value).ToString(); - edr[2] = list.Where(x => x.value > 400).Count(); + edr[2] = list.Where(x => x.value > 300).Count(); dt.Rows.Add(edr); dataGridView.DataSource = null;