CodeManagement/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/CellState/CellStateService.cs
@@ -92,7 +92,7 @@
            }
            var wmsIpAddress = wmsBase + ipAddress;
            var result = HttpsClient.PostAsync(wmsIpAddress, inputJson).Result;
            var result = await HttpsClient.PostAsync(wmsIpAddress, inputJson);
            var respone = JsonConvert.DeserializeObject<ResultTrayCellsStatus>(result.ToString());
@@ -118,6 +118,7 @@
            LogFactory.GetLog("整盘电芯属性获取").Error(true, $"请求参数: {JsonConvert.SerializeObject(input)}");
            LogFactory.GetLog("整盘电芯属性获取").Error(true, err.Message);
            LogFactory.GetLog("整盘电芯属性获取").Error(true, err.StackTrace);
            content.Error(err.Message);
        }
        return content;
    }