wlzboy
2025-12-23 0a3eed02e78dfeeb7763a4b62992eefcd1f5a0ca
app/utils/taskValidator.js
@@ -97,8 +97,8 @@
    }
  }
  // 检查是否为无效时间(1900年)
  if (task.plannedStartTime.startsWith('1900')) {
  // 检查是否为无效时间(1900年或1970年)
  if (task.plannedStartTime.startsWith('1900') || task.plannedStartTime.startsWith('1970')) {
    return {
      valid: false,
      message: '任务的转运时间无效',