From 733e63cb362f17aea4a1020654fa348a0d0c1f06 Mon Sep 17 00:00:00 2001 From: dengjunjie <dengjunjie@hnkhzn.com> Date: 星期一, 24 二月 2025 00:08:59 +0800 Subject: [PATCH] 优化入库逻辑,优化直接出库逻辑,优化移库任务逻辑 --- 项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineJob/ConveyorLineExtend/ConveyorLineExtend.cs | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineJob/ConveyorLineExtend/ConveyorLineExtend.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineJob/ConveyorLineExtend/ConveyorLineExtend.cs" index 1ee935b..c1d4169 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineJob/ConveyorLineExtend/ConveyorLineExtend.cs" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineJob/ConveyorLineExtend/ConveyorLineExtend.cs" @@ -120,6 +120,7 @@ { task.ExceptionMessage = content?.Message; _taskService.UpdateData(task); + return; } //if (content.Status) //{ @@ -185,7 +186,7 @@ Dt_Task task = _taskService.QueryExecutingConveyorLineTask(command.Barcode, childDeviceCode); if (task != null) _taskService.UpdateTaskStatusToNext(task); - task = _taskService.QueryCompletedConveyorLineTask(command.TaskNum, childDeviceCode); + task = _taskService.QueryCompletedConveyorLineTask(command.Barcode, childDeviceCode); if (task != null && string.IsNullOrEmpty(task.TargetAddress)) { _taskService.StackerCraneRequestInbound(task); -- Gitblit v1.9.3