dengjunjie
2026-02-27 b6a82cb656a6cd045d772274ae927c8ca2c22b06
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/TaskHelpMethods.cs
@@ -17,13 +17,13 @@
            try
            {
                if (taskDTO.containerCode.IsNullOrEmpty()) throw new Exception("料箱号不能为空");
                if (taskDTO.toAreaCode.IsNullOrEmpty() || taskDTO.toLocationCode.IsNullOrEmpty()) throw new Exception("终点区域或终点位置不能为空");
                if (isType) if (taskDTO.containerType.IsNullOrEmpty()) throw new Exception("料箱号不能为空");
                if (taskDTO.toAreaCode.IsNullOrEmpty() && taskDTO.toLocationCode.IsNullOrEmpty()) throw new Exception("终点区域或终点位置不能为空");
                //if (isType) if (taskDTO.containerType.IsNullOrEmpty()) throw new Exception("料箱类型不能为空");
                if (isfrom) if (taskDTO.fromLocationCode.IsNullOrEmpty()) throw new Exception("起点位置不能为空");
            }
            catch (Exception ex)
            {
                content.Error(ex.Message);
                throw new Exception(ex.Message);
            }
            return content;
        }