From a97ac998301461e6284595b1cf2c7b40ce5b2459 Mon Sep 17 00:00:00 2001
From: kingno <30263@KINGNO>
Date: 星期四, 03 四月 2025 14:09:36 +0800
Subject: [PATCH] 优化数据库字段的json传输 新增打印机

---
 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