htmlaccountreport <file>

htmlaccountreport <file>
Description

The report lists all specified account values as a HTML page.

AttributesNameTypeDescription
fileSTRING 
Optional Attributesaccumulate, caption, columns, end, headline, hideaccount, period, rawhead, rawstylesheet, rawtail, rollupaccount, scenarios, shorttimeformat, sortaccounts, start, timeformat
ContextThe TJP File,
InheritableNoScenario Spec.No
See alsocsvaccountreport, htmlresourcereport, htmltaskreport

project simple "Simple Project" "1.0" 2005-06-06 - 2005-06-26 {
  currency "USD"
}

account project_cost "Project Costs" cost
account payments "Customer Payments" revenue {
  credit 2005-06-08 "Customer down payment" 500.0
}

resource tux "Tux" {
  rate 300
}

task items "Project breakdown" {
  start 2005-06-06
  # The default account for all tasks
  account project_cost

  task plan "Plan work" {
    # Some upfront material cost
    startcredit 500.0
    length 3d
  }

  task implementation "Implement work" {
    effort 5d
    allocate tux
    depends !plan
  }

  task acceptance "Customer acceptance" {
    duration 5d
    depends !implementation
    account payments
    # Customer pays at end of acceptance  
    endcredit 2000.0  
  }
}

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