OCA/openupgradelib

View on GitHub

Showing 163 of 163 total issues

Function performObjectSearch has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

  performObjectSearch: (object, objectTerms) => {
    const filenames = Search._index.filenames;
    const docNames = Search._index.docnames;
    const objects = Search._index.objects;
    const objNames = Search._index.objnames;
Severity: Minor
Found in docs/_static/searchtools.js - About 2 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 _adjust_merged_values_sql has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

def _adjust_merged_values_sql(
    env, model_name, record_ids, target_record_id, model_table, field_spec
):
    """This method deals with the values on the records to be merged +
    the target record, performing operations that make sense on the meaning
Severity: Minor
Found in openupgradelib/openupgrade_merge_records.py - About 2 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 convert_field_to_html has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

def convert_field_to_html(
    cr, table, field_name, html_field_name, verbose=True, translate=False
):
    """
    Convert field value to HTML value.
Severity: Minor
Found in openupgradelib/openupgrade.py - About 2 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 highlightText has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

jQuery.fn.highlightText = function(text, className) {
    function highlight(node, addItems) {
        if (node.nodeType === 3) {
            var val = node.nodeValue;
            var pos = val.toLowerCase().indexOf(text);
Severity: Minor
Found in docs/_static/_sphinx_javascript_frameworks_compat.js - About 2 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 m2o_to_x2m has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

def m2o_to_x2m(cr, model, table, field, source_field):
    """
    Transform many2one relations into one2many or many2many.
    For openupgrade < 14.0, use rename_columns in your pre-migrate script
    to retain the column's old value, then call m2o_to_x2m in your
Severity: Minor
Found in openupgradelib/openupgrade.py - About 2 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 performObjectSearch has 51 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  performObjectSearch: (object, objectTerms) => {
    const filenames = Search._index.filenames;
    const docNames = Search._index.docnames;
    const objects = Search._index.objects;
    const objNames = Search._index.objnames;
Severity: Major
Found in docs/_static/searchtools.js - About 2 hrs to fix

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

              case "ArrowLeft":
                if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
    
                const prevLink = document.querySelector('link[rel="prev"]');
                if (prevLink && prevLink.href) {
    Severity: Major
    Found in docs/_static/doctools.js and 1 other location - About 2 hrs to fix
    docs/_static/doctools.js on lines 123..131

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

    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

          } else {
            el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`;
            toggledRows.forEach((el) => (el.style.display = ""));
          }
    Severity: Major
    Found in docs/_static/doctools.js and 1 other location - About 2 hrs to fix
    docs/_static/doctools.js on lines 81..84

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

    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

          if (el.src.substr(-9) === "minus.png") {
            el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`;
            toggledRows.forEach((el) => (el.style.display = "none"));
          } else {
    Severity: Major
    Found in docs/_static/doctools.js and 1 other location - About 2 hrs to fix
    docs/_static/doctools.js on lines 84..87

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

    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

              case "ArrowRight":
                if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
    
                const nextLink = document.querySelector('link[rel="next"]');
                if (nextLink && nextLink.href) {
    Severity: Major
    Found in docs/_static/doctools.js and 1 other location - About 2 hrs to fix
    docs/_static/doctools.js on lines 114..122

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

    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

    Function highlightText has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    jQuery.fn.highlightText = function(text, className) {
        function highlight(node, addItems) {
            if (node.nodeType === 3) {
                var val = node.nodeValue;
                var pos = val.toLowerCase().indexOf(text);
    Severity: Minor
    Found in docs/_static/_sphinx_javascript_frameworks_compat.js - About 1 hr to fix

      Function _highlight has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

      const _highlight = (node, addItems, text, className) => {
        if (node.nodeType === Node.TEXT_NODE) {
          const val = node.nodeValue;
          const parent = node.parentNode;
          const pos = val.toLowerCase().indexOf(text);
      Severity: Minor
      Found in docs/_static/sphinx_highlight.js - About 1 hr 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 merge_models has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

      def merge_models(cr, old_model, new_model, ref_field):
          """
          Update model references for models that have merged to an existing model.
          :param old_model: old model
          :param new_model: destination model
      Severity: Minor
      Found in openupgradelib/openupgrade.py - About 1 hr 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 map_values has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

      def map_values(
          cr, source_column, target_column, mapping, model=None, table=None, write="sql"
      ):
          """
          Map old values to new values within the same model or table. Old values
      Severity: Minor
      Found in openupgradelib/openupgrade.py - About 1 hr 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 _highlight has 46 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const _highlight = (node, addItems, text, className) => {
        if (node.nodeType === Node.TEXT_NODE) {
          const val = node.nodeValue;
          const parent = node.parentNode;
          const pos = val.toLowerCase().indexOf(text);
      Severity: Minor
      Found in docs/_static/sphinx_highlight.js - About 1 hr to fix

        Function migrate_translations_to_jsonb has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

        def migrate_translations_to_jsonb(env, fields_spec):
            """
            In Odoo 16, translated fields no longer use the model ir.translation.
            Instead they store all their values into jsonb columns
            in the model's table.
        Severity: Minor
        Found in openupgradelib/openupgrade_160.py - About 1 hr 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 delete_records_safely_by_xml_id has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

        def delete_records_safely_by_xml_id(env, xml_ids, delete_childs=False):
            """This removes in the safest possible way the records whose XML-IDs are
            passed as argument.
        
            If not possible to be removed, and the record is an updatable one
        Severity: Minor
        Found in openupgradelib/openupgrade.py - About 1 hr 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

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

                if (
                    not model._auto
                    or not model._fields.get(field_name)
                    or not field.store
                    or (model._table, field_name) in exclude_columns
        Severity: Major
        Found in openupgradelib/openupgrade_merge_records.py and 2 other locations - About 1 hr to fix
        openupgradelib/openupgrade_merge_records.py on lines 145..149
        openupgradelib/openupgrade_merge_records.py on lines 178..182

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

        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

                if (
                    not model._auto
                    or not model._fields.get(field_name)
                    or not field.store
                    or (model._table, field_name) in exclude_columns
        Severity: Major
        Found in openupgradelib/openupgrade_merge_records.py and 2 other locations - About 1 hr to fix
        openupgradelib/openupgrade_merge_records.py on lines 145..149
        openupgradelib/openupgrade_merge_records.py on lines 263..267

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

        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

                if (
                    not model._auto
                    or not model._fields.get(field_name)
                    or not field.store
                    or (model._table, field_name) in exclude_columns
        Severity: Major
        Found in openupgradelib/openupgrade_merge_records.py and 2 other locations - About 1 hr to fix
        openupgradelib/openupgrade_merge_records.py on lines 178..182
        openupgradelib/openupgrade_merge_records.py on lines 263..267

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

        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