WINDOWS-F96JH03\Kain
2026-03-17 021ec32a095410d28d4552d7365ca64308494fa6
ÏîÄ¿´úÂë/WMS/WMSServer/WIDESEA_StoragIntegrationServices/WCS/Partial/Queue.cs
@@ -9,6 +9,7 @@
using WIDESEA_Common.MES;
using WIDESEA_Core;
using WIDESEA_DTO;
using WIDESEA_StorageBasicRepository;
namespace WIDESEA_StoragIntegrationServices
{
@@ -49,7 +50,7 @@
                //过点信息
                WebResponseContent content1 = _mesService.PassPoint(json);
                if (!content1.Status) throw new Exception($"过点失败:{content1.msg},请求信息:{{json.ToJson()");
                if (!content1.Status) throw new Exception($"过点失败:{content1.msg},请求信息:{json.ToJson()}");
                //获取VIN号
                WebResponseContent responseContent = _mesService.getCharacteristic(json);
@@ -64,6 +65,13 @@
                    VechicleModel = carinfo.vehicleCharacteristic,
                };
                var mesLock = _mesLockInfoRepository.QueryFirst(x => x.carBodyID == carinfo.Id);
                if (mesLock != null)
                {
                    mesLock.LockStatue = 2;
                    _mesLockInfoRepository.UpdateData(mesLock);
                }
                content.OK(data: respon);
            }
            catch (Exception ex)