CORE-POS/IS4C

View on GitHub

Showing 8,683 of 8,684 total issues

Method post_id_handler has 266 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function post_id_handler()
    {
        global $FANNIE_OP_DB, $FANNIE_TRANS_DB, $FANNIE_ARCHIVE_DB;
        $dbc = FannieDB::get($FANNIE_OP_DB);

Severity: Major
Found in fannie/modules/plugins2.0/StatementsPlugin/StatementsPluginEmail.php - About 1 day to fix

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

        public function fetch_report_data()
        {
            try {
                $month = $this->form->month;
                $year = $this->form->year;
    Severity: Major
    Found in fannie/modules/plugins2.0/CoreWarehouse/reports/EOMReport.php - About 1 day to fix

      Function baseItem has 265 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      var baseItem = (function() {
          var mod = {};
      
          mod.chainSubs = function(store_id) {
              chainSubDepartments(
      Severity: Major
      Found in fannie/item/modules/baseItem.js - About 1 day to fix

        Function variable_slip has a Cognitive Complexity of 67 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function variable_slip($ref, $reprint=False, $sigSlip=False)
            {
                $date = ReceiptLib::build_time(time());
                list($emp, $reg, $trans) = ReceiptLib::parseRef($ref);
        
        
        Severity: Minor
        Found in pos/is4c-nf/lib/ReceiptBuilding/Messages/CCReceiptMessage.php - About 1 day 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

        Method WriteEscapedJavaScriptString has a Cognitive Complexity of 82 (exceeds 20 allowed). Consider refactoring.
        Open

                public static void WriteEscapedJavaScriptString(TextWriter writer, string s, char delimiter, bool appendDelimiters,
                    bool[] charEscapeFlags, StringEscapeHandling stringEscapeHandling, ref char[] writeBuffer)
                {
                    // leading delimiter
                    if (appendDelimiters)

        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

        Method get has 264 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        static public function get($session){
            global $CORE_LOCAL;
        
            /* First, check for anything still in
             * . localtemptrans

          Method javascript_content has 264 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function javascript_content()
              {
                  global $FANNIE_OP_DB;
                  $dbc = FannieDB::get($FANNIE_OP_DB);
                  $storeID = FormLib::get('id');
          Severity: Major
          Found in fannie/item/mapping/NewStoreFloorsPage.php - About 1 day to fix

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

                mod.initAutoCompletes = function() {
                    $('input#newItem').autocomplete({
                        source: vendorAutoComplete,
                        select: function (ev, ui) {
                            ev.preventDefault();
            Severity: Major
            Found in fannie/modules/plugins2.0/RP/rpDual.js and 1 other location - About 1 day to fix
            fannie/modules/plugins2.0/RP/rpOrder.js on lines 21..42

            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 246.

            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 2 locations. Consider refactoring.
            Open

                mod.initAutoCompletes = function() {
                    $('input#newItem').autocomplete({
                        source: vendorAutoComplete,
                        select: function (ev, ui) {
                            ev.preventDefault();
            Severity: Major
            Found in fannie/modules/plugins2.0/RP/rpOrder.js and 1 other location - About 1 day to fix
            fannie/modules/plugins2.0/RP/rpDual.js on lines 23..44

            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 246.

            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

            File FannieUploadPage.php has 606 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            <?php
            /*******************************************************************************
            
                Copyright 2013 Whole Foods Co-op
            
            
            Severity: Major
            Found in fannie/classlib2.0/FannieUploadPage.php - About 1 day to fix

              Function di has 262 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              var di = (function ($) {
                  var mod = {};
              
                  var openInput = false;
                  var openVendor = false;
              Severity: Major
              Found in fannie/modules/plugins2.0/DeliInventory/di.js - About 1 day to fix

                Method get_id_view has 261 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    protected function get_id_view()
                    {
                        global $FANNIE_OP_DB, $FANNIE_URL;
                        $dbc = FannieDB::get($FANNIE_OP_DB);
                        $limitedEdit = $this->auth_mode == 'Full' ? False : True;
                Severity: Major
                Found in fannie/modules/plugins2.0/PIKiller/PIMemberPage.php - About 1 day to fix

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

                      protected function post_id_handler()
                      {
                          $dbc = FannieDB::get($this->config->get('OP_DB'));
                          $upc = FormLib::get('upc', '');
                          $sku = FormLib::get('sku', '');
                  Severity: Major
                  Found in fannie/item/vendors/DeliVendorAliasPage.php and 1 other location - About 1 day to fix
                  fannie/item/vendors/VendorAliasesPage.php on lines 132..166

                  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 295.

                  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 2 locations. Consider refactoring.
                  Open

                      protected function post_id_handler()
                      {
                          $dbc = FannieDB::get($this->config->get('OP_DB'));
                          $upc = FormLib::get('upc', '');
                          $sku = FormLib::get('sku', '');
                  Severity: Major
                  Found in fannie/item/vendors/VendorAliasesPage.php and 1 other location - About 1 day to fix
                  fannie/item/vendors/DeliVendorAliasPage.php on lines 342..376

                  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 295.

                  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 2 locations. Consider refactoring.
                  Open

                      private function weekToYM($weekID)
                      {
                          $prep = $this->connection->prepare('SELECT startDate
                              FROM ' . FannieDB::fqn('ObfWeeks', 'plugin:ObfDatabaseV2') . '
                              WHERE obfWeekID=?');
                  fannie/modules/plugins2.0/OpenBookFinancingV2/ObfWeeklyReportV2.php on lines 242..264

                  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 294.

                  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 2 locations. Consider refactoring.
                  Open

                      private function weekToYM($weekID)
                      {
                          $prep = $this->connection->prepare('SELECT startDate
                              FROM ' . FannieDB::fqn('ObfWeeks', 'plugin:ObfDatabaseV2') . '
                              WHERE obfWeekID=?');
                  fannie/modules/plugins2.0/OpenBookFinancingV2/ObfBigBoardReport.php on lines 143..165

                  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 294.

                  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

                  ESCPOSPrintHandler has 70 functions (exceeds 20 allowed). Consider refactoring.
                  Open

                  class ESCPOSPrintHandler extends PrintHandler {
                      
                      function tab() {
                          // "\t"
                          return "\x09";
                  Severity: Major
                  Found in pos/is4c-nf/lib/PrintHandlers/ESCPOSPrintHandler.php - About 1 day to fix

                    File ManageComments.php has 597 lines of code (exceeds 250 allowed). Consider refactoring.
                    Open

                    <?php
                    
                    use COREPOS\Fannie\API\data\pipes\OutgoingEmail;
                    
                    include(__DIR__ . '/../../../config.php');
                    Severity: Major
                    Found in fannie/modules/plugins2.0/CommentTracker/ManageComments.php - About 1 day to fix

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

                      function docurl($xml){
                          $curl_handle = curl_init("https://secure.goemerchant.com/secure/gateway/xmlgateway.aspx");
                      
                          curl_setopt($curl_handle, CURLOPT_HEADER, 0);
                          curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
                      Severity: Major
                      Found in fannie/reports/Store-Specific/WFC/CCSettle/fetchLib.php and 1 other location - About 1 day to fix
                      fannie/src/fetchLib.php on lines 79..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 293.

                      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 2 locations. Consider refactoring.
                      Open

                      function docurl($xml){
                          $curl_handle = curl_init("https://secure.goemerchant.com/secure/gateway/xmlgateway.aspx");
                      
                          curl_setopt($curl_handle, CURLOPT_HEADER, 0);
                          curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
                      Severity: Major
                      Found in fannie/src/fetchLib.php and 1 other location - About 1 day to fix
                      fannie/reports/Store-Specific/WFC/CCSettle/fetchLib.php on lines 127..153

                      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 293.

                      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