blob: 3f58b83fa33a4d040d98aaa7dd59d9fedf766d5e (
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
30
31
|
--input-date-format %d/%m/%y
--date-format %d/%m/%y
1/1/14 * Test
A $10
B
12/1/14 * Test
A $20
B
test --input-date-format %d/%m/%y reg --begin 2/1/13
01/01/14 Test A $10 $10
B $-10 0
12/01/14 Test A $20 $20
B $-20 0
end test
test --input-date-format %d/%m/%y reg --begin 1/1/14
01/01/14 Test A $10 $10
B $-10 0
12/01/14 Test A $20 $20
B $-20 0
end test
test --input-date-format %d/%m/%y reg --begin 2/1/14
12/01/14 Test A $20 $20
B $-20 0
end test
|