From 655481176b286fa91ef9d171fd8cbfac2be2545a Mon Sep 17 00:00:00 2001 From: kingno <30263@KINGNO> Date: 星期四, 10 四月 2025 10:43:02 +0800 Subject: [PATCH] 打印机,数据库格式更新 --- src/Bro.M135.Common/FrmProductList.cs | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/Bro.M135.Common/FrmProductList.cs b/src/Bro.M135.Common/FrmProductList.cs index ea835a5..13fc454 100644 --- a/src/Bro.M135.Common/FrmProductList.cs +++ b/src/Bro.M135.Common/FrmProductList.cs @@ -1,4 +1,5 @@ 锘縰sing Bro.Common.Helper; +using Bro.Common.Interface; using Bro.Common.Model; using Bro.UI.Model.Winform; using Sunny.UI; @@ -117,7 +118,7 @@ { this.Invoke(() => { - var specList = p.Details.SelectMany(u => u.SpecList ?? new List<Spec>()).ToList(); + var specList = p.Details.SelectMany(u => u.SpecList ?? new List<ISpec>()).ToList(); specList.AddRange(p.Details.SelectMany(u => u.ResultList.SelectMany(s => s.Specs.Select(m => (Spec)m)))); specList.Sort((a, b) => string.Compare(a.Code, b.Code)); -- Gitblit v1.8.0