renalware-core 2.0.0.pre.beta7 → 2.0.0.pre.beta8
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/app/assets/javascripts/renalware/searchables.js +3 -0
- data/app/assets/javascripts/renalware/select2-ajax-search.js +86 -0
- data/app/assets/javascripts/renalware/sortable.js +12 -1
- data/app/assets/stylesheets/renalware/base/_variables.scss +7 -1
- data/app/assets/stylesheets/renalware/modules/_admissions.scss +39 -0
- data/app/assets/stylesheets/renalware/modules/_letters.scss +12 -0
- data/app/assets/stylesheets/renalware/modules/_messaging.scss +0 -4
- data/app/assets/stylesheets/renalware/partials/_animations.scss +12 -0
- data/app/assets/stylesheets/renalware/partials/_modal_window.scss +44 -0
- data/app/assets/stylesheets/renalware/partials/_tables.scss +6 -0
- data/app/controllers/renalware/admissions/requests_controller.rb +100 -0
- data/app/controllers/renalware/devise/passwords_controller.rb +6 -0
- data/app/controllers/renalware/letters/electronic_receipts_controller.rb +81 -0
- data/app/controllers/renalware/letters/letters_controller.rb +18 -3
- data/app/controllers/renalware/messaging/internal/messages_controller.rb +75 -0
- data/app/controllers/renalware/messaging/internal/receipts_controller.rb +74 -0
- data/app/controllers/renalware/patients/patients_controller.rb +11 -1
- data/app/controllers/renalware/session_timeout_controller.rb +1 -1
- data/app/documents/renalware/hd/profile_document.rb +1 -1
- data/app/helpers/renalware/application_helper.rb +5 -0
- data/app/helpers/renalware/xhr_helper.rb +7 -0
- data/app/models/concerns/renalware/deviseable.rb +1 -1
- data/app/models/renalware/admissions.rb +7 -0
- data/app/models/renalware/admissions/request.rb +23 -0
- data/app/models/renalware/admissions/request_reason.rb +11 -0
- data/app/models/renalware/feeds/message_processor.rb +2 -2
- data/app/models/renalware/feeds/persist_message.rb +2 -0
- data/app/models/renalware/hd/sessions/auditable_session.rb +4 -0
- data/app/models/renalware/hd/sessions/auditable_session_collection.rb +5 -0
- data/app/models/renalware/hd/update_rolling_patient_statistics.rb +2 -2
- data/app/models/renalware/letters/electronic_receipt.rb +35 -0
- data/app/models/renalware/letters/electronic_recipient_options.rb +78 -0
- data/app/models/renalware/letters/letter.rb +4 -0
- data/app/models/renalware/letters/letter_factory.rb +21 -1
- data/app/models/renalware/messaging.rb +21 -5
- data/app/models/renalware/messaging/internal/author.rb +11 -0
- data/app/models/renalware/messaging/internal/message.rb +15 -0
- data/app/models/renalware/messaging/internal/message_factory.rb +20 -0
- data/app/models/renalware/messaging/internal/message_form.rb +36 -0
- data/app/models/renalware/messaging/internal/message_form_builder.rb +52 -0
- data/app/models/renalware/messaging/internal/receipt.rb +26 -0
- data/app/models/renalware/messaging/internal/recipient.rb +12 -0
- data/app/models/renalware/messaging/internal/recipient_options.rb +87 -0
- data/app/models/renalware/messaging/internal/send_message.rb +24 -0
- data/app/models/renalware/messaging/message.rb +4 -3
- data/app/models/renalware/pathology.rb +1 -1
- data/app/models/renalware/pathology/message_param_parser.rb +2 -0
- data/app/models/renalware/patients/search_filter.rb +32 -0
- data/app/models/renalware/patients/search_form.rb +17 -0
- data/app/models/renalware/patients/search_query.rb +20 -21
- data/app/models/renalware/patients/summary.rb +1 -1
- data/app/models/renalware/user.rb +18 -2
- data/app/policies/renalware/admissions/request_policy.rb +8 -0
- data/app/policies/renalware/letters/electronic_receipt_policy.rb +23 -0
- data/app/policies/renalware/messaging/{message_policy.rb → internal/message_policy.rb} +2 -3
- data/app/policies/renalware/messaging/internal/receipt_policy.rb +25 -0
- data/app/presenters/renalware/dashboard/dashboard_presenter.rb +9 -2
- data/app/presenters/renalware/hd/station_presenter.rb +0 -1
- data/app/presenters/renalware/letters/electronic_receipt_presenter.rb +15 -0
- data/app/presenters/renalware/letters/letter_presenter.rb +5 -0
- data/app/presenters/renalware/mdm_presenter.rb +2 -0
- data/app/presenters/renalware/messaging/internal/message_presenter.rb +21 -0
- data/app/presenters/renalware/messaging/internal/receipt_presenter.rb +13 -0
- data/app/presenters/renalware/pathology/observation_presenter.rb +4 -0
- data/app/presenters/renalware/ukrdc/patient_presenter.rb +5 -0
- data/app/views/renalware/admissions/requests/_create_request_link.html.slim +10 -0
- data/app/views/renalware/admissions/requests/_form.html.slim +31 -0
- data/app/views/renalware/admissions/requests/_modal_dialog_placeholder.html.slim +2 -0
- data/app/views/renalware/admissions/requests/_request.html.slim +34 -0
- data/app/views/renalware/admissions/requests/_table.html.slim +19 -0
- data/app/views/renalware/admissions/requests/create.js.erb +3 -0
- data/app/views/renalware/admissions/requests/destroy.js.erb +3 -0
- data/app/views/renalware/admissions/requests/edit.html.slim +4 -0
- data/app/views/renalware/admissions/requests/edit.js.erb +4 -0
- data/app/views/renalware/admissions/requests/index.html.slim +3 -0
- data/app/views/renalware/admissions/requests/new.html.slim +4 -0
- data/app/views/renalware/admissions/requests/new.js.erb +4 -0
- data/app/views/renalware/admissions/requests/update.js.erb +9 -0
- data/app/views/renalware/api/ukrdc/patients/_allergies.xml.builder +1 -1
- data/app/views/renalware/api/ukrdc/patients/_clinical_relationships.xml.builder +0 -1
- data/app/views/renalware/api/ukrdc/patients/_lab_orders.xml.builder +7 -2
- data/app/views/renalware/api/ukrdc/patients/_observations.xml.builder +1 -1
- data/app/views/renalware/api/ukrdc/patients/_patient.xml.builder +2 -0
- data/app/views/renalware/api/ukrdc/patients/_sending_facility.xml.builder +1 -1
- data/app/views/renalware/api/ukrdc/patients/lab_orders/_lab_order.xml.builder +46 -0
- data/app/views/renalware/api/ukrdc/patients/lab_orders/_result_item.xml.builder +14 -0
- data/app/views/renalware/clinical/allergies/_mini.html.slim +1 -0
- data/app/views/renalware/dashboard/dashboards/_content.html.slim +6 -2
- data/app/views/renalware/dashboard/letters/_letter.html.slim +7 -7
- data/app/views/renalware/dashboard/letters/_table.html.slim +2 -2
- data/app/views/renalware/devise/passwords/edit.html.erb +27 -0
- data/app/views/renalware/devise/passwords/new.html.erb +18 -0
- data/app/views/renalware/devise/registrations/new.html.slim +25 -0
- data/app/views/renalware/letters/electronic_receipts/_table.html.slim +45 -0
- data/app/views/renalware/letters/electronic_receipts/mark_as_read.js.erb +6 -0
- data/app/views/renalware/letters/electronic_receipts/read.html.slim +5 -0
- data/app/views/renalware/letters/electronic_receipts/sent.html.slim +40 -0
- data/app/views/renalware/letters/electronic_receipts/unread.html.slim +5 -0
- data/app/views/renalware/letters/formatted_letters/_letter.html.slim +12 -1
- data/app/views/renalware/letters/letters/_actions.html.slim +1 -1
- data/app/views/renalware/letters/letters/_electronic_ccs.html.slim +16 -0
- data/app/views/renalware/letters/letters/_form.html.slim +8 -3
- data/app/views/renalware/letters/letters/edit.html.slim +7 -1
- data/app/views/renalware/letters/letters/new.html.slim +6 -1
- data/app/views/renalware/letters/shared/_electronic_cc_type_tabs.html.slim +7 -0
- data/app/views/renalware/messaging/{messages → internal/messages}/_form.html.slim +2 -1
- data/app/views/renalware/messaging/{messages → internal/messages}/_modal_dialog_placeholder.html.slim +0 -0
- data/app/views/renalware/messaging/{messages → internal/messages}/_send_message_link.html.slim +1 -1
- data/app/views/renalware/messaging/{messages → internal/messages}/_send_reply_link.html.slim +3 -3
- data/app/views/renalware/messaging/{messages → internal/messages}/create.js.erb +0 -0
- data/app/views/renalware/messaging/{messages → internal/messages}/new.html.slim +0 -0
- data/app/views/renalware/messaging/{messages → internal/messages}/new.js.erb +0 -0
- data/app/views/renalware/messaging/{receipts → internal/receipts}/_receipt.html.slim +2 -2
- data/app/views/renalware/messaging/{messages/_message.html.slim → internal/receipts/_sent_receipt.html.slim} +2 -1
- data/app/views/renalware/messaging/internal/receipts/_sent_table.html.slim +12 -0
- data/app/views/renalware/messaging/{receipts → internal/receipts}/_table.html.slim +2 -2
- data/app/views/renalware/messaging/{receipts → internal/receipts}/mark_as_read.js.erb +0 -0
- data/app/views/renalware/messaging/{receipts → internal/receipts}/read.html.slim +2 -1
- data/app/views/renalware/messaging/internal/receipts/sent.html.slim +7 -0
- data/app/views/renalware/messaging/{receipts → internal/receipts}/unread.html.slim +2 -1
- data/app/views/renalware/messaging/shared/_messages_type_tabs.html.slim +3 -3
- data/app/views/renalware/navigation/_main.html.slim +1 -1
- data/app/views/renalware/navigation/_patients_admin.html.slim +2 -0
- data/app/views/renalware/navigation/_user.html.slim +2 -1
- data/app/views/renalware/patients/_search_form.html.slim +12 -0
- data/app/views/renalware/patients/side_menu/_actions.html.slim +6 -2
- data/app/views/renalware/renal/profiles/_form.html.slim +0 -1
- data/app/views/renalware/renal/profiles/_mini.html.slim +1 -0
- data/app/views/renalware/{snippets/snippets → shared}/_modal_close_link.html.slim +0 -0
- data/app/views/renalware/snippets/snippets/_list.html.slim +1 -1
- data/app/views/renalware/transplants/donations/_form.html.slim +17 -16
- data/config/initializers/simple_form_foundation.rb +0 -1
- data/config/locales/renalware/admissions/requests.en.yml +12 -0
- data/config/locales/renalware/letters/contact.en.yml +3 -0
- data/config/locales/renalware/messaging/internal/messages.en.yml +33 -0
- data/config/locales/renalware/patients/search_form.en.yml +5 -0
- data/config/locales/renalware/patients/side_menu.en.yml +1 -0
- data/config/routes.rb +32 -10
- data/db/migrate/20170908155011_add_shortfall_column_to_hd_patient_statistics.rb +7 -0
- data/db/migrate/20170908160250_update_hd_overall_audit_to_version4.rb +8 -0
- data/db/migrate/20170911133224_add_type_to_messaging_messages.rb +16 -0
- data/db/migrate/20170912092135_create_letters_electronic_receipts.rb +11 -0
- data/db/migrate/20170920113628_create_admissions_requests.rb +31 -0
- data/db/seeds/default/reporting/audits.yml +1 -0
- data/db/views/reporting_hd_overall_audit_v04.sql +13 -0
- data/lib/renalware/version.rb +1 -1
- data/lib/subscription_registry.rb +1 -1
- data/spec/factories/accesses/plans.rb +2 -3
- data/spec/factories/accesses/profiles.rb +1 -2
- data/spec/factories/admissions/request_reasons.rb +8 -0
- data/spec/factories/admissions/requests.rb +9 -0
- data/spec/factories/clinical/body_compositions.rb +2 -5
- data/spec/factories/clinical/dry_weights.rb +2 -3
- data/spec/factories/clinics/clinic_visits.rb +2 -3
- data/spec/factories/directory/people.rb +1 -2
- data/spec/factories/events/events.rb +1 -2
- data/spec/factories/hd/preference_sets.rb +1 -2
- data/spec/factories/hd/profiles.rb +2 -3
- data/spec/factories/hd/sessions.rb +4 -3
- data/spec/factories/letters/electronic_receipts.rb +6 -0
- data/spec/factories/letters/letters.rb +3 -3
- data/spec/factories/medications/prescription.rb +1 -2
- data/spec/factories/medications/prescription_terminations.rb +1 -2
- data/spec/factories/messaging/internal/authors.rb +5 -0
- data/spec/factories/messaging/{message.rb → internal/messages.rb} +1 -1
- data/spec/factories/messaging/internal/receipts.rb +7 -0
- data/spec/factories/messaging/internal/recipients.rb +5 -0
- data/spec/factories/modalities/modalities.rb +1 -3
- data/spec/factories/pathology/requests/request.rb +1 -3
- data/spec/factories/patients/alerts.rb +1 -2
- data/spec/factories/patients/patients.rb +5 -3
- data/spec/factories/pd/assessments.rb +1 -2
- data/spec/factories/pd/fluid_descriptions.rb +0 -1
- data/spec/factories/pd/training_sessions.rb +1 -2
- data/spec/factories/problems/problems.rb +1 -2
- data/spec/factories/shared/accountable.rb +35 -0
- data/spec/factories/system/roles.rb +2 -4
- data/spec/factories/system/users.rb +30 -15
- data/spec/factories/transplants/donor_stage.rb +1 -2
- data/spec/factories/transplants/registration_statuses.rb +2 -4
- data/spec/support/login_macros.rb +1 -1
- metadata +108 -40
- data/app/controllers/renalware/messaging/messages_controller.rb +0 -73
- data/app/controllers/renalware/messaging/receipts_controller.rb +0 -55
- data/app/controllers/renalware/messaging/sent_messages_controller.rb +0 -22
- data/app/models/renalware/messaging/author.rb +0 -9
- data/app/models/renalware/messaging/message_factory.rb +0 -18
- data/app/models/renalware/messaging/message_form.rb +0 -34
- data/app/models/renalware/messaging/message_form_builder.rb +0 -50
- data/app/models/renalware/messaging/receipt.rb +0 -19
- data/app/models/renalware/messaging/recipient.rb +0 -10
- data/app/models/renalware/messaging/recipient_options.rb +0 -85
- data/app/models/renalware/messaging/send_message.rb +0 -22
- data/app/policies/renalware/messaging/receipt_policy.rb +0 -19
- data/app/presenters/renalware/messaging/internal_message_presenter.rb +0 -19
- data/app/presenters/renalware/messaging/receipt_presenter.rb +0 -11
- data/app/views/renalware/devise/registrations/new.html.erb +0 -46
- data/app/views/renalware/messaging/messages/_table.html.slim +0 -13
- data/app/views/renalware/messaging/messages/sent.html.slim +0 -4
- data/config/locales/renalware/messaging/messages.en.yml +0 -29
- data/spec/factories/messaging/authors.rb +0 -5
- data/spec/factories/messaging/receipt.rb +0 -7
- data/spec/factories/messaging/recipients.rb +0 -5
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
FactoryGirl.define do
|
|
2
2
|
factory :pd_training_session, class: "Renalware::PD::TrainingSession" do
|
|
3
|
+
accountable
|
|
3
4
|
patient
|
|
4
|
-
association :updated_by, factory: :user
|
|
5
|
-
association :created_by, factory: :user
|
|
6
5
|
association :training_site, factory: :pd_training_site
|
|
7
6
|
association :training_type, factory: :pd_training_type
|
|
8
7
|
document {
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# A global trait for setting created_by and updated_by.
|
|
2
|
+
#
|
|
3
|
+
# When a model includes the Accountable concern, it adds a #by attributes and this
|
|
4
|
+
# can be set as a shorthand for setting both created_by and updated_by.
|
|
5
|
+
# Similarly, any factory defined against such a model therefore naturally has a by
|
|
6
|
+
# attribute available, so we can for example do
|
|
7
|
+
#
|
|
8
|
+
# create(:patient, by: user_a)
|
|
9
|
+
#
|
|
10
|
+
# which is equivalent to
|
|
11
|
+
#
|
|
12
|
+
# create(:patient, created_by: user_a, updated_by: user_a)
|
|
13
|
+
#
|
|
14
|
+
# However if you don't call `create` with a `by` or `*_by` arguments, the default `association` we
|
|
15
|
+
# define here in this global trait ensures only one user - accountable_actor is created and assigned
|
|
16
|
+
# to both created_by and updated_by. Previously each had its own `user` association and two users
|
|
17
|
+
# were created each time any model (that included Accountable) was created by FactoryGirl.
|
|
18
|
+
# If you need to use the same user for any other attribute in a factory, you can do for instance
|
|
19
|
+
#
|
|
20
|
+
# factory :audit do
|
|
21
|
+
# accountable
|
|
22
|
+
# requested_by { accountable_actor }
|
|
23
|
+
# end
|
|
24
|
+
#
|
|
25
|
+
# Which create one user and assign them to updated_by, createed_by and requested_by.
|
|
26
|
+
#
|
|
27
|
+
FactoryGirl.define do
|
|
28
|
+
trait :accountable do
|
|
29
|
+
transient do
|
|
30
|
+
accountable_actor { by || create(:user) }
|
|
31
|
+
end
|
|
32
|
+
created_by { accountable_actor }
|
|
33
|
+
updated_by { accountable_actor }
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
FactoryGirl.define do
|
|
2
2
|
factory :role, class: "Renalware::Role" do
|
|
3
|
+
initialize_with { Renalware::Role.find_or_create_by(name: name) }
|
|
4
|
+
|
|
3
5
|
name :super_admin
|
|
4
6
|
hidden false
|
|
5
7
|
|
|
@@ -21,7 +23,3 @@ FactoryGirl.define do
|
|
|
21
23
|
end
|
|
22
24
|
end
|
|
23
25
|
end
|
|
24
|
-
|
|
25
|
-
def find_or_create_role(name = :clinician)
|
|
26
|
-
Renalware::Role.find_by(name: name) || create(:role, name)
|
|
27
|
-
end
|
|
@@ -13,45 +13,60 @@ FactoryGirl.define do
|
|
|
13
13
|
username
|
|
14
14
|
email
|
|
15
15
|
password "supersecret"
|
|
16
|
-
approved
|
|
16
|
+
approved true
|
|
17
17
|
professional_position "Health Minister"
|
|
18
|
+
signature { Faker::Name.name }
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
# By default a user has no roles.
|
|
21
|
+
# If you want a use with a role, use a trait, e.g. create(:user, :clinician)
|
|
22
|
+
transient do
|
|
23
|
+
role nil
|
|
21
24
|
end
|
|
22
25
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
user.roles = [find_or_create_role(:clinician)]
|
|
26
|
+
after(:create) do |user, obj|
|
|
27
|
+
unless obj.role.blank?
|
|
28
|
+
user.roles << create(:role, obj.role)
|
|
27
29
|
end
|
|
28
30
|
end
|
|
31
|
+
|
|
32
|
+
trait :unapproved do
|
|
33
|
+
approved false
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
trait :author do
|
|
37
|
+
signature { Faker::Name.name }
|
|
38
|
+
end
|
|
39
|
+
|
|
29
40
|
trait :expired do
|
|
30
41
|
last_activity_at 60.days.ago
|
|
31
42
|
expired_at Time.zone.now
|
|
32
43
|
end
|
|
44
|
+
|
|
33
45
|
trait :super_admin do
|
|
34
|
-
|
|
35
|
-
|
|
46
|
+
transient do
|
|
47
|
+
role :super_admin
|
|
36
48
|
end
|
|
37
49
|
end
|
|
50
|
+
|
|
38
51
|
trait :admin do
|
|
39
|
-
|
|
40
|
-
|
|
52
|
+
transient do
|
|
53
|
+
role :admin
|
|
41
54
|
end
|
|
42
55
|
end
|
|
56
|
+
|
|
43
57
|
trait :clinician do
|
|
44
58
|
given_name "Aneurin"
|
|
45
59
|
family_name "Bevan"
|
|
46
60
|
signature "Aneurin Bevan"
|
|
47
61
|
|
|
48
|
-
|
|
49
|
-
|
|
62
|
+
transient do
|
|
63
|
+
role :clinician
|
|
50
64
|
end
|
|
51
65
|
end
|
|
66
|
+
|
|
52
67
|
trait :read_only do
|
|
53
|
-
|
|
54
|
-
|
|
68
|
+
transient do
|
|
69
|
+
role :read_only
|
|
55
70
|
end
|
|
56
71
|
end
|
|
57
72
|
end
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
FactoryGirl.define do
|
|
2
2
|
factory :donor_stage, class: "Renalware::Transplants::DonorStage" do
|
|
3
|
+
accountable
|
|
3
4
|
patient
|
|
4
5
|
stage_position factory: :donor_stage_position
|
|
5
6
|
stage_status factory: :donor_stage_status
|
|
6
7
|
started_on ->{ Time.zone.now }
|
|
7
8
|
notes "Some notes"
|
|
8
9
|
terminated_on nil
|
|
9
|
-
association :created_by, factory: :user
|
|
10
|
-
association :updated_by, factory: :user
|
|
11
10
|
end
|
|
12
11
|
end
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
FactoryGirl.define do
|
|
2
|
-
factory :transplant_registration_status,
|
|
3
|
-
|
|
2
|
+
factory :transplant_registration_status, class: Renalware::Transplants::RegistrationStatus do
|
|
3
|
+
accountable
|
|
4
4
|
description { create(:transplant_registration_status_description) }
|
|
5
5
|
started_on Time.zone.today
|
|
6
|
-
association :created_by, factory: :user
|
|
7
|
-
association :updated_by, factory: :user
|
|
8
6
|
end
|
|
9
7
|
end
|
|
@@ -12,7 +12,7 @@ module LoginMacros
|
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
def login_user(role_trait = :super_admin)
|
|
15
|
-
user = create(:user,
|
|
15
|
+
user = create(:user, role_trait)
|
|
16
16
|
if @request.present? # eg for controller specs
|
|
17
17
|
@request.env["devise.mapping"] = Devise.mappings[:user]
|
|
18
18
|
sign_in user
|
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.0.pre.
|
|
4
|
+
version: 2.0.0.pre.beta8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Airslie
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-09-
|
|
11
|
+
date: 2017-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -1032,6 +1032,20 @@ dependencies:
|
|
|
1032
1032
|
- - ">="
|
|
1033
1033
|
- !ruby/object:Gem::Version
|
|
1034
1034
|
version: '0'
|
|
1035
|
+
- !ruby/object:Gem::Dependency
|
|
1036
|
+
name: pry-rails
|
|
1037
|
+
requirement: !ruby/object:Gem::Requirement
|
|
1038
|
+
requirements:
|
|
1039
|
+
- - ">="
|
|
1040
|
+
- !ruby/object:Gem::Version
|
|
1041
|
+
version: '0'
|
|
1042
|
+
type: :development
|
|
1043
|
+
prerelease: false
|
|
1044
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
1045
|
+
requirements:
|
|
1046
|
+
- - ">="
|
|
1047
|
+
- !ruby/object:Gem::Version
|
|
1048
|
+
version: '0'
|
|
1035
1049
|
- !ruby/object:Gem::Dependency
|
|
1036
1050
|
name: rspec-html-matchers
|
|
1037
1051
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1189,6 +1203,8 @@ files:
|
|
|
1189
1203
|
- app/assets/javascripts/renalware/problems.js
|
|
1190
1204
|
- app/assets/javascripts/renalware/renal.js
|
|
1191
1205
|
- app/assets/javascripts/renalware/reporting.js.erb
|
|
1206
|
+
- app/assets/javascripts/renalware/searchables.js
|
|
1207
|
+
- app/assets/javascripts/renalware/select2-ajax-search.js
|
|
1192
1208
|
- app/assets/javascripts/renalware/session_timeout_redirect.js.erb
|
|
1193
1209
|
- app/assets/javascripts/renalware/sortable.js
|
|
1194
1210
|
- app/assets/javascripts/renalware/tabs.js
|
|
@@ -1201,6 +1217,7 @@ files:
|
|
|
1201
1217
|
- app/assets/stylesheets/renalware/lib/_foundation_and_overrides.scss
|
|
1202
1218
|
- app/assets/stylesheets/renalware/lib/_select2-foundation5-overrides.scss
|
|
1203
1219
|
- app/assets/stylesheets/renalware/lib/_select2-foundation5.scss
|
|
1220
|
+
- app/assets/stylesheets/renalware/modules/_admissions.scss
|
|
1204
1221
|
- app/assets/stylesheets/renalware/modules/_clinical.scss
|
|
1205
1222
|
- app/assets/stylesheets/renalware/modules/_clinical_summaries.scss
|
|
1206
1223
|
- app/assets/stylesheets/renalware/modules/_clinics.scss
|
|
@@ -1220,6 +1237,7 @@ files:
|
|
|
1220
1237
|
- app/assets/stylesheets/renalware/modules/_reporting.scss
|
|
1221
1238
|
- app/assets/stylesheets/renalware/modules/_snippets.scss
|
|
1222
1239
|
- app/assets/stylesheets/renalware/modules/_transplants.scss
|
|
1240
|
+
- app/assets/stylesheets/renalware/partials/_animations.scss
|
|
1223
1241
|
- app/assets/stylesheets/renalware/partials/_autocomplete.scss
|
|
1224
1242
|
- app/assets/stylesheets/renalware/partials/_button.scss
|
|
1225
1243
|
- app/assets/stylesheets/renalware/partials/_clockpicker.scss
|
|
@@ -1260,6 +1278,7 @@ files:
|
|
|
1260
1278
|
- app/controllers/renalware/accesses/procedures_controller.rb
|
|
1261
1279
|
- app/controllers/renalware/accesses/profiles_controller.rb
|
|
1262
1280
|
- app/controllers/renalware/admin/users_controller.rb
|
|
1281
|
+
- app/controllers/renalware/admissions/requests_controller.rb
|
|
1263
1282
|
- app/controllers/renalware/api/ukrdc/patients_controller.rb
|
|
1264
1283
|
- app/controllers/renalware/base_controller.rb
|
|
1265
1284
|
- app/controllers/renalware/clinical/allergies_controller.rb
|
|
@@ -1278,6 +1297,7 @@ files:
|
|
|
1278
1297
|
- app/controllers/renalware/dashboard.rb
|
|
1279
1298
|
- app/controllers/renalware/dashboard/dashboards_controller.rb
|
|
1280
1299
|
- app/controllers/renalware/deaths_controller.rb
|
|
1300
|
+
- app/controllers/renalware/devise/passwords_controller.rb
|
|
1281
1301
|
- app/controllers/renalware/devise/registrations_controller.rb
|
|
1282
1302
|
- app/controllers/renalware/devise/sessions_controller.rb
|
|
1283
1303
|
- app/controllers/renalware/directory/people_controller.rb
|
|
@@ -1305,6 +1325,7 @@ files:
|
|
|
1305
1325
|
- app/controllers/renalware/letters/completed_letters_controller.rb
|
|
1306
1326
|
- app/controllers/renalware/letters/contacts_controller.rb
|
|
1307
1327
|
- app/controllers/renalware/letters/descriptions_controller.rb
|
|
1328
|
+
- app/controllers/renalware/letters/electronic_receipts_controller.rb
|
|
1308
1329
|
- app/controllers/renalware/letters/formatted_letters_controller.rb
|
|
1309
1330
|
- app/controllers/renalware/letters/letters_controller.rb
|
|
1310
1331
|
- app/controllers/renalware/letters/lists_controller.rb
|
|
@@ -1315,9 +1336,8 @@ files:
|
|
|
1315
1336
|
- app/controllers/renalware/medications/drug_types/prescriptions_controller.rb
|
|
1316
1337
|
- app/controllers/renalware/medications/prescriptions_controller.rb
|
|
1317
1338
|
- app/controllers/renalware/medications/terminations_controller.rb
|
|
1318
|
-
- app/controllers/renalware/messaging/messages_controller.rb
|
|
1319
|
-
- app/controllers/renalware/messaging/receipts_controller.rb
|
|
1320
|
-
- app/controllers/renalware/messaging/sent_messages_controller.rb
|
|
1339
|
+
- app/controllers/renalware/messaging/internal/messages_controller.rb
|
|
1340
|
+
- app/controllers/renalware/messaging/internal/receipts_controller.rb
|
|
1321
1341
|
- app/controllers/renalware/modalities/descriptions_controller.rb
|
|
1322
1342
|
- app/controllers/renalware/modalities/modalities_controller.rb
|
|
1323
1343
|
- app/controllers/renalware/modalities/reasons_controller.rb
|
|
@@ -1500,6 +1520,9 @@ files:
|
|
|
1500
1520
|
- app/models/renalware/accesses/site.rb
|
|
1501
1521
|
- app/models/renalware/accesses/type.rb
|
|
1502
1522
|
- app/models/renalware/accesses/version.rb
|
|
1523
|
+
- app/models/renalware/admissions.rb
|
|
1524
|
+
- app/models/renalware/admissions/request.rb
|
|
1525
|
+
- app/models/renalware/admissions/request_reason.rb
|
|
1503
1526
|
- app/models/renalware/clinical.rb
|
|
1504
1527
|
- app/models/renalware/clinical/allergy.rb
|
|
1505
1528
|
- app/models/renalware/clinical/allergy_status_form.rb
|
|
@@ -1594,6 +1617,8 @@ files:
|
|
|
1594
1617
|
- app/models/renalware/letters/determine_counterpart_ccs.rb
|
|
1595
1618
|
- app/models/renalware/letters/discharge_summary.rb
|
|
1596
1619
|
- app/models/renalware/letters/draft_letter.rb
|
|
1620
|
+
- app/models/renalware/letters/electronic_receipt.rb
|
|
1621
|
+
- app/models/renalware/letters/electronic_recipient_options.rb
|
|
1597
1622
|
- app/models/renalware/letters/event.rb
|
|
1598
1623
|
- app/models/renalware/letters/event/clinic_visit.rb
|
|
1599
1624
|
- app/models/renalware/letters/event/unknown.rb
|
|
@@ -1639,16 +1664,17 @@ files:
|
|
|
1639
1664
|
- app/models/renalware/medications/revise_prescription.rb
|
|
1640
1665
|
- app/models/renalware/medications/terminate_all_patient_prescriptions.rb
|
|
1641
1666
|
- app/models/renalware/messaging.rb
|
|
1642
|
-
- app/models/renalware/messaging/author.rb
|
|
1667
|
+
- app/models/renalware/messaging/internal/author.rb
|
|
1668
|
+
- app/models/renalware/messaging/internal/message.rb
|
|
1669
|
+
- app/models/renalware/messaging/internal/message_factory.rb
|
|
1670
|
+
- app/models/renalware/messaging/internal/message_form.rb
|
|
1671
|
+
- app/models/renalware/messaging/internal/message_form_builder.rb
|
|
1672
|
+
- app/models/renalware/messaging/internal/receipt.rb
|
|
1673
|
+
- app/models/renalware/messaging/internal/recipient.rb
|
|
1674
|
+
- app/models/renalware/messaging/internal/recipient_options.rb
|
|
1675
|
+
- app/models/renalware/messaging/internal/send_message.rb
|
|
1643
1676
|
- app/models/renalware/messaging/message.rb
|
|
1644
|
-
- app/models/renalware/messaging/message_factory.rb
|
|
1645
|
-
- app/models/renalware/messaging/message_form.rb
|
|
1646
|
-
- app/models/renalware/messaging/message_form_builder.rb
|
|
1647
1677
|
- app/models/renalware/messaging/patient.rb
|
|
1648
|
-
- app/models/renalware/messaging/receipt.rb
|
|
1649
|
-
- app/models/renalware/messaging/recipient.rb
|
|
1650
|
-
- app/models/renalware/messaging/recipient_options.rb
|
|
1651
|
-
- app/models/renalware/messaging/send_message.rb
|
|
1652
1678
|
- app/models/renalware/modalities.rb
|
|
1653
1679
|
- app/models/renalware/modalities/change_patient_modality.rb
|
|
1654
1680
|
- app/models/renalware/modalities/change_type.rb
|
|
@@ -1739,6 +1765,8 @@ files:
|
|
|
1739
1765
|
- app/models/renalware/patients/practice_search_query.rb
|
|
1740
1766
|
- app/models/renalware/patients/primary_care_physician.rb
|
|
1741
1767
|
- app/models/renalware/patients/religion.rb
|
|
1768
|
+
- app/models/renalware/patients/search_filter.rb
|
|
1769
|
+
- app/models/renalware/patients/search_form.rb
|
|
1742
1770
|
- app/models/renalware/patients/search_query.rb
|
|
1743
1771
|
- app/models/renalware/patients/summary.rb
|
|
1744
1772
|
- app/models/renalware/patients/user.rb
|
|
@@ -1829,6 +1857,7 @@ files:
|
|
|
1829
1857
|
- app/models/renalware/user.rb
|
|
1830
1858
|
- app/models/renalware/version.rb
|
|
1831
1859
|
- app/policies/application_policy.rb
|
|
1860
|
+
- app/policies/renalware/admissions/request_policy.rb
|
|
1832
1861
|
- app/policies/renalware/base_policy.rb
|
|
1833
1862
|
- app/policies/renalware/clinical/allergy_policy.rb
|
|
1834
1863
|
- app/policies/renalware/clinical/body_composition_policy.rb
|
|
@@ -1847,10 +1876,11 @@ files:
|
|
|
1847
1876
|
- app/policies/renalware/letters/approved_letter_policy.rb
|
|
1848
1877
|
- app/policies/renalware/letters/completed_letter_policy.rb
|
|
1849
1878
|
- app/policies/renalware/letters/draft_letter_policy.rb
|
|
1879
|
+
- app/policies/renalware/letters/electronic_receipt_policy.rb
|
|
1850
1880
|
- app/policies/renalware/letters/letter_policy.rb
|
|
1851
1881
|
- app/policies/renalware/letters/pending_review_letter_policy.rb
|
|
1852
|
-
- app/policies/renalware/messaging/message_policy.rb
|
|
1853
|
-
- app/policies/renalware/messaging/receipt_policy.rb
|
|
1882
|
+
- app/policies/renalware/messaging/internal/message_policy.rb
|
|
1883
|
+
- app/policies/renalware/messaging/internal/receipt_policy.rb
|
|
1854
1884
|
- app/policies/renalware/modalities/description_policy.rb
|
|
1855
1885
|
- app/policies/renalware/pathology/requests/global_rule_set_policy.rb
|
|
1856
1886
|
- app/policies/renalware/pathology/requests/request_policy.rb
|
|
@@ -1910,6 +1940,7 @@ files:
|
|
|
1910
1940
|
- app/presenters/renalware/letters/contact_description_presenter.rb
|
|
1911
1941
|
- app/presenters/renalware/letters/contact_presenter.rb
|
|
1912
1942
|
- app/presenters/renalware/letters/contacts_presenter.rb
|
|
1943
|
+
- app/presenters/renalware/letters/electronic_receipt_presenter.rb
|
|
1913
1944
|
- app/presenters/renalware/letters/letter_form_presenter.rb
|
|
1914
1945
|
- app/presenters/renalware/letters/letter_presenter.rb
|
|
1915
1946
|
- app/presenters/renalware/letters/letter_presenter_factory.rb
|
|
@@ -1921,8 +1952,8 @@ files:
|
|
|
1921
1952
|
- app/presenters/renalware/medications/provider_code_presenter.rb
|
|
1922
1953
|
- app/presenters/renalware/medications/route_form_presenter.rb
|
|
1923
1954
|
- app/presenters/renalware/medications/treatable_presenter.rb
|
|
1924
|
-
- app/presenters/renalware/messaging/
|
|
1925
|
-
- app/presenters/renalware/messaging/receipt_presenter.rb
|
|
1955
|
+
- app/presenters/renalware/messaging/internal/message_presenter.rb
|
|
1956
|
+
- app/presenters/renalware/messaging/internal/receipt_presenter.rb
|
|
1926
1957
|
- app/presenters/renalware/pathology/current_observation_results/html_table_view.rb
|
|
1927
1958
|
- app/presenters/renalware/pathology/current_observation_results/presenter.rb
|
|
1928
1959
|
- app/presenters/renalware/pathology/historical_observation_results/html_table_view.rb
|
|
@@ -2011,6 +2042,19 @@ files:
|
|
|
2011
2042
|
- app/views/renalware/admin/user_mailer/unexpiry.text.erb
|
|
2012
2043
|
- app/views/renalware/admin/users/edit.html.slim
|
|
2013
2044
|
- app/views/renalware/admin/users/index.html.slim
|
|
2045
|
+
- app/views/renalware/admissions/requests/_create_request_link.html.slim
|
|
2046
|
+
- app/views/renalware/admissions/requests/_form.html.slim
|
|
2047
|
+
- app/views/renalware/admissions/requests/_modal_dialog_placeholder.html.slim
|
|
2048
|
+
- app/views/renalware/admissions/requests/_request.html.slim
|
|
2049
|
+
- app/views/renalware/admissions/requests/_table.html.slim
|
|
2050
|
+
- app/views/renalware/admissions/requests/create.js.erb
|
|
2051
|
+
- app/views/renalware/admissions/requests/destroy.js.erb
|
|
2052
|
+
- app/views/renalware/admissions/requests/edit.html.slim
|
|
2053
|
+
- app/views/renalware/admissions/requests/edit.js.erb
|
|
2054
|
+
- app/views/renalware/admissions/requests/index.html.slim
|
|
2055
|
+
- app/views/renalware/admissions/requests/new.html.slim
|
|
2056
|
+
- app/views/renalware/admissions/requests/new.js.erb
|
|
2057
|
+
- app/views/renalware/admissions/requests/update.js.erb
|
|
2014
2058
|
- app/views/renalware/api/ukrdc/patients/_address.xml.builder
|
|
2015
2059
|
- app/views/renalware/api/ukrdc/patients/_allergies.xml.builder
|
|
2016
2060
|
- app/views/renalware/api/ukrdc/patients/_clinic_visit_observation.xml.builder
|
|
@@ -2027,6 +2071,8 @@ files:
|
|
|
2027
2071
|
- app/views/renalware/api/ukrdc/patients/_sending_facility.xml.builder
|
|
2028
2072
|
- app/views/renalware/api/ukrdc/patients/_social_histories.xml.builder
|
|
2029
2073
|
- app/views/renalware/api/ukrdc/patients/_surveys.xml.builder
|
|
2074
|
+
- app/views/renalware/api/ukrdc/patients/lab_orders/_lab_order.xml.builder
|
|
2075
|
+
- app/views/renalware/api/ukrdc/patients/lab_orders/_result_item.xml.builder
|
|
2030
2076
|
- app/views/renalware/api/ukrdc/patients/observations/_blood_pressure.xml.builder
|
|
2031
2077
|
- app/views/renalware/api/ukrdc/patients/observations/_standing_blood_pressure.xml.builder
|
|
2032
2078
|
- app/views/renalware/api/ukrdc/patients/observations/_weight.xml.builder
|
|
@@ -2077,9 +2123,11 @@ files:
|
|
|
2077
2123
|
- app/views/renalware/dashboard/letters/_table.html.slim
|
|
2078
2124
|
- app/views/renalware/deaths/edit.html.slim
|
|
2079
2125
|
- app/views/renalware/deaths/index.html.slim
|
|
2126
|
+
- app/views/renalware/devise/passwords/edit.html.erb
|
|
2127
|
+
- app/views/renalware/devise/passwords/new.html.erb
|
|
2080
2128
|
- app/views/renalware/devise/registrations/_navigation.html.slim
|
|
2081
2129
|
- app/views/renalware/devise/registrations/edit.html.slim
|
|
2082
|
-
- app/views/renalware/devise/registrations/new.html.
|
|
2130
|
+
- app/views/renalware/devise/registrations/new.html.slim
|
|
2083
2131
|
- app/views/renalware/devise/sessions/new.html.slim
|
|
2084
2132
|
- app/views/renalware/directory/people/_address_form.html.slim
|
|
2085
2133
|
- app/views/renalware/directory/people/_filters.html.slim
|
|
@@ -2221,6 +2269,11 @@ files:
|
|
|
2221
2269
|
- app/views/renalware/letters/contacts/_table.html.slim
|
|
2222
2270
|
- app/views/renalware/letters/contacts/index.html.slim
|
|
2223
2271
|
- app/views/renalware/letters/contacts/index.js.erb
|
|
2272
|
+
- app/views/renalware/letters/electronic_receipts/_table.html.slim
|
|
2273
|
+
- app/views/renalware/letters/electronic_receipts/mark_as_read.js.erb
|
|
2274
|
+
- app/views/renalware/letters/electronic_receipts/read.html.slim
|
|
2275
|
+
- app/views/renalware/letters/electronic_receipts/sent.html.slim
|
|
2276
|
+
- app/views/renalware/letters/electronic_receipts/unread.html.slim
|
|
2224
2277
|
- app/views/renalware/letters/formatted_letters/_letter.html.slim
|
|
2225
2278
|
- app/views/renalware/letters/formatted_letters/_patient_summary.html.slim
|
|
2226
2279
|
- app/views/renalware/letters/formatted_letters/show.html.slim
|
|
@@ -2232,6 +2285,7 @@ files:
|
|
|
2232
2285
|
- app/views/renalware/letters/letters/_additional_ccs.html.slim
|
|
2233
2286
|
- app/views/renalware/letters/letters/_cc_recipient_form.html.slim
|
|
2234
2287
|
- app/views/renalware/letters/letters/_create_letter_button_dropdown.html.slim
|
|
2288
|
+
- app/views/renalware/letters/letters/_electronic_ccs.html.slim
|
|
2235
2289
|
- app/views/renalware/letters/letters/_form.html.slim
|
|
2236
2290
|
- app/views/renalware/letters/letters/_letter.html.slim
|
|
2237
2291
|
- app/views/renalware/letters/letters/_main_recipient.html.slim
|
|
@@ -2252,6 +2306,7 @@ files:
|
|
|
2252
2306
|
- app/views/renalware/letters/parts/_prescriptions.html.slim
|
|
2253
2307
|
- app/views/renalware/letters/parts/_problems.html.slim
|
|
2254
2308
|
- app/views/renalware/letters/parts/_recent_pathology_results.html.slim
|
|
2309
|
+
- app/views/renalware/letters/shared/_electronic_cc_type_tabs.html.slim
|
|
2255
2310
|
- app/views/renalware/mdm/_biopsies.html.slim
|
|
2256
2311
|
- app/views/renalware/mdm/_clinic_visits.html.slim
|
|
2257
2312
|
- app/views/renalware/mdm/_events.html.slim
|
|
@@ -2287,21 +2342,21 @@ files:
|
|
|
2287
2342
|
- app/views/renalware/medications/prescriptions/index.pdf.slim
|
|
2288
2343
|
- app/views/renalware/medications/terminations/_form.html.slim
|
|
2289
2344
|
- app/views/renalware/medications/terminations/form.js.erb
|
|
2290
|
-
- app/views/renalware/messaging/messages/_form.html.slim
|
|
2291
|
-
- app/views/renalware/messaging/messages/
|
|
2292
|
-
- app/views/renalware/messaging/messages/
|
|
2293
|
-
- app/views/renalware/messaging/messages/
|
|
2294
|
-
- app/views/renalware/messaging/messages/
|
|
2295
|
-
- app/views/renalware/messaging/messages/
|
|
2296
|
-
- app/views/renalware/messaging/messages/
|
|
2297
|
-
- app/views/renalware/messaging/
|
|
2298
|
-
- app/views/renalware/messaging/
|
|
2299
|
-
- app/views/renalware/messaging/
|
|
2300
|
-
- app/views/renalware/messaging/receipts/
|
|
2301
|
-
- app/views/renalware/messaging/receipts/
|
|
2302
|
-
- app/views/renalware/messaging/receipts/
|
|
2303
|
-
- app/views/renalware/messaging/receipts/
|
|
2304
|
-
- app/views/renalware/messaging/receipts/unread.html.slim
|
|
2345
|
+
- app/views/renalware/messaging/internal/messages/_form.html.slim
|
|
2346
|
+
- app/views/renalware/messaging/internal/messages/_modal_dialog_placeholder.html.slim
|
|
2347
|
+
- app/views/renalware/messaging/internal/messages/_send_message_link.html.slim
|
|
2348
|
+
- app/views/renalware/messaging/internal/messages/_send_reply_link.html.slim
|
|
2349
|
+
- app/views/renalware/messaging/internal/messages/create.js.erb
|
|
2350
|
+
- app/views/renalware/messaging/internal/messages/new.html.slim
|
|
2351
|
+
- app/views/renalware/messaging/internal/messages/new.js.erb
|
|
2352
|
+
- app/views/renalware/messaging/internal/receipts/_receipt.html.slim
|
|
2353
|
+
- app/views/renalware/messaging/internal/receipts/_sent_receipt.html.slim
|
|
2354
|
+
- app/views/renalware/messaging/internal/receipts/_sent_table.html.slim
|
|
2355
|
+
- app/views/renalware/messaging/internal/receipts/_table.html.slim
|
|
2356
|
+
- app/views/renalware/messaging/internal/receipts/mark_as_read.js.erb
|
|
2357
|
+
- app/views/renalware/messaging/internal/receipts/read.html.slim
|
|
2358
|
+
- app/views/renalware/messaging/internal/receipts/sent.html.slim
|
|
2359
|
+
- app/views/renalware/messaging/internal/receipts/unread.html.slim
|
|
2305
2360
|
- app/views/renalware/messaging/shared/_key.html.slim
|
|
2306
2361
|
- app/views/renalware/messaging/shared/_messages_type_tabs.html.slim
|
|
2307
2362
|
- app/views/renalware/modalities/descriptions/_form.html.slim
|
|
@@ -2361,6 +2416,7 @@ files:
|
|
|
2361
2416
|
- app/views/renalware/patients/_mini_profile.html.slim
|
|
2362
2417
|
- app/views/renalware/patients/_person_form_fields.html.slim
|
|
2363
2418
|
- app/views/renalware/patients/_prescriptions.html.slim.dead
|
|
2419
|
+
- app/views/renalware/patients/_search_form.html.slim
|
|
2364
2420
|
- app/views/renalware/patients/_side_menu.html.slim
|
|
2365
2421
|
- app/views/renalware/patients/alerts/_alert.html.slim
|
|
2366
2422
|
- app/views/renalware/patients/alerts/_create_alert_link.html.slim
|
|
@@ -2524,6 +2580,7 @@ files:
|
|
|
2524
2580
|
- app/views/renalware/shared/_flash_messages.html.slim
|
|
2525
2581
|
- app/views/renalware/shared/_last_update.html.slim
|
|
2526
2582
|
- app/views/renalware/shared/_magellan_block.html.slim
|
|
2583
|
+
- app/views/renalware/shared/_modal_close_link.html.slim
|
|
2527
2584
|
- app/views/renalware/shared/documents/_age.html.slim
|
|
2528
2585
|
- app/views/renalware/shared/documents/_age_input.html.slim
|
|
2529
2586
|
- app/views/renalware/shared/documents/_attributes_group.html.slim
|
|
@@ -2554,7 +2611,6 @@ files:
|
|
|
2554
2611
|
- app/views/renalware/snippets/snippet_invocations/create.js.erb
|
|
2555
2612
|
- app/views/renalware/snippets/snippets/_form.html.slim
|
|
2556
2613
|
- app/views/renalware/snippets/snippets/_list.html.slim
|
|
2557
|
-
- app/views/renalware/snippets/snippets/_modal_close_link.html.slim
|
|
2558
2614
|
- app/views/renalware/snippets/snippets/_row.html.slim
|
|
2559
2615
|
- app/views/renalware/snippets/snippets/_search_form.html.slim
|
|
2560
2616
|
- app/views/renalware/snippets/snippets/_table.html.slim
|
|
@@ -2676,6 +2732,7 @@ files:
|
|
|
2676
2732
|
- config/locales/renalware/accesses/procedure.yml
|
|
2677
2733
|
- config/locales/renalware/accesses/profile.yml
|
|
2678
2734
|
- config/locales/renalware/address.yml
|
|
2735
|
+
- config/locales/renalware/admissions/requests.en.yml
|
|
2679
2736
|
- config/locales/renalware/age.yml
|
|
2680
2737
|
- config/locales/renalware/blood_group.en.yml
|
|
2681
2738
|
- config/locales/renalware/blood_pressure.en.yml
|
|
@@ -2708,7 +2765,7 @@ files:
|
|
|
2708
2765
|
- config/locales/renalware/medications/prescription.yml
|
|
2709
2766
|
- config/locales/renalware/medications/prescriptions/drug_select.en.yml
|
|
2710
2767
|
- config/locales/renalware/medications/route.yml
|
|
2711
|
-
- config/locales/renalware/messaging/messages.en.yml
|
|
2768
|
+
- config/locales/renalware/messaging/internal/messages.en.yml
|
|
2712
2769
|
- config/locales/renalware/modalities/modalities.en.yml
|
|
2713
2770
|
- config/locales/renalware/navigation/patient_search.en.yml
|
|
2714
2771
|
- config/locales/renalware/navigation/renal.en.yml
|
|
@@ -2717,6 +2774,7 @@ files:
|
|
|
2717
2774
|
- config/locales/renalware/patients/alerts.en.yml
|
|
2718
2775
|
- config/locales/renalware/patients/bookmarks.en.yml
|
|
2719
2776
|
- config/locales/renalware/patients/patients.en.yml
|
|
2777
|
+
- config/locales/renalware/patients/search_form.en.yml
|
|
2720
2778
|
- config/locales/renalware/patients/side_menu.en.yml
|
|
2721
2779
|
- config/locales/renalware/patients/worries.en.yml
|
|
2722
2780
|
- config/locales/renalware/pd/assessments.en.yml
|
|
@@ -3009,6 +3067,11 @@ files:
|
|
|
3009
3067
|
- db/migrate/20170824113401_add_stations_to_hospital_units.rb
|
|
3010
3068
|
- db/migrate/20170830085137_create_hd_unit_stations.rb
|
|
3011
3069
|
- db/migrate/20170830171726_create_hd_diurnal_period_codes.rb
|
|
3070
|
+
- db/migrate/20170908155011_add_shortfall_column_to_hd_patient_statistics.rb
|
|
3071
|
+
- db/migrate/20170908160250_update_hd_overall_audit_to_version4.rb
|
|
3072
|
+
- db/migrate/20170911133224_add_type_to_messaging_messages.rb
|
|
3073
|
+
- db/migrate/20170912092135_create_letters_electronic_receipts.rb
|
|
3074
|
+
- db/migrate/20170920113628_create_admissions_requests.rb
|
|
3012
3075
|
- db/seeds.rb
|
|
3013
3076
|
- db/seeds/default/accesses/access_pd_catheter_insertion_techniques.csv
|
|
3014
3077
|
- db/seeds/default/accesses/access_pd_catheter_insertion_techniques.rb
|
|
@@ -3114,6 +3177,7 @@ files:
|
|
|
3114
3177
|
- db/views/reporting_hd_blood_pressures_audit_v01.sql
|
|
3115
3178
|
- db/views/reporting_hd_overall_audit_v01.sql
|
|
3116
3179
|
- db/views/reporting_hd_overall_audit_v02.sql
|
|
3180
|
+
- db/views/reporting_hd_overall_audit_v04.sql
|
|
3117
3181
|
- db/views/reporting_main_authors_audit_v01.sql
|
|
3118
3182
|
- db/views/reporting_main_authors_audit_v02.sql
|
|
3119
3183
|
- lib/age_calculator.rb
|
|
@@ -3168,6 +3232,8 @@ files:
|
|
|
3168
3232
|
- spec/factories/accesses/profiles.rb
|
|
3169
3233
|
- spec/factories/accesses/sites.rb
|
|
3170
3234
|
- spec/factories/accesses/types.rb
|
|
3235
|
+
- spec/factories/admissions/request_reasons.rb
|
|
3236
|
+
- spec/factories/admissions/requests.rb
|
|
3171
3237
|
- spec/factories/clinical/allergies.rb
|
|
3172
3238
|
- spec/factories/clinical/body_compositions.rb
|
|
3173
3239
|
- spec/factories/clinical/dry_weights.rb
|
|
@@ -3198,6 +3264,7 @@ files:
|
|
|
3198
3264
|
- spec/factories/letters/contact_descriptions.rb
|
|
3199
3265
|
- spec/factories/letters/contacts.rb
|
|
3200
3266
|
- spec/factories/letters/descriptions.rb
|
|
3267
|
+
- spec/factories/letters/electronic_receipts.rb
|
|
3201
3268
|
- spec/factories/letters/letterheads.rb
|
|
3202
3269
|
- spec/factories/letters/letters.rb
|
|
3203
3270
|
- spec/factories/letters/patients.rb
|
|
@@ -3207,11 +3274,11 @@ files:
|
|
|
3207
3274
|
- spec/factories/medications/prescription.rb
|
|
3208
3275
|
- spec/factories/medications/prescription_terminations.rb
|
|
3209
3276
|
- spec/factories/medications/prescription_version.rb
|
|
3210
|
-
- spec/factories/messaging/authors.rb
|
|
3211
|
-
- spec/factories/messaging/
|
|
3277
|
+
- spec/factories/messaging/internal/authors.rb
|
|
3278
|
+
- spec/factories/messaging/internal/messages.rb
|
|
3279
|
+
- spec/factories/messaging/internal/receipts.rb
|
|
3280
|
+
- spec/factories/messaging/internal/recipients.rb
|
|
3212
3281
|
- spec/factories/messaging/patients.rb
|
|
3213
|
-
- spec/factories/messaging/receipt.rb
|
|
3214
|
-
- spec/factories/messaging/recipients.rb
|
|
3215
3282
|
- spec/factories/modalities/modalities.rb
|
|
3216
3283
|
- spec/factories/modalities/modality_descriptions.rb
|
|
3217
3284
|
- spec/factories/modalities/modality_reasons.rb
|
|
@@ -3260,6 +3327,7 @@ files:
|
|
|
3260
3327
|
- spec/factories/renal/prd_description.rb
|
|
3261
3328
|
- spec/factories/renal/profiles.rb
|
|
3262
3329
|
- spec/factories/reporting/audits.rb
|
|
3330
|
+
- spec/factories/shared/accountable.rb
|
|
3263
3331
|
- spec/factories/snippets/snippets.rb
|
|
3264
3332
|
- spec/factories/snippets/users.rb
|
|
3265
3333
|
- spec/factories/system/addresses.rb
|
|
@@ -3337,7 +3405,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
3337
3405
|
version: 1.3.1
|
|
3338
3406
|
requirements: []
|
|
3339
3407
|
rubyforge_project:
|
|
3340
|
-
rubygems_version: 2.6.
|
|
3408
|
+
rubygems_version: 2.6.13
|
|
3341
3409
|
signing_key:
|
|
3342
3410
|
specification_version: 4
|
|
3343
3411
|
summary: Renalware core functionality as a mountable engine.
|