From 83f3c63f1cae6224320a8d19251e3bc0404da096 Mon Sep 17 00:00:00 2001
From: huanghongfeng <huanghongfeng@hnkhzn.com>
Date: 星期五, 26 九月 2025 14:54:44 +0800
Subject: [PATCH] 出入库
---
代码管理/WCS/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/AgvStationService.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/AgvStationService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/AgvStationService.cs"
index 019462f..cd334e5 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/AgvStationService.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/AgvStationService.cs"
@@ -92,7 +92,7 @@
/// <returns></returns>
public AGVStation GetZicheDeep(int HCJAddres)
{
- return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres || x.Station_Area == 2) && x.Station_enable == 1);
+ return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres && x.Station_Area == 2) && x.Station_enable == 1);
}
/// <summary>
@@ -100,9 +100,9 @@
/// </summary>
/// <param name="HCJAddres">HCJ绔欏彴缂栧彿</param>
/// <returns></returns>
- public AGVStation GetZicheDeep(int HCJAddres)
+ public AGVStation GetZicheOuterSide(int HCJAddres)
{
- return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres || x.Station_Area == 2) && x.Station_enable == 1);
+ return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres && x.Station_Area == 1) && x.Station_enable == 1);
}
}
}
--
Gitblit v1.9.3