Ignore:
Timestamp:
May 4, 2009, 5:12:01 AM (15 years ago)
Author:
gav
Message:

Install Quartz plugin and make a start on TaskRecurringScheduleJob?

Location:
trunk/grails-app/domain
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/RecurringSchedule.groovy

    r122 r123  
    77    Integer recurEvery
    88    Date startDate = new Date()
     9    Date lastExecutedDate
     10    Date nextDueDate
    911    boolean isActive = true
    1012
     
    1517    static constraints = {
    1618        plannedMaintenance(blank:true, nullable:true)
     19        lastExecutedDate(blank:true, nullable:true)
     20        nextDueDate(blank:true, nullable:true)
    1721    }
    1822
  • trunk/grails-app/domain/Task.groovy

    r122 r123  
    4040    }
    4141
    42     String toString() {"${this.description}"}
     42    String toString() {"${this.id} - ${this.description}"}
    4343}
Note: See TracChangeset for help on using the changeset viewer.