dengjunjie
7 小时以前 a8367fa42d18c40407408c79e8a5fd32cd09f05c
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/TaskService.cs
@@ -1427,6 +1427,20 @@
                _trackloginfoService.AddTrackLog(wMSContainerFlow, content, "容器流动请求", "", "");
            }
        }
        public WebResponseContent UpStationType(UpStationTypeDTO stationTypeDTO)
        {
            try
            {
                Dt_StationManger stationManger = _stationMangerService.Repository.QueryFirst(x => x.StationCode == stationTypeDTO.stationCode) ?? throw new Exception($"未找到站台编号【{stationTypeDTO.stationCode}】信息");
                stationManger.StationType = stationTypeDTO.stationType;
                _stationMangerService.Repository.UpdateData(stationManger);
                return WebResponseContent.Instance.OK();
            }
            catch (Exception ex)
            {
                return WebResponseContent.Instance.Error(ex.Message);
            }
        }
        /// <summary>
        /// è´¨æ£€ç»“果反馈
        /// </summary>
@@ -1889,7 +1903,7 @@
                WMSReturn wMSReturn = response.DeserializeObject<WMSReturn>();
                if (wMSReturn == null) throw new Exception("WMS返回结果转换失败!");
                if (!wMSReturn.success) throw new Exception(wMSReturn.message);
               return content.OK();
                return content.OK();
            }
            catch (Exception ex)
            {