Sha256: 908a985d43a88d97681d9b44b02faf67501a773f847bf8c5c44fd87278daa4c2

Contents?: true

Size: 890 Bytes

Versions: 6

Compression:

Stored size: 890 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Budgets
    # A command with all the business to add remove line items from orders
    class RemoveLineItem < Rectify::Command
      # Public: Initializes the command.
      #
      # order - The current order for the user
      # project - The the project to remove from the order
      def initialize(order, project)
        @order = order
        @project = project
      end

      # Executes the command. Broadcasts these events:
      #
      # - :ok when everything is valid.
      # - :invalid if the there is an error.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) if @order.checked_out?

        remove_line_item
        broadcast(:ok, @order)
      end

      private

      def remove_line_item
        @order.projects.destroy(@project)
        @order.save!
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-budgets-0.22.0 app/commands/decidim/budgets/remove_line_item.rb
decidim-budgets-0.21.0 app/commands/decidim/budgets/remove_line_item.rb
decidim-budgets-0.20.1 app/commands/decidim/budgets/remove_line_item.rb
decidim-budgets-0.20.0 app/commands/decidim/budgets/remove_line_item.rb
decidim-budgets-0.19.1 app/commands/decidim/budgets/remove_line_item.rb
decidim-budgets-0.19.0 app/commands/decidim/budgets/remove_line_item.rb