CORE-POS/IS4C

View on GitHub

Showing 8,683 of 8,684 total issues

Method process_file has 94 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function process_file($linedata, $indexes)
    {
        $dbc = $this->connection;
        $dbc->selectDB($this->config->get('OP_DB'));

Severity: Major
Found in fannie/batches/CAP/EdlpUploadPage.php - About 3 hrs to fix

    Method fetch_report_data has 94 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function fetch_report_data()
        {
            $dbc = $this->connection;
            $dbc->selectDB($this->config->get('OP_DB'));
            $date1 = $this->form->date1;
    Severity: Major
    Found in fannie/reports/CashierPerformance/CashierPerformanceReport.php - About 3 hrs to fix

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

          protected function get_view()
          {
              $store = FormLib::get('store');
              if (!$store) {
                  $store = COREPOS\Fannie\API\lib\Store::getIdByIp();
      Severity: Major
      Found in fannie/modules/plugins2.0/DeliInventory/DICostUpdatePage.php - About 3 hrs to fix

        Method listFromBatches has 94 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function listFromBatches($dbc)
            {
                if (!is_array($this->source_id)) {
                    $this->source_id = array($this->source_id);
                }
        Severity: Major
        Found in fannie/classlib2.0/item/FannieSignage.php - About 3 hrs to fix

          Method SetPropertySettingsFromAttributes has 94 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  private void SetPropertySettingsFromAttributes(JsonProperty property, object attributeProvider, string name, Type declaringType, MemberSerialization memberSerialization, out bool allowNonPublicAccess)
                  {
          #if !NET20
                      DataContractAttribute dataContractAttribute = JsonTypeReflector.GetDataContractAttribute(declaringType);
          
          

            File JsonTypeReflector.cs has 323 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            using System;
            using System.Collections.Generic;
            using System.ComponentModel;
            using System.Globalization;
            using System.Reflection;

              File NativeMethods.cs has 323 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              using System;
              using System.ComponentModel;
              using System.IO;
              using System.Reflection;
              using System.Runtime.InteropServices;

                Function receiptDetail has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                static public function receiptDetail($reprint=false, $transNum='') 
                { 
                    // put into its own function to make it easier to follow, and slightly 
                    // modified for wider-spread use of joe's "new" receipt format --- apbw 7/3/2007
                    if (CoreLocal::get("newReceipt") == 2) {
                Severity: Minor
                Found in pos/is4c-nf/lib/ReceiptLib.php - About 3 hrs 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

                Function addItem has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function addItem(array $row, $quantity, $priceObj)
                    {
                        if ($quantity == 0) return false;
                
                        $pricing = $priceObj->priceInfo($row,$quantity);
                Severity: Minor
                Found in pos/is4c-nf/lib/Scanning/PriceMethods/SplitABGroupPM.php - About 3 hrs 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

                Function fetch_report_data has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    function fetch_report_data(){
                        global $FANNIE_OP_DB, $FANNIE_COOP_ID,
                             $FANNIE_TRANS_DB, $FANNIE_URL;
                
                        try {
                Severity: Minor
                Found in fannie/reports/PatronageOverDates/PatronageOverDatesReport.php - About 3 hrs 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

                Function run has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function run()
                    {
                        global $FANNIE_OP_DB;
                        $dbc = FannieDB::get($FANNIE_OP_DB);
                
                
                Severity: Minor
                Found in fannie/modules/plugins2.0/WfcGazetteBilling/WfcB2BTask.php - About 3 hrs 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

                Function process_file has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function process_file($linedata, $indexes)
                    {
                        global $FANNIE_OP_DB;
                        $PHONE = $this->get_column_index('phone');
                        $CONTACT = $this->get_column_index('name');
                Severity: Minor
                Found in fannie/modules/plugins2.0/WfcGazetteBilling/WfcGazetteBillingPage.php - About 3 hrs 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

                Function addUPC has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    private function addUPC($orderID, $memNum, $upc, $num_cases=1)
                    {
                        $dbc = $this->connection;
                        $dbc->selectDB($this->config->get('OP_DB'));
                        $TRANS = $this->config->get('TRANS_DB') . $dbc->sep();
                Severity: Minor
                Found in fannie/ordering/OrderViewPage.php - About 3 hrs 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

                Function get_view has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    function get_view()
                    {
                        global $FANNIE_OP_DB, $FANNIE_TRANS_DB;
                
                        /**
                Severity: Minor
                Found in fannie/item/BadScanTool.php - About 3 hrs 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

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                        if (s.Substring(0,2) == "S0") { // scanner message
                            if (s.Substring(0,4) == "S08A" || s.Substring(0,4) == "S08F") { // UPC-A or EAN-13
                                return s.Substring(4);
                            } else if (s.Substring(0,4) == "S08E") { // UPC-E
                                return this.ExpandUPCE(s.Substring(4));
                pos/is4c-nf/scale-drivers/drivers/NewMagellan/SPH_Magellan_Scale.cs on lines 195..211
                pos/is4c-nf/scale-drivers/drivers/NewMagellan/SPH_NCR_Scale.cs on lines 162..178

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 255.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                        if (s.Substring(0,2) == "S0") { // scanner message
                            if (s.Substring(0,4) == "S08A" || s.Substring(0,4) == "S08F") { // UPC-A or EAN-13
                                return s.Substring(4);
                            } else if (s.Substring(0,4) == "S08E") { // UPC-E
                                return this.ExpandUPCE(s.Substring(4));
                pos/is4c-nf/scale-drivers/drivers/NewMagellan/SPH_Magellan_ScanOnly.cs on lines 112..128
                pos/is4c-nf/scale-drivers/drivers/NewMagellan/SPH_NCR_Scale.cs on lines 162..178

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 255.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                        if (s.Substring(0,1) == "0") { // scanner message
                            if (s.Substring(0,3) == "08A" || s.Substring(0,3) == "08F") { // UPC-A or EAN-13
                                return s.Substring(3);
                            } else if (s.Substring(0,3) == "08E") { // UPC-E
                                return this.ExpandUPCE(s.Substring(3));
                pos/is4c-nf/scale-drivers/drivers/NewMagellan/SPH_Magellan_Scale.cs on lines 195..211
                pos/is4c-nf/scale-drivers/drivers/NewMagellan/SPH_Magellan_ScanOnly.cs on lines 112..128

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 255.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 3 locations. Consider refactoring.
                Open

                function saveOpenSafeCount(){
                    var ret = '';
                    $('.denom').each(function(){
                        var denom = $(this).val();
                        var elem = document.getElementById('safeCount1'+denom);
                Severity: Major
                Found in fannie/modules/plugins2.0/OverShortTools/js/countV3.js and 2 other locations - About 3 hrs to fix
                fannie/modules/plugins2.0/OverShortTools/js/count.js on lines 85..94
                fannie/modules/plugins2.0/OverShortTools/js/countV2.js on lines 96..105

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 110.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 3 locations. Consider refactoring.
                Open

                function saveOpenSafeCount(){
                    var ret = '';
                    $('.denom').each(function(){
                        var denom = $(this).val();
                        var elem = document.getElementById('safeCount1'+denom);
                Severity: Major
                Found in fannie/modules/plugins2.0/OverShortTools/js/countV2.js and 2 other locations - About 3 hrs to fix
                fannie/modules/plugins2.0/OverShortTools/js/count.js on lines 85..94
                fannie/modules/plugins2.0/OverShortTools/js/countV3.js on lines 99..108

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 110.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 3 locations. Consider refactoring.
                Open

                function saveOpenSafeCount(){
                    var ret = '';
                    $('.denom').each(function(){
                        var denom = $(this).val();
                        var elem = document.getElementById('safeCount1'+denom);
                Severity: Major
                Found in fannie/modules/plugins2.0/OverShortTools/js/count.js and 2 other locations - About 3 hrs to fix
                fannie/modules/plugins2.0/OverShortTools/js/countV2.js on lines 96..105
                fannie/modules/plugins2.0/OverShortTools/js/countV3.js on lines 99..108

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 110.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Severity
                Category
                Status
                Source
                Language