wlzboy
2026-03-06 55cb4e492f782126e941b80c53c496159d8eb3c0
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: '任务的转运时间无效',