wlzboy
2026-02-05 57e98ac3f59e9ca12d3fdbc6f89c9c0b1f86be4d
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: '任务的转运时间无效',