CORE-POS/IS4C

View on GitHub
pos/is4c-nf/lib/TotalActions/AutoCoupon.php

Summary

Maintainability
A
2 hrs
Test Coverage
F
52%
<?php
/*******************************************************************************

    Copyright 2013 Whole Foods Co-op

    This file is part of IT CORE.

    IT CORE 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.

    IT CORE 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

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

namespace COREPOS\pos\lib\TotalActions;
use \CoreLocal;
use COREPOS\pos\lib\Database;
use COREPOS\pos\lib\TransRecord;
use COREPOS\pos\lib\Scanning\SpecialUPCs\HouseCoupon;
use COREPOS\pos\lib\LocalStorage\WrappedStorage;

/**
  @class AutoCoupon
  Apply automatic coupons to the transaction
*/
class AutoCoupon extends TotalAction
{
    private function getCoupons()
    {
        $dbc = Database::pDataConnect();
        $coupons = array();
        $hc_table = $dbc->tableDefinition('houseCoupons');
        if ($dbc->table_exists('autoCoupons')) {
            $autoR = $dbc->query('SELECT coupID, description FROM autoCoupons');
            while($autoW = $dbc->fetch_row($autoR)) {
                $coupons[$autoW['coupID']] = $autoW['description'];
            }
        }
        if (isset($hc_table['description']) && isset($hc_table['auto'])) {
            $today = date('Y-m-d');
            $autoR = $dbc->query("
                SELECT coupID, description 
                FROM houseCoupons 
                WHERE auto=1
                    AND '$today' BETWEEN startDate AND endDate");
            while($autoW = $dbc->fetch_row($autoR)) {
                $coupons[$autoW['coupID']] = $autoW['description'];
            }
        }

        return $coupons;
    }

    /**
      Apply action
      @return [boolean] true if the action
        completes successfully (or is not
        necessary at all) or [string] url
        to redirect to another page for
        further decisions/input.
    */
    public function apply()
    {
        $dbc = Database::pDataConnect();
        $repeat = CoreLocal::get('msgrepeat');
        $coupons = $this->getCoupons();

        $hcoup = new HouseCoupon(new WrappedStorage());
        $prefix = CoreLocal::get('houseCouponPrefix');
        if ($prefix == '') {
            $prefix = '00499999';
        }

        foreach($coupons as $id => $description) {

            if ($hcoup->checkQualifications($id, true) !== true) {
                // member or transaction does not meet requirements
                // for auto-coupon purposes, this isn't really an 
                // error. no feedback necessary
                continue;
            }

            // get value of coupon AND value
            // of any previous applications of this coupon
            $add = $hcoup->getValue($id);
            $upc = $prefix . str_pad($id, 5, '0', STR_PAD_LEFT);
            $upc = str_pad($upc, 13, '0', STR_PAD_LEFT);
            $current = $dbc->query('SELECT SUM(-total) AS ttl FROM '
                           .CoreLocal::get('tDatabase') . $dbc->sep() . 'localtemptrans
                           WHERE upc=\'' . $upc . '\'');
            $val = 0;
            if ($dbc->num_rows($current) > 0) {
                $currentW = $dbc->fetch_row($current);
                $val = $currentW['ttl'];
            }

            $next_val = $add['value'] - $val;
            if (abs($next_val) < 0.01) {
                // no need to add another line item
                // previous one(s) sum to correct total
                continue;
            }

            TransRecord::addhousecoupon($upc, $add['department'], -1 * $next_val, $description, $add['discountable'], $add['tax']);
        }

        CoreLocal::set('msgrepeat', $repeat);

        return true;
    }
}