foodcoops/foodsoft

View on GitHub
app/models/order_article.rb

Summary

Maintainability
C
7 hrs
Test Coverage

Class OrderArticle has 22 methods (exceeds 20 allowed). Consider refactoring.
Open

class OrderArticle < ApplicationRecord
  include FindEachWithOrder

  attr_reader :update_global_price

Severity: Minor
Found in app/models/order_article.rb - About 2 hrs to fix

    Method ordered_quantities_different_from_group_orders? has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

      def ordered_quantities_different_from_group_orders?(ordered_mark = '!', billed_mark = '?', received_mark = '?')
        if !units_received.nil?
          (units_received * price.unit_quantity) == group_orders_sum[:quantity] ? false : received_mark
        elsif !units_billed.nil?
          (units_billed * price.unit_quantity) == group_orders_sum[:quantity] ? false : billed_mark
    Severity: Minor
    Found in app/models/order_article.rb - 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

    Method update_article_and_price! has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

      def update_article_and_price!(order_article_attributes, article_attributes, price_attributes = nil)
        OrderArticle.transaction do
          # Updates self
          update!(order_article_attributes)
    
    
    Severity: Minor
    Found in app/models/order_article.rb - 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

    Consider simplifying this complex logical expression.
    Open

        unless (delta_q == 0 && delta_t >= 0) ||
               (delta_mis < 0 && delta_box >= 0 && delta_t >= 0) ||
               (delta_q > 0 && delta_q == -delta_t)
          raise ActiveRecord::RecordNotSaved.new("Change not acceptable in boxfill phase for '#{article.name}', sorry.",
                                                 self)
    Severity: Major
    Found in app/models/order_article.rb - About 1 hr to fix

      Method enforce_boxfill has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        def enforce_boxfill
          # Either nothing changes, or the tolerance increases,
          # missing_units decreases and the amount doesn't decrease, or
          # tolerance was moved to quantity. Only then are changes allowed in the boxfill phase.
          delta_q = quantity - quantity_was
      Severity: Minor
      Found in app/models/order_article.rb - About 35 mins 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 redistribute has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        def redistribute(quantity, surplus = [:tolerance], update_totals = true)
          qty_left = quantity
          counts = [0] * surplus.length
      
          if surplus.index(:tolerance).nil?
      Severity: Minor
      Found in app/models/order_article.rb - About 25 mins 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

      There are no issues that match your filters.

      Category
      Status