Tiandele
2026-03-20 daea1a90c2fa1b5cc2f52e62be15bd95cc4155f6
ÏîÄ¿´úÂë/WMS/WMSServer/WIDESEA_StoragIntegrationServices/MES/Partial/preBind.cs
@@ -15,7 +15,6 @@
namespace WIDESEA_StoragIntegrationServices
{
    public partial class MESService
    {
        public WebResponseContent prebind(object json)
@@ -28,7 +27,7 @@
                var result = JsonConvert.DeserializeObject<PreBind>(json.ToString());
                var palletStockInfo = _palletStockInfoRepository.QueryFirst(x => x.PVI == result.pvi);
                var palletStockInfo = _palletStockInfoRepository.QueryFirst(x => x.CarBodyInfo.PVI == result.pvi);
                if (palletStockInfo == null) throw new Exception($"未找到{result.pvi}车身库存信息,无法预绑定");
                palletStockInfo.StockStatus = StockStateEmun.预绑定.ObjToInt();