From: Iain Patterson Date: Tue, 24 Sep 2013 08:13:26 +0000 (+0100) Subject: Report orders by beneficiary postcode. X-Git-Tag: 2013-09-24^0 X-Git-Url: http://git.iain.cx/?p=readifood.git;a=commitdiff_plain;h=d2336ce5f06b0e2762149edce0d7253437914f2b;hp=6c0392caed936af1c4f3fba0c49beda59011f7d5 Report orders by beneficiary postcode. --- diff --git a/lib/report.php b/lib/report.php index 2209d52..d8699d2 100644 --- a/lib/report.php +++ b/lib/report.php @@ -102,6 +102,44 @@ echo "\n"; } + function show_postcode_report(&$order_ids) { + echo "

Orders by postcode

\n"; + + /* + No regex replace support in MySQL so we'll have to retrieve all records + and group the postcodes ourselves. + */ + $q = new OrderQuery; + $q->filterById($order_ids); + $q->join("Beneficiary"); + /* No foreign key so we need to list the two tables. */ + $q->join("Beneficiary.Address"); + /* Not a FoodOrder column so we need to ask for it explicitly. */ + $q->withColumn('upper(postcode)', 'postcode'); + $rows = $q->find(); + + $total = 0; + $postcodes = array(); + foreach ($rows as $row) { + $postcode = preg_replace('/\s*[0-9][A-Z]+$/', '', trim($row->getPostcode())); + if (! $postcode) $postcode = "Unknown"; + $postcodes[$postcode]++; + $total++; + } + ksort($postcodes); + + echo "\n"; + foreach ($postcodes as $postcode => $count) { + echo "\n"; + printf(" \n", $count, htmlspecialchars($postcode)); + echo "\n"; + } + echo "\n"; + echo " \n"; + echo "\n"; + echo "
%d%s
$totalTotal
\n"; + } + function show_contents_report(&$order_ids, $parcel_size, $grand_total) { global $parcel_sizes, $parcel_contents; @@ -200,6 +238,7 @@ } show_order_report($order_state_ids); + show_postcode_report($order_ids); show_parcel_report($order_ids); show_requester_report($order_ids); }