1
huangxiaoqiang
2026-03-17 7a663544bda26aaabcad039c726b87d0c65be5f0
ÏîÄ¿´úÂë/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();