supplant the old interface, which relied on the Num typeclass. MixedAmount did not have a very good Num instance. The only functions which were defined were fromInteger, (+), and negate. Furthermore, it was not law-abiding, as 0 + a /= a in general. Replacements for used functions are: 0 -> nullmixedamt / mempty (+) -> maPlus / (<>) (-) -> maMinus negate -> maNegate sum -> maSum sumStrict -> maSum Also creates some new constructors for MixedAmount: mixedAmount :: Amount -> MixedAmount maAddAmount :: MixedAmount -> Amount -> MixedAmount maAddAmounts :: MixedAmount -> [Amount] -> MixedAmount Add Semigroup and Monoid instances for MixedAmount. Ideally we would remove the Num instance entirely. The only change needed have nullmixedamt/mempty substitute for 0 without problems was to not squash prices in mixedAmount(Looks|Is)Zero. This is correct behaviour in any case.
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| {-# LANGUAGE OverloadedStrings #-}
 | |
| {-# LANGUAGE QuasiQuotes       #-}
 | |
| {-# LANGUAGE RecordWildCards   #-}
 | |
| {-# LANGUAGE TemplateHaskell   #-}
 | |
| {-|
 | |
| 
 | |
| The @balancesheetequity@ command prints a simple balance sheet.
 | |
| 
 | |
| -}
 | |
| 
 | |
| module Hledger.Cli.Commands.Balancesheetequity (
 | |
|   balancesheetequitymode
 | |
|  ,balancesheetequity
 | |
| ) where
 | |
| 
 | |
| import System.Console.CmdArgs.Explicit
 | |
| 
 | |
| import Hledger
 | |
| import Hledger.Cli.CliOptions
 | |
| import Hledger.Cli.CompoundBalanceCommand
 | |
| 
 | |
| balancesheetequitySpec = CompoundBalanceCommandSpec {
 | |
|   cbcdoc      = $(embedFileRelative "Hledger/Cli/Commands/Balancesheetequity.txt"),
 | |
|   cbctitle    = "Balance Sheet With Equity",
 | |
|   cbcqueries  = [
 | |
|      CBCSubreportSpec{
 | |
|       cbcsubreporttitle="Assets"
 | |
|      ,cbcsubreportquery=journalAssetAccountQuery
 | |
|      ,cbcsubreportoptions=(\ropts -> ropts{normalbalance_=Just NormallyPositive})
 | |
|      ,cbcsubreporttransform=id
 | |
|      ,cbcsubreportincreasestotal=True
 | |
|      }
 | |
|     ,CBCSubreportSpec{
 | |
|       cbcsubreporttitle="Liabilities"
 | |
|      ,cbcsubreportquery=journalLiabilityAccountQuery
 | |
|      ,cbcsubreportoptions=(\ropts -> ropts{normalbalance_=Just NormallyNegative})
 | |
|      ,cbcsubreporttransform=fmap maNegate
 | |
|      ,cbcsubreportincreasestotal=False
 | |
|      }
 | |
|     ,CBCSubreportSpec{
 | |
|       cbcsubreporttitle="Equity"
 | |
|      ,cbcsubreportquery=journalEquityAccountQuery
 | |
|      ,cbcsubreportoptions=(\ropts -> ropts{normalbalance_=Just NormallyNegative})
 | |
|      ,cbcsubreporttransform=fmap maNegate
 | |
|      ,cbcsubreportincreasestotal=False
 | |
|      }
 | |
|     ],
 | |
|   cbctype     = HistoricalBalance
 | |
| }
 | |
| 
 | |
| balancesheetequitymode :: Mode RawOpts
 | |
| balancesheetequitymode = compoundBalanceCommandMode balancesheetequitySpec
 | |
| 
 | |
| balancesheetequity :: CliOpts -> Journal -> IO ()
 | |
| balancesheetequity = compoundBalanceCommand balancesheetequitySpec
 |