CORE-POS/IS4C

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

Summary

Maintainability
A
1 hr
Test Coverage
A
94%
<?php
/*******************************************************************************

    Copyright 2012 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\Database;
use COREPOS\pos\lib\DisplayLib;
include_once(dirname(__FILE__).'/../lib/AutoLoader.php');

class deptlist extends NoInputCorePage 
{
    private function handleInput($entered)
    {
        $entered = strtoupper($entered);

        if ($entered == "" || $entered == "CL"){
            // should be empty string
            // javascript causes this input if the
            // user presses CL{enter}
            // Redirect to main screen
            $this->change_page($this->page_url."gui-modules/pos2.php");
            return false;
        }

        if (is_numeric($entered)){ 
            // built department input string and set it
            // to be the next POS entry
            // Redirect to main screen
            $input = $this->form->in . "DP" . $entered . "0";
            $qty = CoreLocal::get("quantity");
            if ($qty != "" & $qty != 1 & $qty != 0) {
                $input = $qty."*".$input;
            }
            $this->change_page(
                $this->page_url
                . "gui-modules/pos2.php"
                . '?reginput=' . $input
                . '&repeat=1');
            return false;
        }

        return true;
    }

    /**
      Input processing function
    */
    function preprocess()
    {
        try {
            // a selection was made
            return $this->handleInput($this->form->search);
        } catch (Exception $ex) {}

        return true;
    } // END preprocess() FUNCTION

    /**
      Pretty standard javascript for
      catching CL typed in a select box
    */
    function head_content()
    {
        ?>
        <script type="text/javascript" src="../js/selectSubmit.js"></script>
        <?php
    } // END head() FUNCTION

    /**
      Build a <select> form that submits
      back to this script
    */
    function body_content()
    {
        $input = $this->form->tryGet('in');
        $dbc = Database::pDataConnect();
        $res = $dbc->query("SELECT dept_no,dept_name FROM departments ORDER BY dept_name");
        $action = AutoLoader::ownURL();

        $selected = "selected";
        $options = '';
        while ($row = $dbc->fetchRow($res)) {
            $options .= "<option value='".$row["dept_no"]."' ".$selected.">";
            // &shy; prevents the cursor from moving out of
            // step with filter-as-you-type
            $options .= '&shy; ' . $row['dept_name'];
            $options .= '</option>';
            $selected = "";
        }
        $touch = CoreLocal::get('touchscreen') ? '<div class="listbox listboxText">' . DisplayLib::touchScreenScrollButtons() . '</div>' : '';

        $text = array(
            'arrows' => _("use arrow keys to navigate"),
            'ok' => _('OK'),
            'cancel' => _('Cancel'),
            'enter' => _('[enter]'),
            'clear' => _('[clear]'),
        );

        echo <<<HTML
<div class="baseHeight">
    <form name="selectform" method="post" action="{$action}" id="selectform">
    <div class="listbox">
            <select name="search" id="search"
              style="min-height: 200px; min-width: 220px;"
              size="15" onblur="$('#search').focus();">";
                {$options}
            </select>
            <div id="filter-div"></div>
    </div>
    {$touch}
    <div class="listboxText coloredText centerOffset">
            {$text['arrows']}
            <p><button type="submit" class="pos-button wide-button coloredArea">
            {$text['ok']} <span class="smaller">{$text['enter']}</span>
            </button></p>
            <p><button type="submit" class="pos-button wide-button errorColoredArea"
                onclick="$('#search').append($('<option>').val(''));$('#search').val('');">
            {$text['cancel']} <span class="smaller">{$text['clear']}</span>
            </button></p>
    </div><!-- /.listboxText coloredText .centerOffset -->
    <input type="hidden" name="in" value="{$input}" />
    </form>
    <div class="clear"></div>
</div>
HTML;

        $this->addOnloadCommand("selectSubmit('#search', '#selectform', '#filter-div')\n");
        $this->addOnloadCommand("\$('#search').focus();\n");
    } // END body_content() FUNCTION

    public function unitTest($phpunit)
    {
        ob_start();
        $phpunit->assertEquals(false, $this->handleInput(''));
        $phpunit->assertEquals(false, $this->handleInput('CL'));
        $this->form->in = '';
        $phpunit->assertEquals(false, $this->handleInput('7'));
        $phpunit->assertEquals(true, $this->handleInput('z'));
        ob_get_clean();
    }
}

AutoLoader::dispatch();