CORE-POS/IS4C

View on GitHub
fannie/reports/CashierRecords/CashierRecordsReport.php

Summary

Maintainability
A
0 mins
Test Coverage
C
71%
<?php
/*******************************************************************************

    Copyright 2013 Whole Foods Co-op

    This file is part of CORE-POS.

    CORE-POS is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    CORE-POS is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    in the file license.txt along with IT CORE; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*********************************************************************************/

include(dirname(__FILE__) . '/../../config.php');
if (!class_exists('FannieAPI')) {
    include_once(__DIR__ . '/../../classlib2.0/FannieAPI.php');
}

class CashierRecordsReport extends FannieReportPage 
{
    public $description = '[Cashier Records] shows per-cashier sales and transaction totals
        over a given date range. "Records" here should be interpretted like "Record Sales Day".';
    public $report_set = 'Cashiering';

    protected $report_headers = array('Emp#', 'Date', '$', '# of Trans');
    protected $sort_column = 3;
    protected $sort_direction = 1;
    protected $report_cache = 'day';
    protected $title = "Fannie : Cashier Shift Records Report";
    protected $header = "Cashier Shift Records Report";
    protected $required_fields = array('date1', 'date2');

    public function fetch_report_data()
    {
        $dbc = $this->connection;
        $dbc->selectDB($this->config->get('OP_DB'));
        $date1 = $this->form->date1;
        $date2 = $this->form->date2;

        $dlog = DTransactionsModel::selectDlog($date1, $date2);
        $query = $dbc->prepare("select emp_no,sum(-total),count(DISTINCT trans_num),
                year(tdate),month(tdate),day(tdate)
                from $dlog as d where
                tdate BETWEEN ? AND ?
                AND trans_type='T'
                GROUP BY year(tdate),month(tdate),day(tdate),emp_no
                ORDER BY sum(-total) DESC");
        $res = $dbc->execute($query,array($date1.' 00:00:00',$date2.' 23:59:59'));

        $data = array();
        while ($row = $dbc->fetchRow($res)) {
            $record = array($row['emp_no'],
                        sprintf('%d/%d/%d',$row[4],$row[5],$row[3]),
                        sprintf('%.2f',$row[1]),
                        $row[2]);
            $data[] = $record;
        }
        return $data;
    }

    private function rowToRecord($row)
    {
        return array($row['emp_no'],
                    sprintf('%d/%d/%d',$row[4],$row[5],$row[3]),
                    sprintf('%.2f',$row[1]),
                    $row[2]);
    }

    public function form_content()
    {
        ob_start();
?>
<form method ="get" action="CashierRecordsReport.php">
<div class="col-sm-4">
    <div class="form-group">
    <label>Date Start</label>
    <input type=text id=date1 name=date1 class="form-control date-field" />
    </div>
    <div class="form-group">
    <label>Date End</label>
    <input type=text id=date2 name=date2 class="form-control date-field" />
    </div>
    <p>
    <button type=submit name=submit class="btn btn-default btn-core">Submit</button>
    <button type=reset name=reset class="btn btn-default btn-reset">Start Over</button>
    </p>
</div>
<div class="col-sm-4">
    <?php echo FormLib::date_range_picker(); ?>
</div>
</form>
<?php

        return ob_get_clean();
    }

    public function helpContent()
    {
        return '<p>
            This report lists the total sales and number of
            transactions handled by each cashier in a given
            date range. This is trivia cashiers may enjoy
            but likely serves no larger business purpose.
            </p>';
    }

    public function unitTest($phpunit)
    {
        $data = array('emp_no'=>1, 1=>100, 2=>5, 3=>2000, 4=>1, 5=>1);
        $phpunit->assertInternalType('array', $this->rowToRecord($data));
    }
}

FannieDispatch::conditionalExec();