CORE-POS/IS4C

View on GitHub
fannie/modules/plugins2.0/WfcHoursTracking/WfcHtViewSalaryPage.php

Summary

Maintainability
B
4 hrs
Test Coverage
<?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

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

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

class WfcHtViewSalaryPage extends FanniePage
{
    protected $must_authenticate = true;
    public $page_set = 'Plugin :: WFC Hours Tracking';
    public $description = '[View Salary] shows information for a single salaried employee.';

    protected $title = 'View Employee';
    protected $header = '';

    private $empID = 0;
    public function preprocess()
    {
        $this->empID = FormLib::get('id');

        if ($this->empID === '' || !is_numeric($this->empID)) {
            $this->empID = FannieAuth::getUID($this->current_user);
        }

        if (!FannieAuth::validateUserQuiet('view_all_hours')) {
            /* see if logged in user has access to any
               department. if so, see if the selected employee
               is in that department
            */
            $validated = false;
            $depts = array(10,11,12,13,20,21,30,40,41,50,60,998);
            $sql = WfcHtLib::hours_dbconnect();
            $checkQ = $sql->prepare("select department from employees where empID=?");
            $checkR = $sql->execute($checkQ, array($this->empID));
            $checkW = $sql->fetch_row($checkR);
            if (FannieAuth::validateUserQuiet('view_all_hours', $checkW['department'])){
                $validated = true;
            }

            /* no access permissions found, so only allow the
               logged in user to see themself
            */
            if (!$validated) {
                $this->empID = FannieAuth::getUID($this->current_user);
            }
        }

        $sql = WfcHtLib::hours_dbconnect();
        $deptQ = $sql->prepare("select department from employees where empID=?");
        $deptR = $sql->execute($deptQ, array($this->empID));
        $deptW = $sql->fetch_row($deptR);
        if ($deptW['department'] < 998){
            header("Location: WfcHtViewEmpPage.php?id=".$this->empID);
            return false;
        }

        return true;
    }

    public function css_content()
    {
        return <<<CSS
#payperiods {
    margin-top: 50px;
}

tr.one td {
    background: #ffffcc;
}
tr.one th {
    background: #ffffcc;
    text-align: right;
}

tr.two td {
    background: #ffffff;
}
tr.two th {
    background: #ffffff;
    text-align: right;
}
a {
    color: blue;
}

#temptable th {
    text-align: left;
}
#temptable td {
    text-align: right;
    padding-left: 2em;
}

#temptable {
    font-size: 125%;
}

#newtable th{
    text-align: left;
}
#newtable td{
    text-align: right;
}
CSS;
    }
    
    public function body_content()
    {
        global $FANNIE_URL;
        $sql = WfcHtLib::hours_dbconnect();

        ob_start();

        echo "<h3>Salary Employee PTO Status</h3>";

        $infoQ = $sql->prepare("select e.name,e.adpID,
            s.totalTaken as daysTaken
            from employees as e left join
            salarypto_ytd as s on e.empID=s.empID
            where e.empID=?");
        $infoW = $sql->getRow($infoQ, array($this->empID));

        echo "<h2>{$infoW['name']} [ <a href={$FANNIE_URL}auth/ui/loginform.php?logout=yes>Logout</a> ]</h2>";
        echo "<table class=\"table\" id=newtable>";
        echo "<tr class=one><th>PTO Allocation</th><td>{$infoW['adpID']}</td></tr>";
        echo "<tr class=two><th>PTO Taken, YTD</th><td>{$infoW['daysTaken']}</td></tr>";
        echo "<tr class=one><th>PTO Remaining</th><td>".($infoW['adpID']-$infoW['daysTaken'])."</td></tr>";
        echo "</tr></table>";

        $periodsQ = $sql->prepare("select daysUsed,month(dstamp),year(dstamp) 
                from salaryHours where empID=? order by dstamp DESC");
        $periodsR = $sql->execute($periodsQ, array($this->empID));
        $class = array("one","two");
        $color = 0;
        echo "<table id=payperiods class=\"table\">";
        echo "<tr><th>Month</th><th>PTO Taken</th></tr>";
        while ($row = $sql->fetch_row($periodsR)){
            echo "<tr class=\"$class[$color]\">";
            $dstr = date("F Y",mktime(0,0,0,$row[1],1,$row[2]));
            echo "<td>$dstr</td>";
            echo "<td>$row[0]</td>";
            echo "</tr>";   
            $color = ($color+1)%2;
        }

        echo "</table>";
        echo "<div class=\"well\">
        <u>Please Note</u>: This web-base PTO Access Page is new. If you notice any problems,
        please contact Colleen or Andy.
        </div>";

        echo "</body></html>";

        return ob_get_clean();
    }
}

FannieDispatch::conditionalExec();