b268440f6d5d0eb901ef45840ddb4a5faf8a5a3b
[readifood.git] / lib / report.php
1 <?php
2
3   if (isset($_POST['show_reports'])) {
4     header(sprintf("Location: http%s://%s/%s/from/%s/to/%s", ($_SERVER['HTTPS']) ? "s" : "", $_SERVER['HTTP_HOST'], $module, $_POST['from'], $_POST['to']));
5     exit;
6   }
7
8   function show_reports_form($from = null, $to = null) {
9     form("noprint standout");
10     echo "<p>Show reports covering the period from ";
11
12     /* Default to last month. */
13     list($y, $m, $d) = explode('-', date('Y-m-d', time()));
14     $latest = "$y-$m-$d";
15     $now = mktime(0, 0, 0, $m, $d, $y);
16     $first = mktime(0, 0, 0, $m, 1, $y);
17     $last = $first - 86400;
18     $date = date('Y-m-d', $last);
19     if (is_null($to)) $to = $date;
20     list($y, $m, $d) = explode('-', $date);
21     $first = mktime(0, 0, 0, $m, 1, $y);
22     if (is_null($from)) $from = date('Y-m-d', $first);
23     $date = $first;
24     for ($i = 0; $i < 2; $i++) {
25       $date -= 86400;
26       list ($y, $m, $d) = explode('-', date('Y-m-d', $date));
27       $date = mktime(0, 0, 0, $m, 1, $y);
28     }
29     $oldest = date('Y-m-d', $date);
30     $then = $date;
31
32     echo "<select name=\"from\">\n";
33     for ($date = $then; $date <= $now; $date += 86400) {
34       option("from", date('Y-m-d', $date), date('j F Y', $date), $from);
35     }
36     echo "</select> to <select name=\"to\">\n";
37     for ($date = $then; $date <= $now; $date += 86400) {
38       option("to", date('Y-m-d', $date), date('j F Y', $date), $to);
39     }
40     echo "</select>\n";
41
42     submit("show_reports", "Show");
43     end_form();
44   }
45
46   function check_report_dates($from, $to) {
47     list($y, $m, $d) = explode('-', $from);
48     if (! checkdate($m, $d, $y)) {
49       echo "<p>Invalid report start date!</p>\n";
50       return false;
51     }
52     $start = mktime(0, 0, 0, $m, $d, $y);
53
54     list($y, $m, $d) = explode('-', $to);
55     if (! checkdate($m, $d, $y)) {
56       echo "<p>Invalid report end date!</p>\n";
57       return false;
58     }
59     $end = mktime(0, 0, 0, $m, $d, $y);
60
61     if ($end < $start) {
62       echo "<p>Report end date is earlier than start date!</p>\n";
63       return false;
64     }
65
66     return true;
67   }
68
69   function show_order_report(&$order_state_ids) {
70     echo "<h3>Orders by week</h3>\n";
71
72     $q = new OrderStateQuery;
73     $q->filterById($order_state_ids);
74     $q->withColumn('yearweek(updated)', 'week');
75     $q->withColumn('count(*)', 'count');
76     $q->addGroupByColumn('week')->orderByUpdated();
77     $rows = $q->find();
78     $week_offset = 0;
79     $week = 1;
80     $last_week = 0;
81     $total = 0;
82     echo "<table class=\"report\">\n";
83     foreach ($rows as $row) {
84       /* Convert week of year to date range. */
85       if (! $week_offset) $week_offset = $row->getWeek() - 1;
86       else $week = $row->getWeek() - $week_offset;
87       $total += $row->getCount();
88       /* Fill in missing weeks. XXX */
89       for ($missing_week = $last_week + 1; $missing_week < $week; $missing_week++) {
90         echo "<tr>\n";
91         printf("  <td>0</td><td>Week %d</td>\n", $missing_week);
92         echo "</tr>\n";
93       }
94       echo "<tr>\n";
95       printf("  <td>%d</td><td>Week %d</td>\n", $row->getCount(), $week);
96       echo "</tr>\n";
97       $last_week = $week;
98     }
99     echo "<tr>\n";
100     echo "  <td class=\"strong\">$total</td><td class=\"strong\">Total</td>\n";
101     echo "</tr>\n";
102     echo "</table>\n";
103   }
104
105   function show_requester_report(&$order_ids) {
106     echo "<h3>Orders by referrer</h3>\n";
107
108     $q = new OrderQuery;
109     $q->filterById($order_ids);
110     $q->withColumn('count(*)', 'count');
111     $q->groupByRequesterId()->addDescendingOrderByColumn('count');
112     $rows = $q->find();
113     $total = 0;
114     echo "<table class=\"report\">\n";
115     /* XXX Join! */
116     foreach ($rows as $row) {
117       echo "<tr>\n";
118       $requester = get_contact_by_id($row->getRequesterId());
119       printf("  <td>%d</td><td>%s</td>\n", $row->getCount(), htmlspecialchars($requester->getDisplayname()));
120       $total += $row->getCount();
121       echo "</tr>\n";
122     }
123     echo "<tr>\n";
124     echo "  <td class=\"strong\">$total</td><td class=\"strong\">Total</td>\n";
125     echo "</tr>\n";
126     echo "</table>\n";
127   }
128
129   function show_reports($from, $to) {
130     if (! check_report_dates($from, $to)) return;
131
132     echo "<p>Showing reports for the period <strong>$from</strong> to <strong>$to</strong>.</p>\n";
133
134     /* Get orders. */
135     $order_ids = array();
136     $order_state_ids = array();
137     /* XXX: Order 51 changed to state delivered in May then updated in June. */
138     $dbh = Propel::getConnection();
139     $sth = $dbh->prepare("select * from OrderState o where updated=(select min(updated) from OrderState where order_id=o.order_id and state & " . $GLOBALS['STATE_DELIVERED'] . ") and updated between '$from' and '$to'");
140     $sth->execute();
141     $order_states = OrderStatePeer::populateObjects($sth);
142     foreach ($order_states as $order_state) {
143       $order_ids[] = $order_state->getOrderId();
144       $order_state_ids[] = $order_state->getId();
145     }
146     $q = new OrderQuery;
147     $q->filterById($order_ids);
148
149     if (! count($order_ids)) {
150       echo "<p>No results!</p>\n";
151       return;
152     }
153
154     show_order_report($order_state_ids);
155     show_requester_report($order_ids);
156   }
157
158   if (count($parameters)) {
159     if ($parameters[0] == "from") {
160       $from = $parameters[1];
161       if ($parameters[2] == "to") $to = $parameters[3];
162       show_reports($from, $to);
163     }
164   }
165   show_reports_form($from, $to);
166 ?>