@@ -18,9 +18,7 @@ module Budgets
|
||||
load_investment
|
||||
load_heading
|
||||
|
||||
unless @ballot.add_investment(@investment)
|
||||
head :bad_request
|
||||
end
|
||||
@ballot.add_investment(@investment)
|
||||
end
|
||||
|
||||
def destroy
|
||||
@@ -29,7 +27,6 @@ module Budgets
|
||||
|
||||
@line.destroy
|
||||
load_investments
|
||||
#@ballot.reset_geozone
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
@@ -9,7 +9,7 @@ class Budget
|
||||
has_many :headings, -> { uniq }, through: :groups
|
||||
|
||||
def add_investment(investment)
|
||||
lines.create!(investment: investment)
|
||||
lines.create(investment: investment).persisted?
|
||||
end
|
||||
|
||||
def total_amount_spent
|
||||
|
||||
Reference in New Issue
Block a user