From 79e04c3c2125ab860670f05b0f73ca9cc4168c0f Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期一, 23 六月 2025 17:16:31 +0800 Subject: [PATCH] 优化产品入库逻辑,修复货位绑定和货品明细重复的问题 --- device/SnapManager.cs | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/device/SnapManager.cs b/device/SnapManager.cs index 3a647a3..625a39b 100644 --- a/device/SnapManager.cs +++ b/device/SnapManager.cs @@ -11,10 +11,13 @@ if (_snapDevice == null) { _snapDevice = new SnapDevice(); } - _snapDevice.LoadInfo(snap); + _snapDevice.LoadInfo(snap); // SNAP } public static string GetCapturePicturePath() { + //return string.Empty; + // SNAP + DateTime now = DateTime.Now; string path = Settings.CaptureUrl; string fileName = string.Format("{0}{1}{2}{3}{4}{5}", now.Year, now.Month, now.Day, now.Hour, now.Minute, now.Second) + ".jpg"; -- Gitblit v1.9.1