renalware-core 2.0.24 → 2.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +19 -5
- data/app/assets/images/renalware/print-button-example.png +0 -0
- data/app/assets/stylesheets/renalware/partials/_layout.scss +4 -0
- data/app/assets/stylesheets/renalware/pdf.scss +12 -0
- data/app/assets/stylesheets/renalware/protocol_pdf.scss +4 -0
- data/app/assets/stylesheets/renalware/table_pdf.scss +210 -0
- data/app/controllers/renalware/admissions/consults_controller.rb +24 -6
- data/app/controllers/renalware/concerns/pdf_renderable.rb +11 -2
- data/app/controllers/renalware/renal/aki_alerts_controller.rb +29 -7
- data/app/controllers/renalware/transplants/registration_statuses_controller.rb +1 -1
- data/app/models/renalware/admissions/consult_query.rb +3 -0
- data/app/models/renalware/feeds/message_processor.rb +5 -0
- data/app/models/renalware/feeds/persist_message.rb +4 -1
- data/app/models/renalware/renal.rb +1 -1
- data/app/models/renalware/renal/aki_alert.rb +1 -0
- data/app/presenters/renalware/admissions/admission_presenter.rb +1 -1
- data/app/views/renalware/admissions/consults/_filters.html.slim +10 -1
- data/app/views/renalware/admissions/consults/_filters.pdf.slim +32 -0
- data/app/views/renalware/admissions/consults/_table.html.slim +9 -8
- data/app/views/renalware/admissions/consults/_table.pdf.slim +35 -0
- data/app/views/renalware/admissions/consults/index.html.slim +7 -0
- data/app/views/renalware/admissions/consults/index.pdf.slim +10 -0
- data/app/views/renalware/hd/sessions/_empty_row.html.slim +2 -0
- data/app/views/renalware/hd/sessions/_row.html.slim +3 -0
- data/app/views/renalware/hd/sessions/_show.html.slim +5 -6
- data/app/views/renalware/hd/sessions/_thead.html.slim +4 -0
- data/app/views/renalware/layouts/pdf.pdf.slim +1 -1
- data/app/views/renalware/letters/contacts/_edit.html.slim +1 -1
- data/app/views/renalware/renal/aki_alerts/_filters.pdf.slim +25 -0
- data/app/views/renalware/renal/aki_alerts/_table.pdf.slim +29 -0
- data/app/views/renalware/renal/aki_alerts/edit.html.slim +1 -1
- data/app/views/renalware/renal/aki_alerts/index.html.slim +10 -0
- data/app/views/renalware/renal/aki_alerts/index.pdf.slim +14 -0
- data/app/views/renalware/shared/_please_print_using_print_button_warning.html.slim +18 -0
- data/app/views/renalware/transplants/donor_followups/_form.html.slim +2 -2
- data/app/views/renalware/transplants/recipient_followups/_form.html.slim +6 -1
- data/app/views/renalware/transplants/registration_statuses/_inputs.html.slim +4 -0
- data/app/views/renalware/transplants/registration_statuses/_list.html.slim +18 -5
- data/config/locales/custom.yml +2 -3
- data/config/locales/renalware/hd/session.en.yml +3 -0
- data/db/migrate/20180510151959_update_hd_overall_audit_to_version_7.rb +6 -0
- data/db/migrate/20180511100345_add_notes_to_transplant_registration_statuses.rb +5 -0
- data/db/migrate/20180511140415_add_message_hash_messaging_messages.rb +6 -0
- data/db/seeds/default/deaths/death_causes.rb +4 -4
- data/db/seeds/default/patients/patients_languages.rb +4 -3
- data/db/seeds/default/renal/prd_descriptions.rb +7 -5
- data/db/seeds/default/system/countries.rb +10 -6
- data/db/views/reporting_hd_overall_audit_v07.sql +44 -0
- data/lib/renalware/configuration.rb +4 -0
- data/lib/renalware/engine.rb +2 -0
- data/lib/renalware/version.rb +1 -1
- data/spec/factories/admissions/consults.rb +12 -0
- data/spec/support/capybara.rb +16 -21
- metadata +15 -3
- data/spec/support/poltergeist.rb +0 -4
@@ -0,0 +1,18 @@
|
|
1
|
+
/ This is displayed in pages printed using the browser (i.e. File -> Print), when we want instead to
|
2
|
+
/ direct the user to print using the provided Print button on the page, which will provide a better
|
3
|
+
/ printed output (usually via PDF).
|
4
|
+
/ While its possible of course to format all pages for printing using CSS, there are times when
|
5
|
+
/ generating a PDF from a custom HTML view guarantees a better experience, for example:
|
6
|
+
/ - we need a very different layout
|
7
|
+
/ - we want to control headers and footers
|
8
|
+
/ - there are table rows which are not displaying correctly in html (perhaps creating orphaned rows)
|
9
|
+
/ and we need to use for example nested tables to get an acceptable printable page.
|
10
|
+
/ - its useful for the user to be able to save a hard-copy PDF of the printed output
|
11
|
+
/
|
12
|
+
/ Think of custom HTML views turned into PDF using wkhtmltopdf as a pragmatic and quicker half-way
|
13
|
+
/ house towards creating more sophisticated and controllable printable PDF output using Prawn etc.
|
14
|
+
.panel.print-only
|
15
|
+
h2
|
16
|
+
| For best results please print by clicking on the Print button rather than printing
|
17
|
+
| this page directly.
|
18
|
+
= image_tag "renalware/print-button-example.png"
|
@@ -10,10 +10,10 @@ ruby:
|
|
10
10
|
.form-content
|
11
11
|
= render layout: "renalware/shared/fieldset",
|
12
12
|
locals: { legend: "Admin", name: "admin" } do
|
13
|
-
= f.input :followed_up, as: :inline_radio_buttons
|
13
|
+
= f.input :followed_up, as: :inline_radio_buttons, readonly: nil
|
14
14
|
= f.input :last_seen_on, as: :date_picker
|
15
15
|
= f.input :ukt_center_code
|
16
|
-
= f.input :lost_to_followup, as: :inline_radio_buttons
|
16
|
+
= f.input :lost_to_followup, as: :inline_radio_buttons, readonly: nil
|
17
17
|
= f.input :transferred_for_followup, as: :inline_radio_buttons
|
18
18
|
= f.input :dead_on, as: :date_picker
|
19
19
|
|
@@ -13,7 +13,12 @@ ruby:
|
|
13
13
|
= render layout: "renalware/shared/fieldset",
|
14
14
|
locals: { legend: "Transplant Failure", name: "transplant_failure" } do
|
15
15
|
= f.input :stent_removed_on, as: :date_picker, wrapper: :horizontal_datepicker
|
16
|
-
|
16
|
+
/ readonly: nil here is required to prevent the No option being created with readonly=readonly
|
17
|
+
/ which causes Capybara to fail because it cannot change the value of read-only element
|
18
|
+
= f.input :transplant_failed,
|
19
|
+
as: :inline_radio_buttons,
|
20
|
+
wrapper: :horizontal_small,
|
21
|
+
readonly: nil
|
17
22
|
= f.input :transplant_failed_on, as: :date_picker, wrapper: :horizontal_datepicker
|
18
23
|
= f.input :transplant_failure_cause_description_id,
|
19
24
|
as: :grouped_select,
|
@@ -9,11 +9,12 @@ article.status-history.secondary
|
|
9
9
|
|
10
10
|
table
|
11
11
|
thead
|
12
|
-
th
|
13
|
-
th Start Date
|
12
|
+
th.col-width-medium
|
13
|
+
th.col-width-date Start Date
|
14
|
+
th.col-width-date End Date
|
14
15
|
th Status
|
15
16
|
th By
|
16
|
-
|
17
|
+
|
17
18
|
tbody
|
18
19
|
- registration.statuses.reversed.each do |status|
|
19
20
|
tr
|
@@ -25,7 +26,19 @@ article.status-history.secondary
|
|
25
26
|
patient_transplants_registration_status_path(patient, status),
|
26
27
|
method: :delete,
|
27
28
|
data: { confirm: I18n.t("prompts.confirm_delete") }
|
28
|
-
|
29
|
+
= pipe_separator
|
30
|
+
= link_to("Toggle",
|
31
|
+
"#status-quick-preview-#{status.id}",
|
32
|
+
data: { behaviour: "toggler" })
|
33
|
+
td= l(status.started_on)
|
34
|
+
td= l(status.terminated_on) if status.terminated_on
|
29
35
|
td= status.description
|
30
36
|
td= status.updated_by.to_s
|
31
|
-
|
37
|
+
|
38
|
+
= content_tag(:tr, id: "status-quick-preview-#{status.id}", style: "display: none")
|
39
|
+
td(colspan=5)
|
40
|
+
.quick-preview
|
41
|
+
dl.dl-horizontal
|
42
|
+
dt Notes
|
43
|
+
dd= simple_format status.notes
|
44
|
+
|
data/config/locales/custom.yml
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
en:
|
2
2
|
renalware:
|
3
3
|
beta_message:
|
4
|
-
title:
|
5
|
-
|
6
|
-
body: |
|
4
|
+
title: "Important notice: "
|
5
|
+
body: >
|
7
6
|
This is the Renalware 2.0 test system.
|
8
7
|
Not for clinical use. Any data entered will not be retained.
|
9
8
|
feedback_button: Provide feedback or report a bug
|
@@ -2,13 +2,13 @@
|
|
2
2
|
|
3
3
|
module Renalware
|
4
4
|
log "Adding Renal Reg Cause of Death codes" do
|
5
|
+
return if Deaths::Cause.count > 0
|
5
6
|
|
6
7
|
file_path = File.join(File.dirname(__FILE__), "death_causes.csv")
|
7
|
-
|
8
|
+
causes = []
|
8
9
|
CSV.foreach(file_path, headers: true) do |row|
|
9
|
-
Deaths::Cause.
|
10
|
-
code.description = row["description"]
|
11
|
-
end
|
10
|
+
causes << Deaths::Cause.new(code: row["code"], description: row["description"])
|
12
11
|
end
|
12
|
+
Deaths::Cause.import! causes
|
13
13
|
end
|
14
14
|
end
|
@@ -2,11 +2,12 @@
|
|
2
2
|
|
3
3
|
module Renalware
|
4
4
|
log "Adding Languages" do
|
5
|
-
|
5
|
+
return if Patients::Language.count > 0
|
6
6
|
file_path = File.join(File.dirname(__FILE__), "patients_languages.csv")
|
7
|
-
|
7
|
+
languages = []
|
8
8
|
CSV.foreach(file_path, headers: true) do |row|
|
9
|
-
Patients::Language.
|
9
|
+
languages << Patients::Language.new(code: row["code"], name: row["name"])
|
10
10
|
end
|
11
|
+
Patients::Language.import! languages
|
11
12
|
end
|
12
13
|
end
|
@@ -2,13 +2,15 @@
|
|
2
2
|
|
3
3
|
module Renalware
|
4
4
|
log "Adding Primary Renal Diagnosis (PRD) Codes" do
|
5
|
-
|
5
|
+
return if Renal::PRDDescription.count > 0
|
6
6
|
file_path = File.join(File.dirname(__FILE__), "prd_descriptions.csv")
|
7
|
-
|
7
|
+
descriptions = []
|
8
8
|
CSV.foreach(file_path, headers: true) do |row|
|
9
|
-
Renal::PRDDescription.
|
10
|
-
code
|
11
|
-
|
9
|
+
descriptions << Renal::PRDDescription.new(
|
10
|
+
code: row["code"],
|
11
|
+
term: row["term"]
|
12
|
+
)
|
12
13
|
end
|
14
|
+
Renal::PRDDescription.import! descriptions
|
13
15
|
end
|
14
16
|
end
|
@@ -2,13 +2,17 @@
|
|
2
2
|
|
3
3
|
module Renalware
|
4
4
|
log "Adding Countries" do
|
5
|
+
return if System::Country.count > 0
|
5
6
|
file_path = File.join(File.dirname(__FILE__), "countries.csv")
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
7
|
+
countries = []
|
8
|
+
CSV.foreach(file_path, headers: true) do |row, index|
|
9
|
+
countries << System::Country.new(
|
10
|
+
name: row["name"],
|
11
|
+
alpha2: row["alpha2"],
|
12
|
+
alpha3: row["alpha3"],
|
13
|
+
position: index
|
14
|
+
)
|
12
15
|
end
|
16
|
+
System::Country.import! countries
|
13
17
|
end
|
14
18
|
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
with fistula_or_graft_access_types as (
|
2
|
+
select id
|
3
|
+
from access_types
|
4
|
+
where name ilike '%fistula%' or name ilike '%graft%'
|
5
|
+
),
|
6
|
+
stats as (
|
7
|
+
select
|
8
|
+
s.patient_id,
|
9
|
+
s.hospital_unit_id,
|
10
|
+
s.month,
|
11
|
+
s.year,
|
12
|
+
s.session_count,
|
13
|
+
s.number_of_missed_sessions,
|
14
|
+
s.number_of_sessions_with_dialysis_minutes_shortfall_gt_5_pct,
|
15
|
+
((number_of_missed_sessions::float / NULLIF(session_count::float, 0)) * 100.0) > 10.0 as missed_sessions_gt_10_pct,
|
16
|
+
s.dialysis_minutes_shortfall::float,
|
17
|
+
convert_to_float(s.pathology_snapshot -> 'HGB' ->> 'result') > 100 as hgb_gt_100,
|
18
|
+
convert_to_float(s.pathology_snapshot -> 'HGB' ->> 'result') > 130 as hgb_gt_130,
|
19
|
+
convert_to_float(s.pathology_snapshot -> 'PTH' ->> 'result') < 300 as pth_lt_300,
|
20
|
+
convert_to_float(s.pathology_snapshot -> 'URR' ->> 'result') > 64 as urr_gt_64,
|
21
|
+
convert_to_float(s.pathology_snapshot -> 'URR' ->> 'result') > 69 as urr_gt_69,
|
22
|
+
convert_to_float(s.pathology_snapshot -> 'PHOS' ->> 'result') < 1.8 as phos_lt_1_8
|
23
|
+
from hd_patient_statistics s
|
24
|
+
where s.rolling is null
|
25
|
+
)
|
26
|
+
select
|
27
|
+
hu.name,
|
28
|
+
stats.year,
|
29
|
+
stats.month,
|
30
|
+
count(*) as patient_count,
|
31
|
+
round(avg(stats.dialysis_minutes_shortfall)::decimal, 2) as avg_missed_hd_time,
|
32
|
+
round(avg(number_of_sessions_with_dialysis_minutes_shortfall_gt_5_pct),2) as pct_shortfall_gt_5_pct,
|
33
|
+
round(((count(*) filter(where missed_sessions_gt_10_pct = true))::float / count(*)::float * 100)::decimal, 2) as pct_missed_sessions_gt_10_pct,
|
34
|
+
round(((count(*) filter(where hgb_gt_100 = true))::float / count(*)::float * 100)::decimal, 2) as percentage_hgb_gt_100,
|
35
|
+
round(((count(*) filter(where hgb_gt_130 = true))::float / count(*)::float * 100)::decimal, 2) as percentage_hgb_gt_130,
|
36
|
+
round(((count(*) filter(where pth_lt_300 = true))::float / count(*)::float * 100)::decimal, 2) as percentage_pth_lt_300,
|
37
|
+
round(((count(*) filter(where urr_gt_64 = true))::float / count(*)::float * 100)::decimal, 2) as percentage_urr_gt_64,
|
38
|
+
round(((count(*) filter(where urr_gt_69 = true))::float / count(*)::float * 100)::decimal, 2) as percentage_urr_gt_69,
|
39
|
+
round(((count(*) filter(where phos_lt_1_8 = true))::float / count(*)::float * 100)::decimal, 2) as percentage_phosphate_lt_1_8,
|
40
|
+
'TBC' as percentage_access_fistula_or_graft
|
41
|
+
from stats
|
42
|
+
inner join hospital_units hu on hu.id = stats.hospital_unit_id
|
43
|
+
group by hu.name, stats.year, stats.month
|
44
|
+
order by hu.name, stats.year asc, stats.month asc;
|
@@ -54,6 +54,10 @@ module Renalware
|
|
54
54
|
end
|
55
55
|
config_accessor(:ukrdc_sending_facility_name) { ENV["UKRDC_SENDING_FACILITY_NAME"] }
|
56
56
|
|
57
|
+
# We override this in some tests as a means of getting wicked_Pdf to generate an HTML version
|
58
|
+
# of the PDF so we can examine its content
|
59
|
+
config_accessor(:render_pdf_as_html_for_debugging) { false }
|
60
|
+
|
57
61
|
# A host app can override this to add/remove/re-order the clinical summary display
|
58
62
|
# Note these have to be strings - they mapped to constants in ClinicalSummaryPresenter.
|
59
63
|
config_accessor(:page_layouts) {
|
data/lib/renalware/engine.rb
CHANGED
@@ -126,6 +126,7 @@ module Renalware
|
|
126
126
|
app.config.assets.precompile += %w(renalware/pdf.css renalware/watermark.css)
|
127
127
|
app.config.assets.precompile += %w(renalware/protocol_pdf.css)
|
128
128
|
app.config.assets.precompile += %w(renalware/hd_diary_pdf.css)
|
129
|
+
app.config.assets.precompile += %w(renalware/table_pdf.css)
|
129
130
|
app.config.assets.precompile += %w(
|
130
131
|
renalware/nhs_a4_letter_logo_blue.png
|
131
132
|
renalware/nhs_a4_letter_logo_black.png
|
@@ -140,6 +141,7 @@ module Renalware
|
|
140
141
|
renalware/favicon/mstile-150x150.png
|
141
142
|
renalware/favicon/safari-pinned-tab.svg
|
142
143
|
renalware/clippy.svg
|
144
|
+
renalware/print-button-example.png
|
143
145
|
)
|
144
146
|
app.config.assets.paths <<
|
145
147
|
Rails.root.join(config.root, "vendor", "assets", "javascripts", "renalware")
|
data/lib/renalware/version.rb
CHANGED
@@ -5,5 +5,17 @@ FactoryBot.define do
|
|
5
5
|
accountable
|
6
6
|
patient { create(:patient, by: accountable_actor) }
|
7
7
|
association :consult_site, factory: :admissions_consult_site
|
8
|
+
consult_type "x"
|
9
|
+
started_on { Time.zone.now - 2.days }
|
10
|
+
ended_on nil
|
11
|
+
description "Lorem ipsum dolor"
|
12
|
+
|
13
|
+
trait :active do
|
14
|
+
ended_on nil
|
15
|
+
end
|
16
|
+
|
17
|
+
trait :inactive do
|
18
|
+
ended_on { Time.zone.now - 1.day }
|
19
|
+
end
|
8
20
|
end
|
9
21
|
end
|
data/spec/support/capybara.rb
CHANGED
@@ -1,25 +1,20 @@
|
|
1
|
-
# frozen_string_literal: true
|
1
|
+
# # frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
Capybara.register_driver :poltergeist_debug do |app|
|
8
|
-
Capybara::Poltergeist::Driver.new(
|
9
|
-
app,
|
10
|
-
inspector: "open",
|
11
|
-
debug: false
|
12
|
-
)
|
13
|
-
end
|
3
|
+
Capybara.register_driver(:headless_chrome) do |app|
|
4
|
+
capabilities = Selenium::WebDriver::Remote::Capabilities.chrome(
|
5
|
+
chromeOptions: { args: %w(headless disable-gpu window-size=1366,1768) }
|
6
|
+
)
|
14
7
|
|
15
|
-
Capybara.
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
end
|
8
|
+
Capybara::Selenium::Driver.new(
|
9
|
+
app,
|
10
|
+
browser: :chrome,
|
11
|
+
desired_capabilities: capabilities
|
12
|
+
)
|
13
|
+
end
|
22
14
|
|
23
|
-
|
24
|
-
Capybara.
|
15
|
+
if RUBY_PLATFORM.match?(/darwin/)
|
16
|
+
Capybara::Screenshot.register_driver(:headless_chrome) do |driver, path|
|
17
|
+
driver.browser.save_screenshot(path)
|
18
|
+
end
|
25
19
|
end
|
20
|
+
Capybara.javascript_driver = :headless_chrome
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: renalware-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.25
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Airslie
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_type
|
@@ -925,6 +925,7 @@ files:
|
|
925
925
|
- app/assets/images/renalware/kidney.png
|
926
926
|
- app/assets/images/renalware/nhs_a4_letter_logo_black.png
|
927
927
|
- app/assets/images/renalware/nhs_a4_letter_logo_blue.png
|
928
|
+
- app/assets/images/renalware/print-button-example.png
|
928
929
|
- app/assets/javascripts/renalware/ajax_errors.js
|
929
930
|
- app/assets/javascripts/renalware/application.js.erb
|
930
931
|
- app/assets/javascripts/renalware/appointments.js
|
@@ -1028,6 +1029,7 @@ files:
|
|
1028
1029
|
- app/assets/stylesheets/renalware/pdf.scss
|
1029
1030
|
- app/assets/stylesheets/renalware/print/pathology_request_forms.scss
|
1030
1031
|
- app/assets/stylesheets/renalware/protocol_pdf.scss
|
1032
|
+
- app/assets/stylesheets/renalware/table_pdf.scss
|
1031
1033
|
- app/assets/stylesheets/renalware/watermark.scss
|
1032
1034
|
- app/controllers/renalware/accesses/assessments_controller.rb
|
1033
1035
|
- app/controllers/renalware/accesses/base_controller.rb
|
@@ -1975,10 +1977,13 @@ files:
|
|
1975
1977
|
- app/views/renalware/admissions/admissions/index.html.slim
|
1976
1978
|
- app/views/renalware/admissions/admissions/new.html.slim
|
1977
1979
|
- app/views/renalware/admissions/consults/_filters.html.slim
|
1980
|
+
- app/views/renalware/admissions/consults/_filters.pdf.slim
|
1978
1981
|
- app/views/renalware/admissions/consults/_form.html.slim
|
1979
1982
|
- app/views/renalware/admissions/consults/_table.html.slim
|
1983
|
+
- app/views/renalware/admissions/consults/_table.pdf.slim
|
1980
1984
|
- app/views/renalware/admissions/consults/edit.html.slim
|
1981
1985
|
- app/views/renalware/admissions/consults/index.html.slim
|
1986
|
+
- app/views/renalware/admissions/consults/index.pdf.slim
|
1982
1987
|
- app/views/renalware/admissions/consults/new.html.slim
|
1983
1988
|
- app/views/renalware/admissions/patient_admissions/index.html.slim
|
1984
1989
|
- app/views/renalware/admissions/requests/_create_request_link.html.slim
|
@@ -2547,9 +2552,12 @@ files:
|
|
2547
2552
|
- app/views/renalware/problems/problems/show.html.slim
|
2548
2553
|
- app/views/renalware/renal/aki_alerts/_aki_alert.html.slim
|
2549
2554
|
- app/views/renalware/renal/aki_alerts/_filters.html.slim
|
2555
|
+
- app/views/renalware/renal/aki_alerts/_filters.pdf.slim
|
2550
2556
|
- app/views/renalware/renal/aki_alerts/_table.html.slim
|
2557
|
+
- app/views/renalware/renal/aki_alerts/_table.pdf.slim
|
2551
2558
|
- app/views/renalware/renal/aki_alerts/edit.html.slim
|
2552
2559
|
- app/views/renalware/renal/aki_alerts/index.html.slim
|
2560
|
+
- app/views/renalware/renal/aki_alerts/index.pdf.slim
|
2553
2561
|
- app/views/renalware/renal/prd_descriptions/search.json.jbuilder
|
2554
2562
|
- app/views/renalware/renal/profiles/_form.html.slim
|
2555
2563
|
- app/views/renalware/renal/profiles/_mini.html.slim
|
@@ -2587,6 +2595,7 @@ files:
|
|
2587
2595
|
- app/views/renalware/shared/_last_update.html.slim
|
2588
2596
|
- app/views/renalware/shared/_magellan_block.html.slim
|
2589
2597
|
- app/views/renalware/shared/_modal_close_link.html.slim
|
2598
|
+
- app/views/renalware/shared/_please_print_using_print_button_warning.html.slim
|
2590
2599
|
- app/views/renalware/shared/documents/_age.html.slim
|
2591
2600
|
- app/views/renalware/shared/documents/_age_input.html.slim
|
2592
2601
|
- app/views/renalware/shared/documents/_attributes_group.html.slim
|
@@ -3232,6 +3241,9 @@ files:
|
|
3232
3241
|
- db/migrate/20180427133558_add_code_to_hospitals_wards.rb
|
3233
3242
|
- db/migrate/20180502093256_add_document_to_virology_profiles.rb
|
3234
3243
|
- db/migrate/20180502110638_create_virology_versions.rb
|
3244
|
+
- db/migrate/20180510151959_update_hd_overall_audit_to_version_7.rb
|
3245
|
+
- db/migrate/20180511100345_add_notes_to_transplant_registration_statuses.rb
|
3246
|
+
- db/migrate/20180511140415_add_message_hash_messaging_messages.rb
|
3235
3247
|
- db/seeds.rb
|
3236
3248
|
- db/seeds/default/accesses/access_pd_catheter_insertion_techniques.csv
|
3237
3249
|
- db/seeds/default/accesses/access_pd_catheter_insertion_techniques.rb
|
@@ -3335,6 +3347,7 @@ files:
|
|
3335
3347
|
- db/views/reporting_hd_overall_audit_v04.sql
|
3336
3348
|
- db/views/reporting_hd_overall_audit_v05.sql
|
3337
3349
|
- db/views/reporting_hd_overall_audit_v06.sql
|
3350
|
+
- db/views/reporting_hd_overall_audit_v07.sql
|
3338
3351
|
- db/views/reporting_main_authors_audit_v01.sql
|
3339
3352
|
- db/views/reporting_main_authors_audit_v02.sql
|
3340
3353
|
- db/views/reporting_pd_audit_v01.sql
|
@@ -3550,7 +3563,6 @@ files:
|
|
3550
3563
|
- spec/support/matchers/validate_timeliness_of.rb
|
3551
3564
|
- spec/support/pathology_spec_helper.rb
|
3552
3565
|
- spec/support/patients_spec_helper.rb
|
3553
|
-
- spec/support/poltergeist.rb
|
3554
3566
|
- spec/support/pundit_matcher.rb
|
3555
3567
|
- spec/support/roles_spec_helper.rb
|
3556
3568
|
- spec/support/select2_spec_helper.rb
|