def batchIdToEarliestMigrationStartDate()

in lambda/src/main/scala/pricemigrationengine/migrations/Newspaper2024Migration/Estimation.scala [156:162]


  def batchIdToEarliestMigrationStartDate(batchId: Newspaper2024BatchId): LocalDate = {
    batchId match {
      case MonthliesPart1    => LocalDate.of(2024, 2, 21) // 21 Feb 2024
      case MonthliesPart2    => LocalDate.of(2024, 3, 18) // 18 March 2024
      case MoreThanMonthlies => LocalDate.of(2024, 3, 1) // 1 March 2024
    }
  }