Adds comment to the final part of spending_proposals_importer

This commit is contained in:
kikito
2016-09-07 18:08:33 +02:00
parent b4c7675c31
commit 857a4ba42b

View File

@@ -1,9 +1,6 @@
class SpendingProposalsImporter
def import(sp)
# votes
# comments
budget = Budget.last || Budget.create!(name: Date.today.year.to_s, currency_symbol: "")
group = nil
@@ -55,6 +52,16 @@ class SpendingProposalsImporter
votes.each {|v| investment.vote_by({voter: v.voter, vote: 'yes'}) }
# Spending proposals are not commentable in Consul so we can not test this
#
# Comment.where(commentable_type: 'SpendingProposal', commentable_id: sp.id).update_all(
# commentable_type: 'Budget::Investment', commentable_id: investment.id
# )
# Budget::Investment.reset_counters(investment.id, :comments)
# Spending proposals have ballot_lines in Madrid, but not in consul, so we
# can not test this either
investment
end