Trust-Code/odoo-brasil

View on GitHub

Showing 421 of 421 total issues

Consider simplifying this complex logical expression.
Open

        if self.model == '008':
            tz = pytz.timezone(self.env.user.partner_id.tz) or pytz.utc
            dt_emissao = datetime.strptime(self.data_emissao, DTFT)
            dt_emissao = pytz.utc.localize(dt_emissao).astimezone(tz)
            dt_emissao = dt_emissao.strftime('%Y-%m-%dT%H:%M:%S')
Severity: Critical
Found in br_nfse/models/nfse_simpliss.py - About 4 hrs to fix

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

            if not self.company_id.partner_id.country_id:
                errors.append(u'Emitente / Endereço - país')
            else:
                if not self.company_id.partner_id.country_id.name:
                    errors.append(u'Emitente / Endereço - Nome do país')
    Severity: Major
    Found in br_account_einvoice/models/invoice_eletronic.py and 2 other locations - About 4 hrs to fix
    br_account_einvoice/models/invoice_eletronic.py on lines 232..238
    br_account_einvoice/models/invoice_eletronic.py on lines 240..246

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

    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 not self.company_id.partner_id.city_id:
                errors.append(u'Emitente / Endereço - município')
            else:
                if not self.company_id.partner_id.city_id.name:
                    errors.append(u'Emitente / Endereço - Nome do município')
    Severity: Major
    Found in br_account_einvoice/models/invoice_eletronic.py and 2 other locations - About 4 hrs to fix
    br_account_einvoice/models/invoice_eletronic.py on lines 232..238
    br_account_einvoice/models/invoice_eletronic.py on lines 248..254

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

    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 not self.company_id.partner_id.state_id:
                errors.append(u'Emitente / Endereço - Estado')
            else:
                if not self.company_id.partner_id.state_id.ibge_code:
                    errors.append(u'Emitente / Endereço - Cód. do IBGE do estado')
    Severity: Major
    Found in br_account_einvoice/models/invoice_eletronic.py and 2 other locations - About 4 hrs to fix
    br_account_einvoice/models/invoice_eletronic.py on lines 240..246
    br_account_einvoice/models/invoice_eletronic.py on lines 248..254

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

    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 _prepare_invoice_line_from_po_line has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

        def _prepare_invoice_line_from_po_line(self, line):
            res = super(AccountInvoice, self)._prepare_invoice_line_from_po_line(
                line)
    
            res['valor_bruto'] = line.valor_bruto
    Severity: Minor
    Found in br_purchase/models/account_invoice.py - 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

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

                for item in self.eletronic_item_ids:
                    descricao += item.name + '\n'
                    itens_servico.append({
                        'descricao': item.name,
                        'quantidade': str("%.2f" % item.quantidade),
    Severity: Major
    Found in br_nfse/models/nfse_simpliss.py and 1 other location - About 3 hrs to fix
    br_nfse/models/nfse_ginfes.py on lines 124..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 73.

    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

                for item in self.eletronic_item_ids:
                    descricao += item.name + '\n'
                    itens_servico.append({
                        'descricao': item.name,
                        'quantidade': str("%.2f" % item.quantidade),
    Severity: Major
    Found in br_nfse/models/nfse_ginfes.py and 1 other location - About 3 hrs to fix
    br_nfse/models/nfse_simpliss.py on lines 112..119

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

    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 tmpDanfe:
                danfe_id = attachment_obj.create(dict(
                    name="Danfe-%08d.pdf" % self.numero,
                    datas_fname="Danfe-%08d.pdf" % self.numero,
                    datas=base64.b64encode(tmpDanfe),
    Severity: Major
    Found in br_nfse/models/nfse_susesu.py and 1 other location - About 3 hrs to fix
    br_nfse/models/invoice_eletronic.py on lines 233..242

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

    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 danfse:
                danfe_id = attachment_obj.create(dict(
                    name="paulistana-%08d.pdf" % self.numero,
                    datas_fname="paulistana-%08d.pdf" % self.numero,
                    datas=base64.b64encode(danfse),
    Severity: Major
    Found in br_nfse/models/invoice_eletronic.py and 1 other location - About 3 hrs to fix
    br_nfse/models/nfse_susesu.py on lines 169..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 73.

    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

        def _create_attachment(self, prefix, event, data):
            file_name = '%s-%s.xml' % (
                prefix, datetime.now().strftime('%Y-%m-%d-%H-%M'))
            self.env['ir.attachment'].create(
                {
    Severity: Major
    Found in br_account_einvoice/models/invoice_eletronic.py and 1 other location - About 3 hrs to fix
    br_nfe/models/inutilized_nfe.py on lines 149..159

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

    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

        def _create_attachment(self, prefix, event, data):
            file_name = '%s-%s.xml' % (
                prefix, datetime.now().strftime('%Y-%m-%d-%H-%M'))
            self.env['ir.attachment'].create(
                {
    Severity: Major
    Found in br_nfe/models/inutilized_nfe.py and 1 other location - About 3 hrs to fix
    br_account_einvoice/models/invoice_eletronic.py on lines 189..199

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

    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 fiscal.py has 323 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    # -*- coding: utf-8 -*-
    # © 2013  Renato Lima - Akretion
    # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
    
    import re
    Severity: Minor
    Found in br_base/tools/fiscal.py - About 3 hrs to fix

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

          def _prepare_invoice_line(self, qty):
              res = super(SaleOrderLine, self)._prepare_invoice_line(qty)
      
              res['valor_desconto'] = self.valor_desconto
              res['valor_bruto'] = self.valor_bruto
      Severity: Minor
      Found in br_sale/models/sale.py - 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

      Consider simplifying this complex logical expression.
      Open

              if self.model == '002':
                  tz = pytz.timezone(self.env.user.partner_id.tz) or pytz.utc
                  dt_emissao = datetime.strptime(self.data_emissao, DTFT)
                  dt_emissao = pytz.utc.localize(dt_emissao).astimezone(tz)
                  dt_emissao = dt_emissao.strftime('%Y-%m-%dT%H:%M:%S')
      Severity: Critical
      Found in br_nfse/models/nfse_ginfes.py - About 3 hrs to fix

        Function _compute_price has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
        Open

            def _compute_price(self):
                currency = self.invoice_id and self.invoice_id.currency_id or None
                price = self.price_unit * (1 - (self.discount or 0.0) / 100.0)
        
                valor_bruto = self.price_unit * self.quantity
        Severity: Minor
        Found in br_account/models/account_invoice_line.py - 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 _hook_validation has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
        Open

            def _hook_validation(self):
                errors = super(InvoiceEletronic, self)._hook_validation()
                if self.model == '002':
                    issqn_codigo = ''
                    if not self.company_id.inscr_mun:
        Severity: Minor
        Found in br_nfse/models/nfse_ginfes.py - 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 action_send_eletronic_invoice has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
        Open

            def action_send_eletronic_invoice(self):
                super(InvoiceEletronic, self).action_send_eletronic_invoice()
                if self.model == '002' and self.state not in ('done', 'cancel'):
                    self.state = 'error'
        
        
        Severity: Minor
        Found in br_nfse/models/nfse_ginfes.py - 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

        File nfse_ginfes.py has 314 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        # -*- coding: utf-8 -*-
        # © 2016 Danimar Ribeiro <danimaribeiro@gmail.com>, Trustcode
        # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
        
        import re
        Severity: Minor
        Found in br_nfse/models/nfse_ginfes.py - About 3 hrs to fix

          File wizard_import_cnab.py has 310 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          # -*- coding: utf-8 -*-
          # © 2017 Danimar Ribeiro, Trustcode
          # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
          
          import base64
          Severity: Minor
          Found in br_cnab/wizard/wizard_import_cnab.py - About 3 hrs to fix

            File pos_order.py has 307 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            # -*- coding: utf-8 -*-
            # © 2016 Alessandro Fernandes Martini <alessandrofmartini@gmail.com>, Trustcode
            # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
            
            from datetime import datetime
            Severity: Minor
            Found in br_point_sale/models/pos_order.py - About 3 hrs to fix
              Severity
              Category
              Status
              Source
              Language