Skip to content

Commit

Permalink
Merge pull request #1832 from projectcypress/master
Browse files Browse the repository at this point in the history
merge 7_25
  • Loading branch information
dczulada authored Jul 25, 2023
2 parents 08214c2 + e4f2a9f commit d80a18b
Show file tree
Hide file tree
Showing 6 changed files with 2,012 additions and 7 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ Installing
-------
Please choose your install instructions based on the certification rule you will certify under:

If you wish to use the 2015 ONC Edition with the eCQMs updated for calendar year 2021 and 2022 reporting, use [Cypress 6](https://github.com/projectcypress/cypress/wiki/Cypress-6-Install-Instructions)

If you wish to use the 2015 ONC Edition with the eCQMs updated for calendar year 2022 and 2023 reporting, use [Cypress 7](https://github.com/projectcypress/cypress/wiki/Cypress-7-Install-Instructions)
If you wish to use the 2015 ONC Edition with the eCQMs updated for calendar year 2023 and 2024 reporting, use [Cypress 7](https://github.com/projectcypress/cypress/wiki/Cypress-7-Install-Instructions)


Reporting Issues
Expand Down
4 changes: 2 additions & 2 deletions app/controllers/products_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ def supplemental_test_artifact
def patients
crit_exists = !@product.product_tests.checklist_tests.empty?
filt_exists = !@product.product_tests.filtering_tests.empty?
criteria_list = crit_exists ? render_to_string(template: 'checklist_tests/print_criteria', layout: 'report') : nil
filtering_list = filt_exists ? render_to_string(template: 'checklist_tests/print_filtering', layout: 'report') : nil
criteria_list = crit_exists ? render_to_string(template: 'checklist_tests/print_criteria', layout: 'report', formats: :html) : nil
filtering_list = filt_exists ? render_to_string(template: 'checklist_tests/print_filtering', layout: 'report', formats: :html) : nil
file = Cypress::CreateTotalTestZip.create_total_test_zip(@product, criteria_list, filtering_list, 'qrda')
send_data file.read, type: 'application/zip', disposition: 'attachment', filename: "#{@product.name}_#{@product.id}.zip".tr(' ', '_')
end
Expand Down
1 change: 0 additions & 1 deletion config/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ version_config:
code: "854901"
codeSystem: "2.16.840.1.113883.6.88"
CMSQRDA3SchematronValidator_warnings:
- '2024 CMS QRDA III Implementation Guide for Eligible Clinicians is not available'
CMSQRDA1HQRSchematronValidator_warnings:

# Configuration for values to use when randomizing patients in test decks
Expand Down
2 changes: 1 addition & 1 deletion config/initializers/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Cypress
class Application
VERSION = '7.1.0'.freeze
VERSION = '7.1.1'.freeze
end
end
Loading

0 comments on commit d80a18b

Please sign in to comment.