Sha256: 5ef4954534869cc21b39ee2dff08da866648cb070b71ccd6e57dbe18de6b0a2f

Contents?: true

Size: 971 Bytes

Versions: 5

Compression:

Stored size: 971 Bytes

Contents

#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = AccountScenario.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 Account object.
  class AccountScenario < ScenarioData

    def initialize(account, scenarioIdx, attributes)
      super
    end

    # Compute the turnover for the _period_. Period should be an Interval.
    def turnover(period)
      amount = 0.0
      if container?
        @children.each { |child| amount += child.turnover }
      else
        @project.tasks.each do |task|
          amount += task.turnover(period, self)
        end
      end
      amount
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
taskjuggler-0.0.8 lib/AccountScenario.rb
taskjuggler-0.0.7 lib/AccountScenario.rb
taskjuggler-0.0.6 lib/AccountScenario.rb
taskjuggler-0.0.5 lib/AccountScenario.rb
taskjuggler-0.0.4 lib/AccountScenario.rb