Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ac fix coverage analysis report #1216

Merged
merged 3 commits into from
Jan 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/views/service_requests/show.xlsx.axlsx
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,8 @@ wb.add_worksheet(name: "Review") do |sheet|
# end

merge_sub_header_rows.each do |services_sub_header_rows|
services_sub_header_rows.each_with_index do |sshr, index|
services_sub_header_rows.each do |sshr|
index = sheet.rows.index(sshr)
sheet.merge_cells("A#{index+1}:#{end_column}#{index+1}") #selected services sub header row
end
end
Expand Down
2 changes: 1 addition & 1 deletion config/schedule.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
end

every 1.day, :at => '4:30 am' do
rake "update_protocol_with_validated_rm"
rake "data:update_protocol_with_validated_rm"
end

every 1.day, :at => '5:00 pm' do
Expand Down