Changeset 68


Ignore:
Timestamp:
Mar 7, 2009, 4:35:58 AM (15 years ago)
Author:
gav
Message:

Develop and update doc/Definitions as TaskRewrite? progresses.

Location:
trunk/doc/Definitions
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/Definitions/EntryTerms.txt

    r63 r68  
    66                - Default = required so nothing.
    77                - Larger text area.
     8                - What was done for this entry.
    89
    9     enteredBy
    10                 - Default = current person.
     10    dateDone
     11                - Default = now.
     12                - Precision = day.
     13                - Can be changed.
     14                - Date that person is reporting as the date entry was done.
     15
     16    dateEntered
     17                - Default = now.
     18                - Precision = second.
    1119                - Cannot be changed.
    12                 - Of Class Person.
     20                - Date the entry was actually entered.
    1321
    1422    durationHour
     
    2028                - Integer representing minutes spent on this entry.
    2129
    22     dateDone
    23                 - Default = now.
    24                 - Precision = day.
    25                 - Can be changed.
    26 
    27     dateEntered
    28                 - Default = now.
    29                 - Precision = second.
     30    enteredBy
     31                - Default = current person.
    3032                - Cannot be changed.
     33                - Of Class Person.
    3134
    3235    task       
     
    3538
    3639    entryType
    37                 - Default = one of "Work Done", "Fault", "Production", "Work Request".
     40                - Default = one of "Work Done", "Fault", "Production Report", "Work Request".
    3841                - Default depends on where the entry comes from.
    3942                - Of Class EntryType.
  • trunk/doc/Definitions/TaskActions.txt

    r63 r68  
    44Create      ->  recordModification("Created")                       <-  is the date created.
    55
    6 Schedule    ->  recordModification("TargetStartDate")               ->  set: Task.targetStartDate
     6Schedule    ->  recordModification("SetTargetStartDate")            ->  set: Task.targetStartDate
    77
    8                 recordModification("TargetCompletionDate")          ->  set: Task.targetCompletionDate
     8                recordModification("SetTargetCompletionDate")       ->  set: Task.targetCompletionDate
    99
    1010Start       ->  recordModification("ActualStartDate")               <-  is the date started
     
    2626recordModification(String type) {
    2727    Modification.modificationType = ModificationType.findByName(type)
    28     Modification.dateTime = now
     28    Modification.date = now
    2929    Modification.person = userName                                     
    3030    Modification.comment = "" 
     
    3232recordModification(String type, String comment) {
    3333    Modification.modificationType = ModificationType.findByName(type)
    34     Modification.dateTime = now
     34    Modification.date = now
    3535    Modification.person = userName                                     
    3636    Modification.comment = comment 
  • trunk/doc/Definitions/TaskTerms.txt

    r63 r68  
    99                - Default = "".     
    1010                - Longer for additional info only shown in detail views.
    11 
    12     leadPerson 
    13                 - Default = current person.
    14                 - The primay contact.
    1511
    1612    targetStartDate
     
    4238                - Ignore when viewing old associations or creating lists for searching etc.
    4339
     40    taskGroup
     41                - The taskGroup this task belongs to.
     42                - Of Class TaskGroup.
     43
     44    taskStatus
     45                - Default = "Not Started"
     46                - The current status of this task.
     47                - Of Class TaskStatus.
     48                - One of "Not Started", "In Progress" or "Completed"
     49                - Automagically set to "In Progress" on first "Work Done" entry.
     50                - Automagically set to "Completed" by action button.
     51
     52    leadPerson 
     53                - Default = current person.
     54                - The primay contact.
     55                - Of Class Person.
     56
    4457    assignedPersons
    45                 - A task may have many assingedPersons of Class AssignedPerson.
     58                - A task may have many assingedPersons of Class Person.
    4659
    4760    entries       
     
    5669                - Master/Slave/Parent/Child/FollowUp relationship still to sort out.
    5770
    58 #Should these be calulated or set by manual action?
    59 TaskStatus
    60     Not Started
    61     In Progress
    62     Completed
     71
     72#Calculated dates
     73actualStartDate
     74actualCompletionDate
     75
     76#Should these be calculated or set by manual action?
     77TaskPriority
     78    Low
     79    Normal
     80    High
     81    Immediate
    6382
    6483TaskType
Note: See TracChangeset for help on using the changeset viewer.