blob: 019c91eb26572611303a34f746b463adceaabf03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--input-date-format %Y:%m:%d
D 1000.00 GBP
2014:05:12 * Test
Assets:Investments 100 AA {2.00 GBP} [2014:01:01] @@ 200.00 GBP
Equity:Opening balance
test bal Assets:Investments --lots --date-format %Y.%m.%d
100 AA {2.00 GBP} [2014.01.01] Assets:Investments
end test
test bal Assets:Investments --lots --date-format %Y/%m/%d
100 AA {2.00 GBP} [2014/01/01] Assets:Investments
end test
test bal Assets:Investments --lots --date-format %Y:%m:%d
100 AA {2.00 GBP} [2014:01:01] Assets:Investments
end test
test bal Assets:Investments --lots --date-format %Y-%m-%d
100 AA {2.00 GBP} [2014-01-01] Assets:Investments
end test
test bal Assets:Investments --lots --date-format %y-%b-%d
100 AA {2.00 GBP} [14-Jan-01] Assets:Investments
end test
|