CORE-POS/IS4C

View on GitHub
pos/is4c-nf/gui-modules/adminlist.php

Summary

Maintainability
C
1 day
Test Coverage
D
60%
<?php
/*******************************************************************************

    Copyright 2010 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

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

use COREPOS\pos\lib\gui\NoInputCorePage;
use COREPOS\pos\lib\Authenticate;
use COREPOS\pos\lib\Database;
use COREPOS\pos\lib\FormLib;
use COREPOS\pos\lib\MiscLib;
use COREPOS\pos\lib\ReceiptLib;
use COREPOS\pos\lib\SuspendLib;
use COREPOS\pos\lib\PrintHandlers\PrintHandler;
use COREPOS\pos\lib\ReceiptBuilding\TenderReports\TenderReport;
include_once(dirname(__FILE__).'/../lib/AutoLoader.php');

class adminlist extends NoInputCorePage 
{
    private $security;
    function preprocess()
    {
        $emp = $this->session->get('CashierNo');    
        $this->security = Authenticate::getPermission($emp);

        try {
            $choice = $this->form->selectlist;
            if (!FormLib::validateToken()) {
                return false;
            }
            return $this->handleInput($choice);

        } catch (Exception $ex) {}

        return true;
    }

    private function handleInput($choice)
    {
        switch ($choice) {
            case 'SUSPEND':
                return $this->suspendTransaction();
            case 'RESUME':
                $url = $this->resumeTransaction();
                $this->change_page($url);
                return false;
            case 'REOPEN':
                $this->change_page($this->page_url . 'gui-modules/TransList.php');
                return false;
            case 'TR':
                TenderReport::printReport();
                $this->change_page($this->page_url."gui-modules/pos2.php");
                return false;
            case 'EOD':
                TenderReport::printReport('WfcLimitedTenderReport');
                $this->change_page($this->page_url."gui-modules/pos2.php");
                return false;
            case 'OTR':
                if ($this->security >= 30) {
                    $this->change_page($this->page_url.'gui-modules/requestInfo.php?class=COREPOS-pos-lib-adminlogin-AnyTenderReportRequest');
                    return false;
                }
                return true;
            case 'UNDO':
                if ($this->security >= 30) {
                    $this->change_page($this->page_url . 'gui-modules/undo.php');
                    return false;
                }
                return true;
            case 'SURVEY':
                $receipt = ReceiptLib::printReceiptHeader(date('Y-m-d H:i:s'), '1-2-3');
                $mod = new SurveyReceiptMessage();
                $mod->setPrintHandler(PrintHandler::factory(CoreLocal::get('ReceiptDriver')));
                $receipt .= $mod->message(1, '1-2-3');
                $receipt = ReceiptLib::cutReceipt($receipt, false);
                ReceiptLib::writeLine($receipt);
                $this->change_page($this->page_url."gui-modules/pos2.php");
                return false;
            default:
                $this->change_page($this->page_url."gui-modules/pos2.php");
                return false;
        }
    }

    private function suspendTransaction()
    {
        Database::getsubtotals();
        if ($this->session->get("LastID") == 0) {
            $this->session->set("boxMsg",_("no transaction in progress"));
            $this->session->set('boxMsgButtons', array(
                'Dismiss [clear]' => '$(\'#reginput\').val(\'CL\');submitWrapper();',
            ));
            $this->change_page($this->page_url."gui-modules/boxMsg2.php");
            return false;
        }

        // ajax call to end transaction
        // and print receipt
        $ref = SuspendLib::suspendorder($this->session);
        $this->add_onload_command("adminlist.suspendOrder('{$ref}');\n");

        return True;
    }

    private function resumeTransaction()
    {
        Database::getsubtotals();
        if ($this->session->get("LastID") != 0) {
            $this->session->set("boxMsg",_("transaction in progress"));
            $this->session->set('boxMsgButtons', array(
                _('Dismiss [clear]') => '$(\'#reginput\').val(\'CL\');submitWrapper();',
            ));
            return $this->page_url . 'gui-modules/boxMsg2.php';
        } elseif (SuspendLib::checksuspended($this->session) == 0) {
            $this->session->set("boxMsg",_("no suspended transaction"));
            $this->session->set('boxMsgButtons', array(
                _('Dismiss [clear]') => '$(\'#reginput\').val(\'CL\');submitWrapper();',
            ));
            $this->session->set("strRemembered","");
            return $this->page_url . 'gui-modules/boxMsg2.php';
        }

        return $this->page_url . 'gui-modules/suspendedlist.php';
    }

    function head_content(){
        ?>
        <script type="text/javascript" src="<?php echo $this->page_url; ?>js/ajax-parser.js"></script>
        <script type="text/javascript" src="../js/selectSubmit.js"></script>
        <script type="text/javascript" src="js/adminlist.js"></script>
        <?php
    } // END head() FUNCTION

    function body_content() {
        $stem = MiscLib::baseURL() . 'graphics/';
        ?>
        <div class="baseHeight">
        <div class="centeredDisplay colored rounded">
            <span class="larger"><?php echo _("administrative tasks"); ?></span>
            <br />
        <form id="selectform" method="post" action="<?php echo AutoLoader::ownURL(); ?>">
        <?php if ($this->session->get('touchscreen')) { ?>
        <button type="button" class="pos-button coloredArea"
            onclick="scrollDown('#selectlist');">
            <img src="<?php echo $stem; ?>down.png" width="16" height="16" />
        </button>
        <?php } ?>
        <select name="selectlist" id="selectlist" onblur="$('#selectlist').focus();">
        <option value=''><?php echo _("Select a Task"); ?>
        <option value='SUSPEND'>1. <?php echo _("Suspend Transaction"); ?>
        <option value='RESUME'>2. <?php echo _("Resume Transaction"); ?>
        <?php if ($this->session->get('SecurityTR') != 30 || $this->security >= 30) { ?>
            <option value='TR'>3. <?php echo _("Tender Report"); ?>
        <?php } ?>
        <?php if ($this->security >= 30){ ?>
            <option value='OTR'>4. <?php echo _("Any Tender Report"); ?>
            <option value='UNDO'><?php echo _('Undo Transaction'); ?>
        <?php if (class_exists('SurveyReceiptMessage')) { ?>
            <option value='SURVEY'><?php echo _('Print Survey Receipt'); ?>
        <?php } ?>
        <?php } ?>
        <option value="REOPEN">Re-Open Transaction</option>
        <?php if ($this->session->get('store') == 'wfc') { ?>
            <option value="EOD">End of Day Report</option>
        <?php } ?>
        </select>
        <?php if ($this->session->get('touchscreen')) { ?>
        <button type="button" class="pos-button coloredArea"
            onclick="scrollUp('#selectlist');">
            <img src="<?php echo $stem; ?>up.png" width="16" height="16" />
        </button>
        <?php } ?>
        <?php echo FormLib::tokenField(); ?>
        <div class="smaller">
            <?php
            echo _("use arrow keys to navigate");
            ?>
        </div>
        <p>
            <button class="pos-button" type="submit"><?php echo _('Select [enter]'); ?></button>
            <button class="pos-button" type="submit" onclick="$('#selectlist').val('');">
                <?php echo _('Cancel [clear]'); ?>
            </button>
        </p>
        </div>
        </form>
        </div>
        <?php
        $this->add_onload_command("\$('#selectlist').focus();");
        $this->add_onload_command("selectSubmit('#selectlist', '#selectform')\n");
    } // END body_content() FUNCTION

    public function unitTest($phpunit)
    {
        $this->security = 0;
        $phpunit->assertEquals(false, $this->handleInput('CL'));
        $phpunit->assertEquals(true, $this->handleInput('OTR'));
        $phpunit->assertEquals(true, $this->handleInput('UNDO'));
        $this->security = 30;
        $phpunit->assertEquals(false, $this->handleInput('OTR'));
        $phpunit->assertEquals(false, $this->handleInput('UNDO'));
        $phpunit->assertEquals(false, $this->handleInput('TR'));
        $phpunit->assertEquals(false, $this->handleInput('RESUME'));
    }
}

AutoLoader::dispatch();