|
@@ -537,7 +537,7 @@ namespace WCS.WorkEngineering.Systems
|
|
|
private string GetAgvStation(WCS_TaskInfo task, SqlSugarHelper db)
|
|
|
{
|
|
|
// 默认站台
|
|
|
- var defaultStation = "2501";
|
|
|
+ var defaultStation = "2701";
|
|
|
var sta = defaultStation;
|
|
|
|
|
|
// 定义仓库与站台的映射关系
|
|
@@ -582,7 +582,7 @@ namespace WCS.WorkEngineering.Systems
|
|
|
task.WarehouseCode.StartsWith("3"))
|
|
|
{
|
|
|
var (northCount, southCount) = GetNorthAndSouthTaskCounts(db, stationPair);
|
|
|
- sta = northCount > southCount ? stationPair.S : stationPair.N;
|
|
|
+ sta = southCount > northCount ? stationPair.N : stationPair.S;
|
|
|
}
|
|
|
else
|
|
|
{
|