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

Sj jtm add ssrid to hollings report #612

Merged
merged 2 commits into from Aug 4, 2016
Merged
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
2 changes: 1 addition & 1 deletion app/views/dashboard/protocols/show.xlsx.axlsx
Expand Up @@ -87,7 +87,7 @@ arm_r_totals = {}
#Displays line_items_visits, grouped by organization from the sub service request
arm.line_items_visits.includes(:line_item).group_by{|liv| liv.line_item.sub_service_request}.each do |sub_service_request, line_items_visits|
next if ["draft", "first_draft"].include?(sub_service_request.status)
ssr_row = [sub_service_request.organization.name, "", "", "", ""]
ssr_row = ["#{sub_service_request.organization.name}(#{sub_service_request.ssr_id})", "", "", "", ""]
((arm.visit_groups.count * 3) + 5).times {ssr_row << ""}
sheet.add_row ssr_row, :style => org_header_style

Expand Down