Sha256: 481f642e42a7312d6952cd561491e969705200ed0b186bd55c523c6da2cc39ca

Contents?: true

Size: 1.04 KB

Versions: 8

Compression:

Stored size: 1.04 KB

Contents

project simple "Simple Project" "1.0" 2007-01-01 - 2007-01-30 {
  currency "USD"
}

# *** EXAMPLE: 1 +
account project_cost "Project Costs"
account payments "Customer Payments"{
  credit 2007-01-08 "Customer down payment" 500.0
}

resource tux "Tux" {
  rate 300
}
resource konqui "Konqui" {
  rate 200
}

task items "Room decoration" {
  start 2007-01-06
  # The default account for all tasks
  account project_cost

  task plan "Plan work and buy material" {
    # Upfront material cost
    startcredit 500.0
    length 2d
  }
   task remove "Remove old inventory" {
    allocate tux
    allocate konqui
    effort 1d
    depends !plan
  }
  task implement "Arrange new decoration" {
    effort 5d
    allocate tux, konqui
    depends !remove
  }
  task acceptance "Presentation and customer acceptance" {
    duration 5d
    depends !implement
    account payments
    # Customer pays at end of acceptance
    endcredit 2000.0
  }
}
# *** EXAMPLE: 1 -

# accountreport pandl "PAndL.html" {
#   timeformat "%d-%M-%y"
#   accumulate
#   columns index, name, weekly
# }

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
taskjuggler-0.0.10 test/TestSuite/Syntax/Correct/Account.tjp
taskjuggler-0.0.9 test/TestSuite/Syntax/Correct/Account.tjp
taskjuggler-0.0.8 test/TestSuite/Syntax/Correct/Account.tjp
taskjuggler-0.0.7 test/TestSuite/Syntax/Correct/Account.tjp
taskjuggler-0.0.6 test/TestSuite/Syntax/Correct/Account.tjp
taskjuggler-0.0.5 test/TestSuite/Syntax/Correct/Account.tjp
taskjuggler-0.0.4 test/TestSuite/Syntax/Correct/Account.tjp
taskjuggler-0.0.3 test/TestSuite/Syntax/Correct/Account.tjp