质量模块_质量统计: 添加颜色

This commit is contained in:
qianhao.xu
2024-03-20 14:16:24 +08:00
parent a3d7b47a88
commit 2074ea2e84
8 changed files with 58 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ namespace ZR.Service.mes.pro
.AndIF(year > 0, it => it.Year == year)
.AndIF(week > 0, it => it.Week == week)
.AndIF(date > 0, it => it.Date == date)
.ToExpression();
.ToExpression();
int totalCount = 0;
List<ProWorkorder_v2> proWorkorderList = Context.Queryable<ProWorkorder_v2>().Where(predicate).Where(it=>it.Remark3=="是").OrderBy(it => it.Sort).ToPageList(pageNum, pageSize, ref totalCount);