Trust-Code/odoo-brasil

View on GitHub
br_nfse/models/nfse_ginfes.py

Summary

Maintainability
F
4 days
Test Coverage

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 _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

      Function _prepare_eletronic_invoice_values has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def _prepare_eletronic_invoice_values(self):
              res = super(InvoiceEletronic, self)._prepare_eletronic_invoice_values()
              if self.model == '002':
                  tz = pytz.timezone(self.env.user.partner_id.tz) or pytz.utc
                  dt_emissao = datetime.strptime(self.data_emissao, DTFT)
      Severity: Minor
      Found in br_nfse/models/nfse_ginfes.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

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

          @api.multi
          def action_post_validate(self):
              super(InvoiceEletronic, self).action_post_validate()
              if self.model not in ('002'):
                  return
      Severity: Major
      Found in br_nfse/models/nfse_ginfes.py and 1 other location - About 1 day to fix
      br_nfse/models/nfse_simpliss.py on lines 167..184

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

      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

              if "Cancelamento" in dir(retorno):
                  self.state = 'cancel'
                  self.codigo_retorno = '100'
                  self.mensagem_retorno = u'Nota Fiscal de Serviço Cancelada'
              else:
      Severity: Major
      Found in br_nfse/models/nfse_ginfes.py and 1 other location - About 6 hrs to fix
      br_nfse/models/nfse_simpliss.py on lines 247..262

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

      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

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

              canc = {
                  'cnpj_prestador': re.sub('[^0-9]', '', company.cnpj_cpf),
                  'inscricao_municipal': re.sub('[^0-9]', '', company.inscr_mun),
                  'cidade': '%s%s' % (city_prestador.state_id.ibge_code,
                                      city_prestador.ibge_code),
      Severity: Major
      Found in br_nfse/models/nfse_ginfes.py and 1 other location - About 2 hrs to fix
      br_nfse/models/nfse_simpliss.py on lines 235..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 60.

      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

                  total = item.valor_retencao_pis + item.valor_retencao_cofins + \
                      item.valor_retencao_irrf + item.valor_retencao_inss + \
                      item.valor_retencao_csll
      Severity: Minor
      Found in br_nfse/models/nfse_ginfes.py and 1 other location - About 45 mins to fix
      br_purchase_stock/models/purchase.py on lines 18..20

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

      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

      There are no issues that match your filters.

      Category
      Status