Sha256: 521e1833b4854f7a5aa784bee5dbd349dd814a00cebf2eef280d13d4ee14a7b6

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 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, 2011, 2012, 2013, 2014
#               by Chris Schlaeger <cs@taskjuggler.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 'taskjuggler/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 onLeave?(date)
      a('leaves').each do |leave|
        if leave.interval.contains?(date)
          return true
        end
      end
      false
    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
taskjuggler-3.7.2 lib/taskjuggler/ShiftScenario.rb
taskjuggler-3.7.1 lib/taskjuggler/ShiftScenario.rb
taskjuggler-3.6.0 lib/taskjuggler/ShiftScenario.rb