From: Iain Patterson Date: Thu, 10 Apr 2014 15:32:16 +0000 (-0400) Subject: Merge branch 'master' into uat X-Git-Tag: live-2014-04-10 X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=refs%2Ftags%2Flive-2014-04-10;hp=a1bc70f4ac65ec18d45b80c5c71b62d55dc363d3;p=readifood.git Merge branch 'master' into uat --- diff --git a/lib/report.php b/lib/report.php index b2bc16d..999bbc5 100644 --- a/lib/report.php +++ b/lib/report.php @@ -60,17 +60,23 @@ return true; } - function show_order_report(&$order_state_ids) { + function show_order_report($from, &$order_state_ids) { echo "

Orders by week

\n"; + /* Handle missing weeks at the start of the range. */ + $dbh = Propel::getConnection(); + $sth = $dbh->prepare("select yearweek(:from)"); + $sth->execute(array(':from' => $from)); + list($first_week) = $sth->fetch(); + $year_offset = substr($first_week, 0, 4); + $week_offset = substr($first_week, 4, 2) - 1; + $q = new OrderStateQuery; $q->filterById($order_state_ids); $q->withColumn('yearweek(updated)', 'week'); $q->withColumn('count(*)', 'count'); $q->addGroupByColumn('week')->orderByUpdated(); $rows = $q->find(); - $year_offset = 0; - $week_offset = 0; $week = 1; $last_week = 0; $total = 0; @@ -81,15 +87,9 @@ Beware that week 201401 comes after 201352. */ $yearweek = $row->getWeek(); - if (! $week_offset) { - $year_offset = substr($yearweek, 0, 4); - $week_offset = substr($yearweek, 4, 2) - 1; - } - else { - $y = substr($yearweek, 0, 4); - $w = substr($yearweek, 4, 2); - $week = (($y - $year_offset) * 52) + ($w - $week_offset); - } + $y = substr($yearweek, 0, 4); + $w = substr($yearweek, 4, 2); + $week = (($y - $year_offset) * 52) + ($w - $week_offset); $total += $row->getCount(); /* Fill in missing weeks. XXX */ for ($missing_week = $last_week + 1; $missing_week < $week; $missing_week++) { @@ -231,9 +231,12 @@ $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'"); $sth->execute(); $order_states = OrderStatePeer::populateObjects($sth); + $dups = array(); foreach ($order_states as $order_state) { - $order_ids[] = $order_state->getOrderId(); - $order_state_ids[] = $order_state->getId(); + $order_id = $order_state->getOrderId(); + $order_ids[] = $order_id; + if (! $dups[$order_id]) $order_state_ids[] = $order_state->getId(); + $dups[$order_id] = true; } $q = new OrderQuery; $q->filterById($order_ids); @@ -243,7 +246,7 @@ return; } - show_order_report($order_state_ids); + show_order_report($from, $order_state_ids); show_postcode_report($order_ids); show_parcel_report($order_ids); show_requester_report($order_ids);