Sha256: 0252aee3d978270b88405893f1b9132ec66da499853a7fabfd769fc4679f5209
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = ShiftScenario.rb -- The TaskJuggler III Project Management Software # # Copyright (c) 2006, 2007, 2008, 2009, 2010 by Chris Schlaeger <cs@kde.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # require 'ScenarioData' class TaskJuggler # This class handles the scenario specific features of a Shift object. class ShiftScenario < ScenarioData def initialize(resource, scenarioIdx, attributes) super end # Returns true if the shift has working time defined for the _date_. def onShift?(date) a('workinghours').onShift?(date) end def replace? a('replace') end # Returns true if the shift has a vacation defined for the _date_. def onVacation?(date) a('vacations').each do |vacationIv| if vacationIv.contains?(date) return true end end false end end end
Version data entries
5 entries across 5 versions & 1 rubygems