@@ -4,17 +4,21 @@ A ledger-compatible @print@ command.
4
4
5
5
-}
6
6
7
- {-# LANGUAGE OverloadedStrings #-}
7
+ {-# LANGUAGE OverloadedStrings, LambdaCase, ViewPatterns #-}
8
8
{-# LANGUAGE TemplateHaskell #-}
9
9
10
10
module Hledger.Cli.Commands.Print (
11
11
printmode
12
+ ,txnflags
12
13
,print'
13
14
-- ,entriesReportAsText
14
- ,originalTransaction
15
+ ,modPostings
16
+ ,prepareTxnFromOpts
15
17
)
16
18
where
17
19
20
+ import Data.Maybe (catMaybes )
21
+ import Data.List (nub )
18
22
import Data.Text (Text )
19
23
import qualified Data.Text as T
20
24
import System.Console.CmdArgs.Explicit
@@ -32,15 +36,27 @@ printmode = hledgerCommandMode
32
36
([let arg = " STR" in
33
37
flagReq [" match" ," m" ] (\ s opts -> Right $ setopt " match" s opts) arg
34
38
(" show the transaction whose description is most similar to " ++ arg++ " , and is most recent" )
35
- ,flagNone [" explicit" ," x" ] (setboolopt " explicit" )
36
- " show all amounts explicitly"
37
39
,flagNone [" new" ] (setboolopt " new" )
38
40
" show only newer-dated transactions added in each file since last run"
39
- ] ++ outputflags)
41
+ ] ++ txnflags ++ outputflags)
40
42
[generalflagsgroup1]
41
43
hiddenflags
42
44
([] , Just $ argsFlag " [QUERY]" )
43
45
46
+ -- | Common flags between all commands that print parsable transactions
47
+ txnflags =
48
+ [ flagNone [" explicit" ," x" ] (setboolopt " explicit" )
49
+ " show all amounts explicitly"
50
+ , flagNone [" dynamic-tags" ] (setboolopt " dynamic-tags" )
51
+ " include dynamic tags as normal ones"
52
+ ]
53
+
54
+ enrichDynamicTags :: ([Tag ] -> [Tag ])
55
+ enrichDynamicTags tags = nub $ tags ++ catMaybes (map enrichedMay tags) where
56
+ enrichedMay = \ case
57
+ ((T. stripPrefix " _" -> Just tag), value) -> Just (tag, value)
58
+ _ -> Nothing
59
+
44
60
-- | Print journal transactions in standard format.
45
61
print' :: CliOpts -> Journal -> IO ()
46
62
print' opts j = do
@@ -60,21 +76,33 @@ printEntries opts@CliOpts{reportopts_=ropts} j = do
60
76
writeOutput opts $ render $ entriesReport ropts' q j
61
77
62
78
entriesReportAsText :: CliOpts -> EntriesReport -> String
63
- entriesReportAsText opts = concatMap (showTransaction . syncTxn . gettxn)
79
+ entriesReportAsText opts = concatMap (showTransaction . syncTxn . prepareTxnFromOpts opts)
80
+
81
+ -- | Create transaction update
82
+ prepareTxnFromOpts :: CliOpts -> Transaction -> Transaction
83
+ prepareTxnFromOpts opts =
84
+ (if boolopt " dynamic-tags" (rawopts_ opts) then modTags enrichDynamicTags else id ).
85
+ (if useexplicittxn then id -- use fully inferred amounts & txn prices
86
+ else modPostings originalPostingAmounts) -- use original as-written amounts/txn prices
64
87
where
65
- gettxn | useexplicittxn = id -- use fully inferred amounts & txn prices
66
- | otherwise = originalTransaction -- use original as-written amounts/txn prices
67
88
-- Original vs inferred transactions/postings were causing problems here, disabling -B (#551).
68
89
-- Use the explicit one if -B or -x are active.
69
90
-- This passes tests; does it also mean -B sometimes shows missing amounts unnecessarily ?
70
91
useexplicittxn = boolopt " explicit" (rawopts_ opts) || (valuationTypeIsCost $ reportopts_ opts)
71
92
72
- -- Replace this transaction's postings with the original postings if any, but keep the
73
- -- current possibly rewritten account names.
74
- originalTransaction t = t { tpostings = map originalPostingPreservingAccount $ tpostings t }
93
+ -- | Update postings of transaction
94
+ -- Note that you still need to call 'txnTieKnot'
95
+ modPostings mod t = t { tpostings = map mod $ tpostings t }
96
+
97
+ -- | Update tags of transaction and postings
98
+ -- Note that you still need to call 'txnTieKnot'
99
+ modTags :: ([Tag ] -> [Tag ]) -> Transaction -> Transaction
100
+ modTags f t = t { ttags = f $ ttags t, tpostings = map modPosting $ tpostings t } where
101
+ modPosting p = p { ptags = f $ ptags p }
75
102
76
- -- Get the original posting if any, but keep the current possibly rewritten account name.
77
- originalPostingPreservingAccount p = (originalPosting p) { paccount = paccount p }
103
+ -- Get the original amounts preserving everything else
104
+ originalPostingAmounts p = p { pamount = pamount p0, pbalanceassertion = pbalanceassertion p0 }
105
+ where p0 = originalPosting p
78
106
79
107
-- XXX
80
108
-- tests_showTransactions = [
0 commit comments