CORE-POS/IS4C

View on GitHub
fannie/admin/labels/EditShelfTags.php

Summary

Maintainability
A
3 hrs
Test Coverage
F
54%
<?php
/*******************************************************************************

    Copyright 2009,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

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

use COREPOS\Fannie\API\lib\FannieUI;

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

class EditShelfTags extends FannieRESTfulPage 
{
    protected $title = 'Fannie - Edit Shelf Tags';
    protected $header = 'Edit Shelf Tags';
    protected $must_authenticate = true;
    protected $auth_classes = array('barcodes');

    public $description = '[Edit Shelf Tags] updates the text information for a set of tags.';
    public $themed = true;

    public function preprocess()
    {
        $this->__routes[] = 'delete<id><upc>';
        $this->__routes[] = 'delete<id><upc><confirm>';
        $this->__routes[] = 'post<newID><oldID><upc>';
        $this->__routes[] = 'get<id><reprice>';

        return parent::preprocess();
    }

    protected function get_id_reprice_handler()
    {
        $tags = new ShelftagsModel($this->connection);
        $tags->id($this->id);
        $priceP = $this->connection->prepare('
            SELECT normal_price
            FROM products
            WHERE upc=?');
        $source = $this->config->get('TAG_DATA_SOURCE');
        if (empty($source) || !class_exists($source)) {
            $source = 'COREPOS\\Fannie\\API\\item\\TagDataSource';
        }
        $tagSource = new $source();
        foreach ($tags->find() as $tag) {
            $current_price = $this->connection->getValue($priceP, array($tag->upc()));
            if ($current_price !== false) {
                $tag->normal_price($current_price);
                $tagData = $tagSource->getTagData($this->connection, $tag->upc(), $current_price);
                $tag->pricePerUnit($tagData['pricePerUnit']);
                $tag->save();
            }
        }

        return true;
    }

    protected function get_id_reprice_view()
    {
        return '<div class="alert alert-success">Updated Prices</div>'
            . $this->get_id_view();
    }

    private function valOrDefault($field, $index, $default)
    {
        $arr = FormLib::get($field, array());
        return isset($arr[$index]) ? $arr[$index] : $default;
    }

    public function post_id_handler()
    {
        $upcs = FormLib::get('upc',array());
        $tag = new ShelftagsModel($this->connection);
        for ($i = 0; $i < count($upcs); $i++){
            $tag->id($this->id);
            $tag->upc($upcs[$i]);
            $tag->description($this->valOrDefault('desc', $i, ''));
            $tag->normal_price($this->valOrDefault('price', $i, 0));
            $tag->brand($this->valOrDefault('brand', $i, ''));
            $tag->sku($this->valOrDefault('sku', $i, ''));
            $tag->size($this->valOrDefault('size', $i, ''));
            $tag->units($this->valOrDefault('units', $i, 1));
            $tag->vendor($this->valOrDefault('vendor', $i, ''));
            $tag->pricePerUnit($this->valOrDefault('ppo', $i, ''));
            $tag->count($this->valOrDefault('counts', $i, 1));
            $tag->save();
        }

        return 'ShelfTagIndex.php';
    }

    public function delete_id_upc_confirm_handler()
    {
        $dbc = $this->connection;
        $dbc->selectDB($this->config->get('OP_DB'));

        $tag = new ShelftagsModel($dbc);
        $tag->id($this->id);
        $tag->upc(BarcodeLib::padUPC($this->upc));
        $tag->delete();

        header('Location: ' . filter_input(INPUT_SERVER, 'PHP_SELF') . '?id=' . $this->id);

        return false;
    }

    public function post_newID_oldID_upc_handler()
    {
        $dbc = $this->connection;
        $dbc->selectDB($this->config->get('OP_DB'));
        
        $moveP = $dbc->prepare('
            UPDATE shelftags
            SET id=?
            WHERE id=?
                AND upc=?
        ');
        $moveR = $dbc->execute($moveP, array($this->newID, $this->oldID, BarcodeLib::padUPC($this->upc)));

        header('Location: ' . filter_input(INPUT_SERVER, 'PHP_SELF') . '?id=' . $this->oldID);

        return false;
    }

    public function get_id_view()
    {
        $dbc = FannieDB::getReadOnly($this->config->get('OP_DB'));

        $tags = new ShelftagsModel($dbc);
        $tags->id($this->id);

        $ret = "<form action=EditShelfTags.php method=post>";
        $ret .= "<table class=\"table table-striped table-bordered small\">";
        $ret .= "<tr><th>UPC</th><th>Desc</th><th>Price</th><th>Brand</th><th>SKU</th>";
        $ret .= "<th>Size</th><th>Units</th><th>Vendor</th><th>PricePer</th><th># Tags</th></tr>";

        foreach ($tags->find() as $tag) {
            $ret .= $this->tagToRow($tag);
        }
        $ret .= "</table>";
        $ret .= "<input type=hidden name=id value=\"".$this->id."\" />";
        $ret .= '<p>';
        $ret .= "<button type=submit name=submit value=\"1\" 
            class=\"btn btn-default btn-core\">Update Shelftags</button>
            <a href=\"?id=" . $this->id . "&reprice=1\" 
            class=\"btn btn-default btn-reset\">Use Current Pricing</a>";
        $ret .= '</p>';
        $ret .= "</form>";

        return $ret;
    }

    private function tagToRow($tag)
    {
        $ret = '<tr>';
        $ret .= "<td>" . $tag->upc() . "</td><input type=hidden name=upc[] value=\"" . $tag->upc() . "\" />";
        $ret .= "<td><input type=text name=desc[] value=\"" . $tag->description() . "\" 
                    class=\"form-control input-sm\" /></td>";
        $ret .= "<td><div class=\"input-group\">
                <span class=\"input-group-addon\">\$</span>
                <input type=text name=price[] value=\"" . $tag->normal_price() . "\" 
                    class=\"form-control price-field input-sm\" />
                </div></td>";
        $ret .= "<td><input type=text name=brand[] value=\"" . $tag->brand() . "\" 
                    class=\"form-control input-sm\" /></td>";
        $ret .= "<td><input type=text name=sku[] value=\"" . $tag->sku() . "\" 
                    class=\"form-control input-sm\" /></td>";
        $ret .= "<td><input type=text name=size[] value=\"" . $tag->size() . "\" 
                    class=\"form-control input-sm\" /></td>";
        $ret .= "<td><input type=text name=units[] value=\"" . $tag->units() . "\" 
                    class=\"form-control input-sm price-field\" /></td>";
        $ret .= "<td><input type=text name=vendor[] value=\"" . $tag->vendor() . "\" 
                    class=\"form-control input-sm\" /></td>";
        $ret .= "<td><input type=text name=ppo[] value=\"" . $tag->pricePerUnit() . "\" 
                    class=\"form-control input-sm\" /></td>";
        $ret .= "<td><input type=number name=counts[] value=\"" . $tag->count() . "\" 
                    class=\"form-control input-sm price-field\" /></td>";
        $ret .= '<td><a href="?_method=delete&id=' . $this->id . '&upc=' . $tag->upc() . '"
                    class="btn btn-danger">'
                    . FannieUI::deleteIcon('Delete OR Change Queue')
                    . '</a></td>';
        $ret .= "</tr>";

        return $ret;
    }

    public function delete_id_upc_view()
    {
        $dbc = FannieDB::getReadOnly($this->config->get('OP_DB'));

        $tag = new ShelftagsModel($dbc);
        $tag->id($this->id);
        $tag->upc(BarcodeLib::padUPC($this->upc));
        $tag->load();
        $tag = $tag->toStdClass();
        $queues = new ShelfTagQueuesModel($dbc);
        $qOpts = $queues->toOptions();
        $self = filter_input(INPUT_SERVER, 'PHP_SELF');
        $icon = FannieUI::deleteIcon();

        return <<<HTML
<form action="{$self}" method="post">
<div class="panel panel-default">
    <div class="panel-heading">Selected Tag</div>
    <div class="panel-body">
        {$this->upc} - {$tag->brand} {$tag->description}
    </div>
</div>
<div class="panel panel-default">
    <div class="panel-heading">Delete</div>
    <div class="panel-body">
        <div class="form-group">
            <a href="?_method=delete&id={$this->id}&upc={$this->upc}&confirm=1" class="btn btn-danger">
                {$icon} Remove Tag from Queue
            </a>
        </div>
    </div>
</div>
<div class="panel panel-default">
    <div class="panel-heading">Move</div>
    <div class="panel-body">
        <div class="form-group">
            <label>Move to another Queue</label>
            <select name="newID" class="form-control">
                {$qOpts}
            </select>
        </div>
        <div class="form-group">
            <button class="btn btn-default" type="submit">Move Tag</button>
        </div>
        <input type="hidden" name="oldID" value="{$this->id}" />
        <input type="hidden" name="upc" value="{$this->upc}" />
    </div>
</div>
</form>
HTML;
    }

    public function helpContent()
    {
        return '<p>
            Edit individual fields in a set of queued shelf tags.
            These changes only impact the queued set of tags. 
            Nothing will change in the actual product, nor will
            changes persist to shelf tags created in the future.
            This is for quick fine-tuning before printing tags.
            </p>';
    }

    public function unitTest($phpunit)
    {
        $this->id = 1;
        $this->upc = '0000000004011';
        $phpunit->assertNotEquals(0, strlen($this->get_id_view()));
        $phpunit->assertNotEquals(0, strlen($this->delete_id_upc_view()));
        $phpunit->assertNotEquals(0, strlen($this->get_id_reprice_view()));
        $phpunit->assertNotEquals(0, strlen($this->tagToRow(new ShelftagsModel($this->connection))));
    }
}

FannieDispatch::conditionalExec();