44 lines
1.2 KiB
Haskell
44 lines
1.2 KiB
Haskell
{-# LANGUAGE QuasiQuotes, TemplateHaskell, OverloadedStrings #-}
|
|
{-|
|
|
|
|
The @incomestatement@ command prints a simple income statement (profit & loss report).
|
|
|
|
-}
|
|
|
|
module Hledger.Cli.Commands.Incomestatement (
|
|
incomestatementmode
|
|
,incomestatement
|
|
) where
|
|
|
|
import System.Console.CmdArgs.Explicit
|
|
|
|
import Hledger
|
|
import Hledger.Cli.CliOptions
|
|
import Hledger.Cli.CompoundBalanceCommand
|
|
|
|
incomestatementSpec = CompoundBalanceCommandSpec {
|
|
cbcdoc = $(embedFileRelative "Hledger/Cli/Commands/Incomestatement.txt"),
|
|
cbctitle = "Income Statement",
|
|
cbcqueries = [
|
|
CBCSubreportSpec{
|
|
cbcsubreporttitle="Revenues"
|
|
,cbcsubreportquery=journalRevenueAccountQuery
|
|
,cbcsubreportnormalsign=NormallyNegative
|
|
,cbcsubreportincreasestotal=True
|
|
}
|
|
,CBCSubreportSpec{
|
|
cbcsubreporttitle="Expenses"
|
|
,cbcsubreportquery=journalExpenseAccountQuery
|
|
,cbcsubreportnormalsign=NormallyPositive
|
|
,cbcsubreportincreasestotal=False
|
|
}
|
|
],
|
|
cbctype = PeriodChange
|
|
}
|
|
|
|
incomestatementmode :: Mode RawOpts
|
|
incomestatementmode = compoundBalanceCommandMode incomestatementSpec
|
|
|
|
incomestatement :: CliOpts -> Journal -> IO ()
|
|
incomestatement = compoundBalanceCommand incomestatementSpec
|