陈勇
2026-04-06 9de6c7c6d835ba5161d64114d154bfc7676244a1
ÏîÄ¿´úÂë/WMS/WMSServer/WIDESEA_StoragIntegrationServices/WCS/Partial/RequstCarBodyInfo.cs
@@ -20,16 +20,16 @@
            WebResponseContent webResponseContent = new WebResponseContent();
            try
            {
                var carInfo = _carBodyInfoRepository.QueryFirst(x => x.PVI == json.PVI);
                var carInfo = _carBodyInfoRepository.QueryFirst(x => x.RFID == json.PVI);
                if (carInfo != null) throw new Exception($"PVI{json.PVI}车身数据已存在");
                ///请求焊装车身特征
                WebResponseContent webResponse = _mesService.issuedCharacter(json.PVI, json.Position, json.PalletCode);
                if (webResponse.Status) throw new Exception($"{webResponse.Message}");
                if (!webResponse.Status) throw new Exception($"{webResponse.Message}");
                ///BDC01  è¿‡ç‚¹
                WebResponseContent content = _mesService.PassPoint(json);
                if (content.Status) throw new Exception($"{content.Message}");
                if (!content.Status) throw new Exception($"{content.Message}");
                return webResponseContent.OK();