-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReport.php
More file actions
124 lines (112 loc) · 2.56 KB
/
Report.php
File metadata and controls
124 lines (112 loc) · 2.56 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
class Report
{
const ReportDatesFileName = './reportDates.list';
private $startDate;
private $stopDate;
static public function makeWithMonth($month)
{
if (strlen($month) == 3) {
$year = date('Y');
$month .= $year;
}
$fd = fopen(self::ReportDatesFileName,
'r');
if ($fd == null) {
throw new Exception('File: ' .
self::ReportDatesFileName .
' cannot be opened for reading.');
}
$startDate = false;
$stopDate = false;
while ( !feof($fd)
&&
$stopDate === false
&&
$stopDate === false) {
$line = trim(fgets($fd));
if (strlen($line) == 0) {
continue;
}
$parts = explode( '=',
$line);
if ($startDate) {
$stopDate = $parts[1];
continue;
}
if ($month != $parts[0]) {
continue;
}
$startDate = $parts[1];
}
fclose($fd);
if ($startDate
&&
$stopDate) {
$parts = explode('-', $stopDate);
$stopDate = $parts[0] . '-' . $parts[1] . '-' . ($parts[2] - 1);
return new self($startDate, $stopDate);
}
if ($startDate) {
throw new Exception('Start date ' .
$startDate .
' found, but no stop date found.');
}
throw new Exception('No start and stop dates for: ' .
$month);
}
public function __construct($startDate, $stopDate)
{
$this->startDate = $startDate;
$this->stopDate = $stopDate;
}
/**
* Command: Report
*/
public function run()
{
//
// Setup the categories
//
$categories = Category::readAll();
$report = array();
foreach ($categories as $category) {
$report[$category->getName()] = array();
}
$report['Ignored'] = array();
$transactions = array();
Transaction::getTransactions( $transactions,
$this->startDate,
$this->stopDate);
foreach ($transactions as &$transaction) {
if ($transaction->getStatus() == Transaction::StatusIgnore) {
$report['Ignored'][] = $transaction;
} else {
$report[$transaction->getCategory()->getName()][] = $transaction;
}
}
$total = 0;
foreach ($report as $categoryName => $transactions) {
if (count($transactions) == 0) {
continue;
}
$categoryTotal = 0;
echo $categoryName . "\n";
foreach ($transactions as $transaction) {
printf( "\t%s %-30.30s %10.2f\n",
$transaction->getDate(),
$transaction->getDescription(),
$transaction->getAmount());
$categoryTotal += $transaction->getAmount();
}
printf("\tTotal: %.2f", $categoryTotal);
printf("\n\n\n");
if ($categoryName == 'Ignored') {
continue;
}
$total += $categoryTotal;
}
printf("Total: %.2f\n", $total);
}
}
?>