CORE-POS/IS4C

View on GitHub
fannie/modules/plugins2.0/OrderTablet/OrderTabletPage.php

Summary

Maintainability
B
6 hrs
Test Coverage

Method get_done_handler has 60 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function get_done_handler()
    {
        $emp = $this->config->get('EMP_NO');
        $reg = $this->config->get('REGISTER_NO');
        $trans = DTrans::getTransNo($this->connection, $emp, $reg);
Severity: Major
Found in fannie/modules/plugins2.0/OrderTablet/OrderTabletPage.php - About 2 hrs to fix

    Method get_items_view has 45 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function get_items_view()
        {
            $res = $this->connection->query("
    SELECT i.upc, p.description, p.normal_price, p.special_price, p.discounttype, d.dept_name
    FROM OrderTabletItems AS i
    Severity: Minor
    Found in fannie/modules/plugins2.0/OrderTablet/OrderTabletPage.php - About 1 hr to fix

      Method get_view has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function get_view()
          {
              $items = '';
              $total = 0;
              foreach ($this->session->otItems as $id => $item) {
      Severity: Minor
      Found in fannie/modules/plugins2.0/OrderTablet/OrderTabletPage.php - About 1 hr to fix

        Function post_id_handler has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function post_id_handler()
            {
                $items = $this->session->otItems;
                $itemP = $this->connection->prepare("SELECT description, cost, tax, foodstamp, discount, department FROM products WHERE upc=?");
                for ($i=0; $i<count($this->id); $i++) {
        Severity: Minor
        Found in fannie/modules/plugins2.0/OrderTablet/OrderTabletPage.php - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        There are no issues that match your filters.

        Category
        Status