diff --git a/.vs/HighWayIot/FileContentIndex/17c4cbf0-405e-47cd-9c6d-7c09f592e00f.vsidx b/.vs/HighWayIot/FileContentIndex/17c4cbf0-405e-47cd-9c6d-7c09f592e00f.vsidx deleted file mode 100644 index 16bc7e42..00000000 Binary files a/.vs/HighWayIot/FileContentIndex/17c4cbf0-405e-47cd-9c6d-7c09f592e00f.vsidx and /dev/null differ diff --git a/.vs/HighWayIot/FileContentIndex/3a7d4d14-6f80-4bf9-888d-4da9e3812652.vsidx b/.vs/HighWayIot/FileContentIndex/3a7d4d14-6f80-4bf9-888d-4da9e3812652.vsidx deleted file mode 100644 index be9add90..00000000 Binary files a/.vs/HighWayIot/FileContentIndex/3a7d4d14-6f80-4bf9-888d-4da9e3812652.vsidx and /dev/null differ diff --git a/.vs/HighWayIot/FileContentIndex/487d5983-1b1e-48e6-9d56-ec079e1c717b.vsidx b/.vs/HighWayIot/FileContentIndex/487d5983-1b1e-48e6-9d56-ec079e1c717b.vsidx deleted file mode 100644 index 332fe2da..00000000 Binary files a/.vs/HighWayIot/FileContentIndex/487d5983-1b1e-48e6-9d56-ec079e1c717b.vsidx and /dev/null differ diff --git a/.vs/HighWayIot/FileContentIndex/6f4e38f9-264f-4edc-b032-550c2b14fe3e.vsidx b/.vs/HighWayIot/FileContentIndex/6f4e38f9-264f-4edc-b032-550c2b14fe3e.vsidx new file mode 100644 index 00000000..90c6b3b5 Binary files /dev/null and b/.vs/HighWayIot/FileContentIndex/6f4e38f9-264f-4edc-b032-550c2b14fe3e.vsidx differ diff --git a/.vs/HighWayIot/FileContentIndex/8efbf8a6-9f2c-40b7-b820-5a0339d2c254.vsidx b/.vs/HighWayIot/FileContentIndex/8efbf8a6-9f2c-40b7-b820-5a0339d2c254.vsidx new file mode 100644 index 00000000..62b183c4 Binary files /dev/null and b/.vs/HighWayIot/FileContentIndex/8efbf8a6-9f2c-40b7-b820-5a0339d2c254.vsidx differ diff --git a/.vs/HighWayIot/FileContentIndex/8fc155b2-466d-417e-aee1-d1b34c03ea6d.vsidx b/.vs/HighWayIot/FileContentIndex/8fc155b2-466d-417e-aee1-d1b34c03ea6d.vsidx deleted file mode 100644 index 02206011..00000000 Binary files a/.vs/HighWayIot/FileContentIndex/8fc155b2-466d-417e-aee1-d1b34c03ea6d.vsidx and /dev/null differ diff --git a/.vs/HighWayIot/FileContentIndex/9f8e3afd-e844-4336-9c87-4b482e17940e.vsidx b/.vs/HighWayIot/FileContentIndex/9f8e3afd-e844-4336-9c87-4b482e17940e.vsidx new file mode 100644 index 00000000..35d8f0e2 Binary files /dev/null and b/.vs/HighWayIot/FileContentIndex/9f8e3afd-e844-4336-9c87-4b482e17940e.vsidx differ diff --git a/.vs/HighWayIot/FileContentIndex/f6212b58-736f-47c6-aec0-cbf8afd61f9d.vsidx b/.vs/HighWayIot/FileContentIndex/f6212b58-736f-47c6-aec0-cbf8afd61f9d.vsidx new file mode 100644 index 00000000..29e6a4a8 Binary files /dev/null and b/.vs/HighWayIot/FileContentIndex/f6212b58-736f-47c6-aec0-cbf8afd61f9d.vsidx differ diff --git a/.vs/HighWayIot/v17/.suo b/.vs/HighWayIot/v17/.suo index 2943e142..36ba4f74 100644 Binary files a/.vs/HighWayIot/v17/.suo and b/.vs/HighWayIot/v17/.suo differ diff --git a/Aucma.Scada.Business/AssemblyPlanBusiness.cs b/Aucma.Scada.Business/AssemblyPlanBusiness.cs index 9cd96bb9..d6936e7c 100644 --- a/Aucma.Scada.Business/AssemblyPlanBusiness.cs +++ b/Aucma.Scada.Business/AssemblyPlanBusiness.cs @@ -73,12 +73,20 @@ namespace Aucma.Scada.Business /// /// /// - public List GetProductPlanInfosByProductLineCode() + public List GetProductPlanInfosByProductLineCode(string orderCode) { List productPlanInfos = null; try { productPlanInfos = _productPlanInfoService.GetProductPlanInfosByProductLineCode(appConfig.stationCode); + + if(productPlanInfos.Count>0 ) + { + if(!string.IsNullOrEmpty(orderCode)) + { + productPlanInfos = productPlanInfos.Where(x=>x.orderCode.Contains(orderCode)).ToList(); + } + } } catch (Exception ex) { diff --git a/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.dll b/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.dll index add4d681..c1b87831 100644 Binary files a/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.dll and b/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.dll differ diff --git a/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.pdb b/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.pdb index 3d3ef6a5..4e912974 100644 Binary files a/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.pdb and b/Aucma.Scada.Business/bin/Debug/Aucma.Scada.Business.pdb differ diff --git a/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.csproj.AssemblyReference.cache b/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.csproj.AssemblyReference.cache index 1493e5a1..92548a06 100644 Binary files a/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.csproj.AssemblyReference.cache and b/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.csproj.AssemblyReference.cache differ diff --git a/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.dll b/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.dll index add4d681..c1b87831 100644 Binary files a/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.dll and b/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.dll differ diff --git a/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.pdb b/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.pdb index 3d3ef6a5..4e912974 100644 Binary files a/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.pdb and b/Aucma.Scada.Business/obj/Debug/Aucma.Scada.Business.pdb differ diff --git a/Aucma.Scada.HikRobot/obj/Debug/Aucma.Scada.HikRobot.csproj.AssemblyReference.cache b/Aucma.Scada.HikRobot/obj/Debug/Aucma.Scada.HikRobot.csproj.AssemblyReference.cache index d63f4912..cb2b0a34 100644 Binary files a/Aucma.Scada.HikRobot/obj/Debug/Aucma.Scada.HikRobot.csproj.AssemblyReference.cache and b/Aucma.Scada.HikRobot/obj/Debug/Aucma.Scada.HikRobot.csproj.AssemblyReference.cache differ diff --git a/Aucma.Scada.Model/obj/Debug/Aucma.Scada.Model.csproj.AssemblyReference.cache b/Aucma.Scada.Model/obj/Debug/Aucma.Scada.Model.csproj.AssemblyReference.cache index 75f86db8..63ddfe65 100644 Binary files a/Aucma.Scada.Model/obj/Debug/Aucma.Scada.Model.csproj.AssemblyReference.cache and b/Aucma.Scada.Model/obj/Debug/Aucma.Scada.Model.csproj.AssemblyReference.cache differ diff --git a/Aucma.Scada.UI/Page/AssemblyPlan/PlanInfoEditWindow.xaml b/Aucma.Scada.UI/Page/AssemblyPlan/PlanInfoEditWindow.xaml index ba4a166a..72d6523a 100644 --- a/Aucma.Scada.UI/Page/AssemblyPlan/PlanInfoEditWindow.xaml +++ b/Aucma.Scada.UI/Page/AssemblyPlan/PlanInfoEditWindow.xaml @@ -22,12 +22,12 @@ - +