Opened 14 years ago

Last modified 14 years ago

#92 new enhancement

Shift feature required — at Initial Version

Reported by: Gavin Owned by:
Priority: major Milestone: 0.9 - General Improvements
Component: gnuMims - application general Version: trunk
Keywords: Cc:

Description

Currently the taskGroup is used as "Electrical Dayshift", "Electrical Nightshift". This should factored out into a Shift table and a task.shift should then be used for this assingment.

When a person logs in they should be able to select their current shift and see only those logs.

class Shift {
    @indexed // Is auto indexing available?
    String ref // A constant used for lookup, e.g: dayshift.
    String name // Language free, e.g: Dayshift, Nightshift.
    String description = ""
    Integer startHour = 0 //24hr format, e.g:06
    Integer startMinute = 0 //24hr format
    Integer finishHour = 0 //24hr format, e.g:18
    Integer finishMinute = 0 //24hr format
    Integer startFinishMarginHour = 2 //margin in hours.
}

Change History (0)

Note: See TracTickets for help on using tickets.