Class | TrackRecordReport::ReportUserData |
In: |
lib/track_record_report.rb
|
Parent: | ReportElementaryCalculator |
Store information about a user‘s worked hours for a specific cell - that is, a specific task and date range. ReportUserData objects are associated with ReportCells, and those cells deal with passing over hours to be included in the user data total.
Add the given work packet‘s hours to the internal committed total.
# File lib/track_record_report.rb, line 1166 1166: def add_committed_hours( packet ) 1167: @committed += packet.worked_hours 1168: end