Merge pull request #1885 from consul/chore/remove_final_recounts
Remove Poll Final Recounts, replace with Total Results
This commit is contained in:
@@ -283,7 +283,6 @@ Lint/ParenthesesAsGroupedExpression:
|
||||
# Cop supports --auto-correct.
|
||||
Lint/StringConversionInInterpolation:
|
||||
Exclude:
|
||||
- 'app/models/poll/final_recount.rb'
|
||||
- 'app/models/poll/null_result.rb'
|
||||
- 'app/models/poll/partial_result.rb'
|
||||
- 'app/models/poll/white_result.rb'
|
||||
|
||||
@@ -15,7 +15,7 @@ class Admin::Poll::BoothAssignmentsController < Admin::Poll::BaseController
|
||||
end
|
||||
|
||||
def show
|
||||
@booth_assignment = @poll.booth_assignments.includes(:final_recounts, :voters,
|
||||
@booth_assignment = @poll.booth_assignments.includes(:total_results, :voters,
|
||||
officer_assignments: [officer: [:user]]).find(params[:id])
|
||||
@voters_by_date = @booth_assignment.voters.group_by {|v| v.created_at.to_date}
|
||||
end
|
||||
|
||||
@@ -18,7 +18,7 @@ class Admin::Poll::OfficerAssignmentsController < Admin::Poll::BaseController
|
||||
@officer = ::Poll::Officer.includes(:user).find(officer_assignment_params[:officer_id])
|
||||
@officer_assignments = ::Poll::OfficerAssignment.
|
||||
joins(:booth_assignment).
|
||||
includes(:final_recounts, booth_assignment: :booth).
|
||||
includes(:total_results, booth_assignment: :booth).
|
||||
where("officer_id = ? AND poll_booth_assignments.poll_id = ?", @officer.id, @poll.id).
|
||||
order(:date)
|
||||
end
|
||||
|
||||
@@ -3,7 +3,7 @@ class Admin::Poll::RecountsController < Admin::Poll::BaseController
|
||||
|
||||
def index
|
||||
@booth_assignments = @poll.booth_assignments.
|
||||
includes(:booth, :final_recounts, :voters).
|
||||
includes(:booth, :total_results, :voters).
|
||||
order("poll_booths.name").
|
||||
page(params[:page]).per(50)
|
||||
end
|
||||
|
||||
@@ -1,13 +1,5 @@
|
||||
module OfficingHelper
|
||||
|
||||
def officer_assignments_select_options(officer_assignments)
|
||||
options = []
|
||||
officer_assignments.each do |oa|
|
||||
options << ["#{oa.booth_assignment.booth.name}: #{l(oa.date.to_date, format: :long)}", oa.id]
|
||||
end
|
||||
options_for_select(options)
|
||||
end
|
||||
|
||||
def booths_for_officer_select_options(officer_assignments)
|
||||
options = []
|
||||
officer_assignments.each do |oa|
|
||||
@@ -17,10 +9,6 @@ module OfficingHelper
|
||||
options_for_select(options, params[:oa])
|
||||
end
|
||||
|
||||
def system_recount_to_compare_with_final_recount(final_recount)
|
||||
final_recount.booth_assignment.voters.select {|v| v.created_at.to_date == final_recount.date}.size
|
||||
end
|
||||
|
||||
def answer_result_value(question_id, answer_index)
|
||||
return nil if params.blank?
|
||||
return nil if params[:questions].blank?
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
module PollFinalRecountsHelper
|
||||
|
||||
def final_recount_for_date(final_recounts, date)
|
||||
final_recounts.select {|f| f.date == date}.first
|
||||
end
|
||||
|
||||
end
|
||||
@@ -1,7 +1,7 @@
|
||||
module PollRecountsHelper
|
||||
|
||||
def booth_assignment_sum_final_recounts(ba)
|
||||
ba.final_recounts.any? ? ba.final_recounts.to_a.sum(&:count) : nil
|
||||
def total_recounts_by_booth(booth_assignment)
|
||||
booth_assignment.total_results.any? ? booth_assignment.total_results.to_a.sum(&:amount) : nil
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -28,11 +28,6 @@ module PollsHelper
|
||||
options_for_select(options, params[:d])
|
||||
end
|
||||
|
||||
def poll_final_recount_option(poll)
|
||||
final_date = poll.ends_at.to_date + 1.day
|
||||
options_for_select([[I18n.t("polls.final_date"), l(final_date)]])
|
||||
end
|
||||
|
||||
def poll_booths_select_options(poll)
|
||||
options = []
|
||||
poll.booths.each do |booth|
|
||||
@@ -46,4 +41,4 @@ module PollsHelper
|
||||
booth.name + location
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,7 +4,6 @@ class Poll
|
||||
belongs_to :poll
|
||||
|
||||
has_many :officer_assignments, class_name: "Poll::OfficerAssignment", dependent: :destroy
|
||||
has_many :final_recounts, class_name: "Poll::FinalRecount", dependent: :destroy
|
||||
has_many :officers, through: :officer_assignments
|
||||
has_many :voters
|
||||
has_many :partial_results
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
class Poll
|
||||
class FinalRecount < ActiveRecord::Base
|
||||
belongs_to :booth_assignment, class_name: "Poll::BoothAssignment"
|
||||
belongs_to :officer_assignment, class_name: "Poll::OfficerAssignment"
|
||||
|
||||
validates :booth_assignment_id, presence: true
|
||||
validates :date, presence: true, uniqueness: {scope: :booth_assignment_id}
|
||||
validates :count, presence: true, numericality: {only_integer: true}
|
||||
|
||||
before_save :update_logs
|
||||
|
||||
def update_logs
|
||||
if count_changed? && count_was.present?
|
||||
self.count_log += ":#{count_was.to_s}"
|
||||
self.officer_assignment_id_log += ":#{officer_assignment_id_was.to_s}"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -2,8 +2,10 @@ class Poll
|
||||
class OfficerAssignment < ActiveRecord::Base
|
||||
belongs_to :officer
|
||||
belongs_to :booth_assignment
|
||||
has_many :final_recounts
|
||||
has_many :partial_results
|
||||
has_many :white_results
|
||||
has_many :null_results
|
||||
has_many :total_results
|
||||
has_many :voters
|
||||
|
||||
validates :officer_id, presence: true
|
||||
|
||||
@@ -49,18 +49,18 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th><%= t("admin.poll_booth_assignments.show.date") %></th>
|
||||
<th class="text-center"><%= t("admin.poll_booth_assignments.show.count_final") %></th>
|
||||
<th class="text-center"><%= t("admin.poll_booth_assignments.show.total_recount") %></th>
|
||||
<th class="text-center"><%= t("admin.poll_booth_assignments.show.count_by_system") %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% (@poll.starts_at.to_date..@poll.ends_at.to_date).each do |voting_date| %>
|
||||
<% final_recount = final_recount_for_date(@booth_assignment.final_recounts, voting_date) %>
|
||||
<% total_recount = @booth_assignment.total_results.where(date: voting_date).first %>
|
||||
<% system_count = @voters_by_date[voting_date].present? ? @voters_by_date[voting_date].size : 0 %>
|
||||
<tr id="recounting_<%= voting_date.strftime('%Y%m%d') %>">
|
||||
<td><%= l voting_date %></td>
|
||||
<% if final_recount.present? %>
|
||||
<td class="text-center <%= 'count-error' if final_recount.count != system_count %>" title="<%= final_recount.officer_assignment.officer.name %>"><%= final_recount.count %></td>
|
||||
<% if total_recount.present? %>
|
||||
<td class="text-center <%= 'count-error' if total_recount.amount != system_count %>" title="<%= total_recount.officer_assignment.officer.name %>"><%= total_recount.amount %></td>
|
||||
<% else %>
|
||||
<td class="text-center" title=""> - </td>
|
||||
<% end %>
|
||||
|
||||
@@ -27,27 +27,24 @@
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
<% end %>
|
||||
|
||||
<% final_officer_assignments = @officer_assignments.select{|oa| oa.final == true} %>
|
||||
<% if final_officer_assignments.any? %>
|
||||
<h3><%= t("admin.poll_officer_assignments.by_officer.final_recounts") %></h3>
|
||||
<table id="final_recount_list" class="fixed">
|
||||
<h3><%= t("admin.poll_officer_assignments.by_officer.total_recounts") %></h3>
|
||||
<table id="total_recount_list" class="fixed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><%= t("admin.poll_officer_assignments.by_officer.date") %></th>
|
||||
<th><%= t("admin.poll_officer_assignments.by_officer.booth") %></th>
|
||||
<th class="text-right"><%= t("admin.poll_officer_assignments.by_officer.final_recount") %></th>
|
||||
<th class="text-right"><%= t("admin.poll_officer_assignments.by_officer.total_recount") %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% final_officer_assignments.each do |officer_assignment| %>
|
||||
<tr id="final_recount_<%= officer_assignment.date.to_date.strftime('%Y%m%d') %>">
|
||||
<% @officer_assignments.each do |officer_assignment| %>
|
||||
<tr id="total_recount_<%= officer_assignment.date.to_date.strftime('%Y%m%d') %>">
|
||||
<td><%= l(officer_assignment.date.to_date) %></td>
|
||||
<td><%= booth_name_with_location(officer_assignment.booth_assignment.booth) %></td>
|
||||
<td class="text-right">
|
||||
<% if officer_assignment.final_recounts.any? %>
|
||||
<%= officer_assignment.final_recounts.to_a.sum(&:count) %>
|
||||
<% if officer_assignment.total_results.any? %>
|
||||
<%= officer_assignment.total_results.to_a.sum(&:amount) %>
|
||||
<% else %>
|
||||
<span>-</span>
|
||||
<% end %>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<table class="fixed margin">
|
||||
<thead>
|
||||
<th><%= t("admin.recounts.index.table_booth_name") %></th>
|
||||
<th class="text-center"><%= t("admin.recounts.index.table_final_recount") %></th>
|
||||
<th class="text-center"><%= t("admin.recounts.index.table_total_recount") %></th>
|
||||
<th class="text-center"><%= t("admin.recounts.index.table_system_count") %></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @booth_assignments.each do |booth_assignment| %>
|
||||
<% final_recount = booth_assignment_sum_final_recounts(booth_assignment) %>
|
||||
<% total_recounts = total_recounts_by_booth(booth_assignment) %>
|
||||
<% system_count = booth_assignment.voters.size %>
|
||||
<tr id="<%= dom_id(booth_assignment) %>_recounts" class="booth_recounts">
|
||||
<td>
|
||||
@@ -25,9 +25,9 @@
|
||||
<%= link_to booth_assignment.booth.name, admin_poll_booth_assignment_path(@poll, booth_assignment, anchor: 'tab-recounts') %>
|
||||
</strong>
|
||||
</td>
|
||||
<td class="text-center <%= 'count-error' if final_recount.to_i != system_count %>">
|
||||
<% if final_recount.present? %>
|
||||
<strong><%= final_recount %></strong>
|
||||
<td class="text-center <%= 'count-error' if total_recounts.to_i != system_count %>">
|
||||
<% if total_recounts.present? %>
|
||||
<strong><%= total_recounts %></strong>
|
||||
<% else %>
|
||||
<span>-</span>
|
||||
<% end %>
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
<% end %>
|
||||
</li>
|
||||
|
||||
<li <%= "class=active" if ["final_recounts", "results"].include?(controller_name) || (controller_name == "polls" && action_name == "final") %>>
|
||||
<li <%= "class=active" if ["results"].include?(controller_name) || (controller_name == "polls" && action_name == "final") %>>
|
||||
<%= link_to final_officing_polls_path do %>
|
||||
<span class="icon-user"></span>
|
||||
<%= t("officing.menu.final_recounts") %>
|
||||
<%= t("officing.menu.total_recounts") %>
|
||||
<% end %>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -494,8 +494,8 @@ en:
|
||||
booth: "Booth"
|
||||
assignments: "Officing shifts in this poll"
|
||||
no_assignments: "This user has no officing shifts in this poll."
|
||||
final_recounts: "Final recounts"
|
||||
final_recount: "Final recount (by officer)"
|
||||
total_recounts: "Total recounts"
|
||||
total_recount: "Total recount (by officer)"
|
||||
poll_shifts:
|
||||
new:
|
||||
add_shift: "Add shift"
|
||||
@@ -531,7 +531,7 @@ en:
|
||||
recounts: "Recounts"
|
||||
recounts_list: "Recount list for this booth"
|
||||
date: "Date"
|
||||
count_final: "Final recount (by officer)"
|
||||
total_recount: "Total recount (by officer)"
|
||||
count_by_system: "Votes (automatic)"
|
||||
index:
|
||||
booths_title: "List of booths"
|
||||
@@ -604,7 +604,7 @@ en:
|
||||
title: "Recounts"
|
||||
no_recounts: "There is nothing to be recounted"
|
||||
table_booth_name: "Booth"
|
||||
table_final_recount: "Final recount (by officer)"
|
||||
table_total_recount: "Total recount (by officer)"
|
||||
table_system_count: "Votes (automatic)"
|
||||
results:
|
||||
index:
|
||||
|
||||
@@ -9,7 +9,7 @@ en:
|
||||
info: Here you can validate user documents and store voting results
|
||||
menu:
|
||||
voters: Validate document
|
||||
final_recounts: Final recounts and results
|
||||
total_recounts: Total recounts and results
|
||||
polls:
|
||||
final:
|
||||
title: Polls ready for final recounting
|
||||
|
||||
@@ -494,8 +494,8 @@ es:
|
||||
booth: "Urna"
|
||||
assignments: "Turnos como presidente de mesa en esta votación"
|
||||
no_assignments: "No tiene turnos como presidente de mesa en esta votación."
|
||||
final_recounts: "Recuentos finales"
|
||||
final_recount: "Recuento final (presidente de mesa)"
|
||||
total_recounts: "Recuentos totales"
|
||||
total_recount: "Recuento total (presidente de mesa)"
|
||||
poll_shifts:
|
||||
new:
|
||||
add_shift: "Añadir turno"
|
||||
@@ -531,7 +531,7 @@ es:
|
||||
recounts: "Recuentos"
|
||||
recounts_list: "Lista de recuentos de esta urna"
|
||||
date: "Fecha"
|
||||
count_final: "Recuento final (presidente de mesa)"
|
||||
total_recount: "Recuento total (presidente de mesa)"
|
||||
count_by_system: "Votos (automático)"
|
||||
index:
|
||||
booths_title: "Listado de urnas asignadas"
|
||||
@@ -604,7 +604,7 @@ es:
|
||||
title: "Recuentos"
|
||||
no_recounts: "No hay nada de lo que hacer recuento"
|
||||
table_booth_name: "Urna"
|
||||
table_final_recount: "Recuento final (presidente de mesa)"
|
||||
table_total_recount: "Recuento total (presidente de mesa)"
|
||||
table_system_count: "Votos (automático)"
|
||||
results:
|
||||
index:
|
||||
|
||||
@@ -9,7 +9,7 @@ es:
|
||||
info: Aquí puedes validar documentos de ciudadanos y guardar los resultados de las urnas
|
||||
menu:
|
||||
voters: "Validar documento y votar"
|
||||
final_recounts: "Recuento final y escrutinio"
|
||||
total_recounts: "Recuento total y escrutinio"
|
||||
polls:
|
||||
final:
|
||||
title: "Listado de votaciones finalizadas"
|
||||
|
||||
@@ -301,8 +301,8 @@ fr:
|
||||
no_assignments: "Cet utilisateur n'a pas d'affectation pour ce vote."
|
||||
recounts: "Dépouillement journalier"
|
||||
recount: "Dépouillement journalier (par président)"
|
||||
final_recounts: "Dépouillement final"
|
||||
final_recount: "Dépouillement final (par président)"
|
||||
total_recounts: "Dépouillement final"
|
||||
total_recount: "Dépouillement final (par président)"
|
||||
poll_booth_assignments:
|
||||
flash:
|
||||
destroy: "Ce bureau de vote n'est plus affecté"
|
||||
@@ -319,7 +319,7 @@ fr:
|
||||
no_recounts: "Il n'y a pas encore de dépouillements journaliers pour ce bureau de vote."
|
||||
date: "Date"
|
||||
count_by_officer: "Dépouillement journalier (par président)"
|
||||
count_final: "Dépouillement final (par président)"
|
||||
total_count: "Dépouillement final (par président)"
|
||||
count_by_system: "Votes (automatique)"
|
||||
index:
|
||||
booths_title: "Liste des bureaux de vote"
|
||||
@@ -391,7 +391,7 @@ fr:
|
||||
no_recounts: "Il n'y a rien à dépouiller"
|
||||
table_booth_name: "Bureau de vote"
|
||||
table_recounts: "Accumulation des dépouillements journaliers (par président)"
|
||||
table_final_recount: "Dépouillement final (par président)"
|
||||
table_total_recount: "Dépouillement final (par président)"
|
||||
table_system_count: "Votes (automatique)"
|
||||
results:
|
||||
index:
|
||||
|
||||
@@ -10,7 +10,7 @@ fr:
|
||||
menu:
|
||||
voters: "Valider un document"
|
||||
recounts: "Enregistrer le dépouillement"
|
||||
final_recounts: "Dépouillements finaux et résultats"
|
||||
total_recounts: "Dépouillements finaux et résultats"
|
||||
polls:
|
||||
index:
|
||||
title: "Liste des votes"
|
||||
@@ -38,23 +38,6 @@ fr:
|
||||
recount_list: "Vos dépouillements"
|
||||
booth: "Urne"
|
||||
date: "Date"
|
||||
final_recounts:
|
||||
flash:
|
||||
create: "Données ajoutées"
|
||||
error_create: "Décompte final NON ajouté. Erreur dans les données."
|
||||
new:
|
||||
title: "%{poll} - Ajouter le dépouillement final"
|
||||
not_allowed: "Vous n'êtes pas autorisés à ajouter les dépouillements finaux pour ce vote"
|
||||
booth: "Bureau de vote"
|
||||
date: "Date"
|
||||
select_booth: "Sélectionner un bureau de vote"
|
||||
select_date: "Sélectionner une date"
|
||||
count: "Décompte final des votes"
|
||||
count_placeholder: "Décompte final des votes"
|
||||
submit: "Sauvegarder"
|
||||
final_recount_list: "Vos dépouillements finaux"
|
||||
system_count: "Dépouillement par le système"
|
||||
add_results: "Ajouter les résultats"
|
||||
results:
|
||||
flash:
|
||||
create: "Résultats sauvegardés"
|
||||
|
||||
@@ -301,8 +301,8 @@ nl:
|
||||
no_assignments: "This user has no officing shifts in this poll."
|
||||
recounts: "Daily recounts"
|
||||
recount: "Daily recount (by officer)"
|
||||
final_recounts: "Final recounts"
|
||||
final_recount: "Final recount (by officer)"
|
||||
total_recounts: "Final recounts"
|
||||
total_recount: "Final recount (by officer)"
|
||||
poll_booth_assignments:
|
||||
flash:
|
||||
destroy: "Booth not assigned anymore"
|
||||
@@ -319,7 +319,7 @@ nl:
|
||||
no_recounts: "There are not daily recounts of this booth yet"
|
||||
date: "Date"
|
||||
count_by_officer: "Daily recount (by officer)"
|
||||
count_final: "Final recount (by officer)"
|
||||
total_count: "Final recount (by officer)"
|
||||
count_by_system: "Votes (automatic)"
|
||||
index:
|
||||
booths_title: "List of booths"
|
||||
@@ -391,7 +391,7 @@ nl:
|
||||
no_recounts: "There is nothing to be recounted"
|
||||
table_booth_name: "Booth"
|
||||
table_recounts: "Accumulated daily recounts (by officer)"
|
||||
table_final_recount: "Final recount (by officer)"
|
||||
table_total_recount: "Final recount (by officer)"
|
||||
table_system_count: "Votes (automatic)"
|
||||
results:
|
||||
index:
|
||||
|
||||
@@ -10,7 +10,7 @@ nl:
|
||||
menu:
|
||||
voters: Validate document
|
||||
recounts: Store recount
|
||||
final_recounts: Final recounts and results
|
||||
total_recounts: Total recounts and results
|
||||
polls:
|
||||
index:
|
||||
title: Poll list
|
||||
@@ -38,23 +38,6 @@ nl:
|
||||
recount_list: "Your recounts"
|
||||
booth: "Booth"
|
||||
date: "Date"
|
||||
final_recounts:
|
||||
flash:
|
||||
create: "Data added"
|
||||
error_create: "Final counts NOT added. Error in data."
|
||||
new:
|
||||
title: "%{poll} - Add final recount"
|
||||
not_allowed: "You are allowed to add final recounts for this poll"
|
||||
booth: "Booth"
|
||||
date: "Date"
|
||||
select_booth: "Select booth"
|
||||
select_date: "Select date"
|
||||
count: "Final vote count"
|
||||
count_placeholder: "Final vote count"
|
||||
submit: Save
|
||||
final_recount_list: "Your final recounts"
|
||||
system_count: "System recount"
|
||||
add_results: "Add results"
|
||||
results:
|
||||
flash:
|
||||
create: "Results saved"
|
||||
|
||||
11
db/migrate/20170918231410_remove_poll_final_recounts.rb
Normal file
11
db/migrate/20170918231410_remove_poll_final_recounts.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class RemovePollFinalRecounts < ActiveRecord::Migration
|
||||
def change
|
||||
remove_index :poll_final_recounts, column: :booth_assignment_id
|
||||
remove_index :poll_final_recounts, column: :officer_assignment_id
|
||||
|
||||
remove_foreign_key :poll_final_recounts, column: "booth_assignment_id"
|
||||
remove_foreign_key :poll_final_recounts, column: "officer_assignment_id"
|
||||
|
||||
drop_table :poll_final_recounts
|
||||
end
|
||||
end
|
||||
18
db/schema.rb
18
db/schema.rb
@@ -11,7 +11,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20170914154743) do
|
||||
ActiveRecord::Schema.define(version: 20170918231410) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
@@ -586,20 +586,6 @@ ActiveRecord::Schema.define(version: 20170914154743) do
|
||||
t.string "location"
|
||||
end
|
||||
|
||||
create_table "poll_final_recounts", force: :cascade do |t|
|
||||
t.integer "booth_assignment_id"
|
||||
t.integer "officer_assignment_id"
|
||||
t.integer "count"
|
||||
t.text "count_log", default: ""
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.text "officer_assignment_id_log", default: ""
|
||||
t.date "date", null: false
|
||||
end
|
||||
|
||||
add_index "poll_final_recounts", ["booth_assignment_id"], name: "index_poll_final_recounts_on_booth_assignment_id", using: :btree
|
||||
add_index "poll_final_recounts", ["officer_assignment_id"], name: "index_poll_final_recounts_on_officer_assignment_id", using: :btree
|
||||
|
||||
create_table "poll_null_results", force: :cascade do |t|
|
||||
t.integer "author_id"
|
||||
t.integer "amount"
|
||||
@@ -1101,8 +1087,6 @@ ActiveRecord::Schema.define(version: 20170914154743) do
|
||||
add_foreign_key "organizations", "users"
|
||||
add_foreign_key "poll_answers", "poll_questions", column: "question_id"
|
||||
add_foreign_key "poll_booth_assignments", "polls"
|
||||
add_foreign_key "poll_final_recounts", "poll_booth_assignments", column: "booth_assignment_id"
|
||||
add_foreign_key "poll_final_recounts", "poll_officer_assignments", column: "officer_assignment_id"
|
||||
add_foreign_key "poll_null_results", "poll_booth_assignments", column: "booth_assignment_id"
|
||||
add_foreign_key "poll_null_results", "poll_officer_assignments", column: "officer_assignment_id"
|
||||
add_foreign_key "poll_officer_assignments", "poll_booth_assignments", column: "booth_assignment_id"
|
||||
|
||||
@@ -507,13 +507,6 @@ FactoryGirl.define do
|
||||
date Date.current
|
||||
end
|
||||
|
||||
factory :poll_final_recount, class: 'Poll::FinalRecount' do
|
||||
association :officer_assignment, factory: [:poll_officer_assignment, :final]
|
||||
association :booth_assignment, factory: :poll_booth_assignment
|
||||
count (1..100).to_a.sample
|
||||
date (1.month.ago.to_datetime..1.month.from_now.to_datetime).to_a.sample
|
||||
end
|
||||
|
||||
factory :poll_voter, class: 'Poll::Voter' do
|
||||
poll
|
||||
association :user, :level_two
|
||||
|
||||
@@ -97,11 +97,11 @@ feature 'Admin booths assignments' do
|
||||
officer_assignment_2 = create(:poll_officer_assignment, booth_assignment: booth_assignment, date: poll.ends_at)
|
||||
final_officer_assignment = create(:poll_officer_assignment, :final, booth_assignment: booth_assignment, date: poll.ends_at)
|
||||
|
||||
final_recount = create(:poll_final_recount,
|
||||
total_recount = create(:poll_total_result,
|
||||
booth_assignment: booth_assignment,
|
||||
officer_assignment: final_officer_assignment,
|
||||
date: final_officer_assignment.date,
|
||||
count: 5678)
|
||||
amount: 5678)
|
||||
|
||||
booth_assignment_2 = create(:poll_booth_assignment, poll: poll)
|
||||
|
||||
@@ -112,8 +112,8 @@ feature 'Admin booths assignments' do
|
||||
|
||||
click_link 'Recounts'
|
||||
within('#recounts_list') do
|
||||
within("#recounting_#{final_recount.date.strftime('%Y%m%d')}") do
|
||||
expect(page).to have_content final_recount.count
|
||||
within("#recounting_#{total_recount.date.strftime('%Y%m%d')}") do
|
||||
expect(page).to have_content total_recount.amount
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -249,18 +249,18 @@ feature 'Admin polls' do
|
||||
booth_assignment_final_recounted = create(:poll_booth_assignment, poll: poll)
|
||||
|
||||
3.times do |i|
|
||||
create(:poll_final_recount,
|
||||
create(:poll_total_result,
|
||||
booth_assignment: booth_assignment,
|
||||
date: poll.starts_at + i.days,
|
||||
count: 21)
|
||||
amount: 21)
|
||||
end
|
||||
|
||||
2.times { create(:poll_voter, booth_assignment: booth_assignment_final_recounted) }
|
||||
|
||||
create(:poll_final_recount,
|
||||
create(:poll_total_result,
|
||||
booth_assignment: booth_assignment_final_recounted,
|
||||
date: poll.ends_at,
|
||||
count: 55555)
|
||||
amount: 55555)
|
||||
|
||||
visit admin_poll_path(poll)
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ feature 'Officing Results' do
|
||||
|
||||
expect(page).to have_content('Poll officing')
|
||||
within('#side_menu') do
|
||||
click_link 'Final recounts and results'
|
||||
click_link 'Total recounts and results'
|
||||
end
|
||||
|
||||
expect(page).to_not have_content(not_allowed_poll_1.name)
|
||||
@@ -42,7 +42,7 @@ feature 'Officing Results' do
|
||||
visit officing_root_path
|
||||
|
||||
within('#side_menu') do
|
||||
click_link 'Final recounts and results'
|
||||
click_link 'Total recounts and results'
|
||||
end
|
||||
|
||||
within("#poll_#{@poll.id}") do
|
||||
|
||||
@@ -1,40 +0,0 @@
|
||||
require 'rails_helper'
|
||||
|
||||
describe :final_recount do
|
||||
|
||||
it "should update count_log if count changes" do
|
||||
final_recount = create(:poll_final_recount, count: 33)
|
||||
|
||||
expect(final_recount.count_log).to eq("")
|
||||
|
||||
final_recount.count = 33
|
||||
final_recount.save
|
||||
final_recount.count = 32
|
||||
final_recount.save
|
||||
final_recount.count = 34
|
||||
final_recount.save
|
||||
|
||||
expect(final_recount.count_log).to eq(":33:32")
|
||||
end
|
||||
|
||||
it "should update officer_assignment_id_log if count changes" do
|
||||
final_recount = create(:poll_final_recount, count: 33)
|
||||
|
||||
expect(final_recount.count_log).to eq("")
|
||||
|
||||
final_recount.count = 33
|
||||
final_recount.officer_assignment = create(:poll_officer_assignment, id: 111)
|
||||
final_recount.save
|
||||
|
||||
final_recount.count = 32
|
||||
final_recount.officer_assignment = create(:poll_officer_assignment, id: 112)
|
||||
final_recount.save
|
||||
|
||||
final_recount.count = 34
|
||||
final_recount.officer_assignment = create(:poll_officer_assignment, id: 113)
|
||||
final_recount.save
|
||||
|
||||
expect(final_recount.officer_assignment_id_log).to eq(":111:112")
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user