renalware-core 2.0.160 → 2.0.165
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/rollup_compiled.js +768 -201
- data/app/assets/stylesheets/renalware/modules/_clinical.scss +28 -0
- data/app/assets/stylesheets/renalware/partials/_tables.scss +6 -0
- data/app/components/renalware/medications/tabbed_prescriptions_list_component.html.slim +2 -2
- data/app/components/renalware/pathology/sparkline_component.html.slim +1 -1
- data/app/components/renalware/pd/pet_results_component.html.slim +4 -4
- data/app/components/renalware/system/admin_menu_component.html.slim +1 -0
- data/app/controllers/renalware/virology/vaccination_types_controller.rb +69 -0
- data/app/javascript/renalware/controllers/modal_controller.js +1 -1
- data/app/models/renalware/events/alertable_events_query.rb +27 -0
- data/app/models/renalware/events/event.rb +4 -0
- data/app/models/renalware/events/event_type_alert_trigger.rb +15 -0
- data/app/models/renalware/events/type.rb +7 -0
- data/app/models/renalware/letters/pdf_letter_cache.rb +1 -1
- data/app/models/renalware/virology/vaccination.rb +10 -2
- data/app/models/renalware/virology/vaccination_type.rb +38 -0
- data/app/views/renalware/admin/cache/show.html.slim +0 -36
- data/app/views/renalware/admin/playgrounds/show.html.slim +2 -2
- data/app/views/renalware/events/events/_alerts.html.slim +3 -0
- data/app/views/renalware/events/events/alert/_simple.html.slim +5 -0
- data/app/views/renalware/events/events/toggled_cell/_swab.html.slim +1 -1
- data/app/views/renalware/hd/dashboards/_page_actions.html.slim +4 -1
- data/app/views/renalware/hd/mdm_patients/_patient.html.slim +1 -1
- data/app/views/renalware/hd/prescription_administrations/_form.html.slim +2 -2
- data/app/views/renalware/hd/transmission_logs/index.html.slim +2 -1
- data/app/views/renalware/layouts/_patient.html.slim +1 -0
- data/app/views/renalware/letters/batches/_create.html.slim +2 -2
- data/app/views/renalware/medications/home_delivery/events/_edit.html.slim +4 -4
- data/app/views/renalware/medications/prescriptions/_form.html.slim +3 -3
- data/app/views/renalware/system/downloads/index.html.slim +1 -1
- data/app/views/renalware/system/messages/_form.html.slim +1 -1
- data/app/views/renalware/system/view_metadata/edit.html.slim +6 -6
- data/app/views/renalware/virology/vaccination_types/_form.html.slim +10 -0
- data/app/views/renalware/virology/vaccination_types/edit.html.slim +3 -0
- data/app/views/renalware/virology/vaccination_types/index.html.slim +42 -0
- data/app/views/renalware/virology/vaccination_types/new.html.slim +3 -0
- data/app/views/renalware/virology/vaccinations/_alert.html.slim +5 -0
- data/app/views/renalware/virology/vaccinations/_inputs.html.slim +2 -1
- data/app/views/renalware/virology/vaccinations/_toggled_cell.html.slim +1 -1
- data/config/permissions.yml +1 -0
- data/config/routes/virology.rb +6 -0
- data/db/migrate/20210105163944_create_virology_vaccination_types.rb +13 -0
- data/db/migrate/20210115181817_create_event_type_alert_triggers.rb +15 -0
- data/db/seeds/default/seeds.rb +1 -0
- data/db/seeds/default/virology/seeds.rb +3 -0
- data/db/seeds/default/virology/vaccination_types.rb +25 -0
- data/lib/renalware/version_number.rb +1 -1
- data/spec/factories/virology/vaccination_types.rb +8 -0
- metadata +23 -7
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
= fpa.input :prescription_id, as: :hidden
|
18
18
|
|
19
|
-
.hd-drug-administration(data-
|
19
|
+
.hd-drug-administration(data-hd-prescription-administration-target="container")
|
20
20
|
.summary
|
21
21
|
.hd-drug
|
22
22
|
.hd-drug--name= prescription.drug_name
|
@@ -40,7 +40,7 @@
|
|
40
40
|
label: false,
|
41
41
|
input_html: { \
|
42
42
|
data: { \
|
43
|
-
|
43
|
+
"hd-prescription-administration-target" => "radio",
|
44
44
|
action: "change->hd-prescription-administration#toggleAdministered",
|
45
45
|
} \
|
46
46
|
}
|
@@ -30,7 +30,8 @@
|
|
30
30
|
= link_to "...",
|
31
31
|
hd_transmission_log_path(log, format: :xml),
|
32
32
|
class: "button small_ellipsis_button",
|
33
|
-
target: "_blank"
|
33
|
+
target: "_blank",
|
34
|
+
rel: "noopener"
|
34
35
|
td
|
35
36
|
span(title=log.filepath)
|
36
37
|
- filename = log.filepath && Pathname(log.filepath).basename
|
@@ -17,6 +17,7 @@ nav.patient-side-nav.full-screenable
|
|
17
17
|
ul
|
18
18
|
= render "renalware/patients/alerts/list", patient: current_patient
|
19
19
|
= render "renalware/research/alerts", patient: current_patient
|
20
|
+
= render "renalware/events/events/alerts", patient: current_patient
|
20
21
|
= render "renalware/clinical/header", patient: current_patient
|
21
22
|
.row.collapse
|
22
23
|
- if local_assigns[:title].present?
|
@@ -4,14 +4,14 @@
|
|
4
4
|
.percent_complete
|
5
5
|
.modal__body
|
6
6
|
.content
|
7
|
-
.batch_results_container(data={"poll-url" => renalware.letters_batch_status_path(batch)})
|
7
|
+
.batch_results_container(data={ "poll-url" => renalware.letters_batch_status_path(batch) })
|
8
8
|
.preparing
|
9
9
|
= image_tag("renalware/loading-gears-animation.gif", height: "116")
|
10
10
|
|
11
|
-
|
12
11
|
.generated-batch-print-pdf-container(style="display:none")
|
13
12
|
= link_to letters_batch_path(batch, format: :pdf),
|
14
13
|
target: "_blank",
|
14
|
+
rel: "noopener",
|
15
15
|
class: "print-batch-letter",
|
16
16
|
data: { "modal-url" => new_letters_batch_completion_path(batch) } do
|
17
17
|
i.far.fa-check-circle
|
@@ -7,7 +7,7 @@
|
|
7
7
|
remote: true,
|
8
8
|
authenticity_token: true,
|
9
9
|
method: :patch,
|
10
|
-
data: {
|
10
|
+
data: { "home-delivery-modal-target" => "form" },
|
11
11
|
as: :event) do |f|
|
12
12
|
|
13
13
|
.modal__header
|
@@ -24,7 +24,7 @@
|
|
24
24
|
/ - the first is initially displayed and has the print options and a print button
|
25
25
|
/ - the second is displayed once Print has been clicked, and asked asks for feedback as to
|
26
26
|
/ whether printing was successful or not. It it was successful we set
|
27
|
-
.form-fields data-
|
27
|
+
.form-fields data-home-delivery-modal-target="printOptions"
|
28
28
|
- homecare_forms = Renalware::Drugs::HomecareForm.all
|
29
29
|
= f.association :drug_type,
|
30
30
|
collection: Renalware::Drugs::Type.where(id: homecare_forms.map(&:drug_type_id)),
|
@@ -32,7 +32,7 @@
|
|
32
32
|
input_html: { \
|
33
33
|
data: { \
|
34
34
|
action: "change->home-delivery-modal#refreshForm", \
|
35
|
-
|
35
|
+
"home-delivery-modal-target" => "drugtype" \
|
36
36
|
} \
|
37
37
|
},
|
38
38
|
wrapper: :horizontal_medium
|
@@ -59,7 +59,7 @@
|
|
59
59
|
data: { action: "click->home-delivery-modal#askForPrintFeedback" },
|
60
60
|
**disabled_args
|
61
61
|
|
62
|
-
.show-after-printing.visuallyhidden data-
|
62
|
+
.show-after-printing.visuallyhidden data-home-delivery-modal-target="printFeedback"
|
63
63
|
|
64
64
|
h2 Was printing successful?
|
65
65
|
.right
|
@@ -38,16 +38,16 @@ ruby:
|
|
38
38
|
required: false,
|
39
39
|
wrapper: :horizontal_datepicker
|
40
40
|
|
41
|
-
span(data-target= "
|
41
|
+
span(data-prescriptions-target= "providers")
|
42
42
|
= f.input :provider,
|
43
43
|
collection: provider_codes,
|
44
44
|
as: :inline_radio_buttons,
|
45
45
|
label_method: :to_label,
|
46
46
|
wrapper: :horizontal_medium,
|
47
|
-
input_html: { data: { action: "change->prescriptions#toggleDeliveryDates", target
|
47
|
+
input_html: { data: { action: "change->prescriptions#toggleDeliveryDates", "prescriptions.target" => "providers"} }
|
48
48
|
|
49
49
|
/ Only show this if home_delivery provider is active/selected. See prescriptions stimulus controller.
|
50
|
-
.home_delivery_dates(style="display:none" data-target="
|
50
|
+
.home_delivery_dates(style="display:none" data-prescriptions-target="homeDeliveryDates")
|
51
51
|
.row
|
52
52
|
.small-12.medium-4.large-3.columns
|
53
53
|
.small-12.medium-8.large-9.columns
|
@@ -22,7 +22,7 @@
|
|
22
22
|
- items.each do |item|
|
23
23
|
.download
|
24
24
|
.file
|
25
|
-
= link_to(system_download_path(item), target: "_blank") do
|
25
|
+
= link_to(system_download_path(item), target: "_blank", rel: "noopener") do
|
26
26
|
i.far.fa-file-alt
|
27
27
|
.details
|
28
28
|
h3= link_to(item.name, system_download_path(item), target: "_blank")
|
@@ -38,18 +38,18 @@ ruby:
|
|
38
38
|
/ Tabs - see also js stimulus tabs-controller
|
39
39
|
div(data-controller="tabs" data-tabs-active-tab="-mb-px border-l border-t border-r rounded-t")
|
40
40
|
ul.list-reset.flex.border-b.ml-0
|
41
|
-
li.-mb-px.mr-1(data-target="
|
41
|
+
li.-mb-px.mr-1(data-tabs-target="tab" data-action="click->tabs#change")
|
42
42
|
a.bg-white.inline-block.py-2.px-4.text-blue-500.hover:text-blue-700.font-semibold.no-underline(href="#") Columns
|
43
|
-
li.-mb-px.mr-1(data-target="
|
43
|
+
li.-mb-px.mr-1(data-tabs-target="tab" data-action="click->tabs#change")
|
44
44
|
a.bg-white.inline-block.py-2.px-4.text-blue-500.hover:text-blue-700.font-semibold.no-underline(href="#") Filters
|
45
|
-
li.-mb-px.mr-1(data-target="
|
45
|
+
li.-mb-px.mr-1(data-tabs-target="tab" data-action="click->tabs#change")
|
46
46
|
a.bg-white.inline-block.py-2.px-4.text-blue-500.hover:text-blue-700.font-semibold.no-underline(href="#") Previous versions
|
47
47
|
|
48
|
-
.hidden.py-4.px-4.border-l.border-b.border-r(data-target="
|
48
|
+
.hidden.py-4.px-4.border-l.border-b.border-r(data-tabs-target="panel")
|
49
49
|
= render "columns_table", view: view
|
50
|
-
.hidden.py-4.px-4.border-l.border-b.border-r(data-target="
|
50
|
+
.hidden.py-4.px-4.border-l.border-b.border-r(data-tabs-target="panel")
|
51
51
|
= render "filters_form", view: view
|
52
|
-
.hidden.py-4.px-4.border-l.border-b.border-r(data-target="
|
52
|
+
.hidden.py-4.px-4.border-l.border-b.border-r(data-tabs-target="panel")
|
53
53
|
= render "versions", view: view
|
54
54
|
|
55
55
|
.modal__footer
|
@@ -0,0 +1,42 @@
|
|
1
|
+
= content_for(:actions) do
|
2
|
+
= link_to t("new_record.link_title"),
|
3
|
+
new_virology_vaccination_type_path,
|
4
|
+
class: "button"
|
5
|
+
|
6
|
+
= within_new_admin_layout(title: "Virology Vaccination Types") do
|
7
|
+
.rounded-md.bg-blue-100.px-3.py-2.flex.items-start.shadow.mb-5
|
8
|
+
i.fas.fa-info-circle.mr-2.mt-1.text-blue-500
|
9
|
+
' Deleting a type sets the 'deleted at' date, preventing the type from
|
10
|
+
' being used prospectively.
|
11
|
+
br
|
12
|
+
' The type's code cannot be edited once set, just in case it has already been used.
|
13
|
+
br
|
14
|
+
' Drag and drop the icon to change the sort order.
|
15
|
+
|
16
|
+
table.vaccination_types
|
17
|
+
thead
|
18
|
+
tr
|
19
|
+
th.actions.col-width-small
|
20
|
+
th Name
|
21
|
+
th Code
|
22
|
+
th.text-center Sort order
|
23
|
+
th.col-width-date-time Created at
|
24
|
+
th.col-width-date-time Deleted at
|
25
|
+
tbody.sortables(data-rel=sort_virology_vaccination_types_path)
|
26
|
+
- types.each do |type|
|
27
|
+
= content_tag_for(:tr, type, class: "sortable #{type.deleted? ? 'deleted' : ''}") do
|
28
|
+
td.actions
|
29
|
+
- unless type.deleted?
|
30
|
+
=link_to "Edit", edit_virology_vaccination_type_path(type)
|
31
|
+
=link_to "Delete",
|
32
|
+
virology_vaccination_type_path(type),
|
33
|
+
method: :delete,
|
34
|
+
data: { confirm: "Are you sure you want to delete this type? Doing so will prevent it from being used prospectively."}
|
35
|
+
|
36
|
+
td= type.name
|
37
|
+
td= type.code
|
38
|
+
td.handle
|
39
|
+
- unless type.deleted?
|
40
|
+
i.fas.fa-bars
|
41
|
+
td= l(type.created_at)
|
42
|
+
td= l(type.deleted_at)
|
@@ -1,5 +1,6 @@
|
|
1
1
|
/ See Vaccination.to_partial_path etc
|
2
2
|
/ Pulled into the New Event form via a js get to EventsController#new
|
3
3
|
= f.simple_fields_for :document, event.document do |fd|
|
4
|
-
|
4
|
+
/= fd.input :type, wrapper: :horizontal_medium
|
5
|
+
= fd.input :type, wrapper: :horizontal_medium, collection: Renalware::Virology::VaccinationType.ordered.pluck(:name, :code)
|
5
6
|
= fd.input :drug, wrapper: :horizontal_medium, collection: Renalware::Drugs::Drug.for(:vaccine).pluck(:name, :name)
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
dl.dl-horizontal
|
5
5
|
dt= attr_name(document, :type, suffix: ":")
|
6
|
-
dd= document.
|
6
|
+
dd= document.type_name.presence || t("unspecified")
|
7
7
|
dt= attr_name(document, :drug, suffix: ":")
|
8
8
|
dd= document.drug.presence || t("unspecified")
|
9
9
|
dt= attr_name(event, :notes, suffix: ":")
|
data/config/permissions.yml
CHANGED
data/config/routes/virology.rb
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
class CreateVirologyVaccinationTypes < ActiveRecord::Migration[5.2]
|
2
|
+
within_renalware_schema do
|
3
|
+
def change
|
4
|
+
create_table :virology_vaccination_types do |t|
|
5
|
+
t.string :code, null: false, index: { unique: true }
|
6
|
+
t.string :name, null: false, index: { unique: true }
|
7
|
+
t.integer :position, null: false, default: 0
|
8
|
+
t.datetime :deleted_at
|
9
|
+
t.timestamps null: false
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class CreateEventTypeAlertTriggers < ActiveRecord::Migration[5.2]
|
2
|
+
def change
|
3
|
+
within_renalware_schema do
|
4
|
+
create_table(
|
5
|
+
:event_type_alert_triggers,
|
6
|
+
comment: "Matching alerts are displayed on patient pages"
|
7
|
+
) do |t|
|
8
|
+
t.references :event_type, foreign_key: true, null: false
|
9
|
+
t.text :when_event_document_contains
|
10
|
+
t.text :when_event_description_contains
|
11
|
+
t.timestamps null: false
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
data/db/seeds/default/seeds.rb
CHANGED
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Renalware
|
4
|
+
module Virology
|
5
|
+
log "Adding virology vaccination types" do
|
6
|
+
{
|
7
|
+
hbv1: "HBV Vaccination 1",
|
8
|
+
hbv2: "HBV Vaccination 2",
|
9
|
+
hbv3: "HBV Vaccination 3",
|
10
|
+
hbv4: "HBV Vaccination 4",
|
11
|
+
hbv_booster: "HBV Booster",
|
12
|
+
influenza: "Influenza",
|
13
|
+
pneumococcus: "Pneumococcus",
|
14
|
+
covid19_1: "COVID-19 1",
|
15
|
+
covid19_2: "COVID-19 2",
|
16
|
+
patient_refused: "Patient Refused",
|
17
|
+
patient_refused_covid19: "Patient refused Covid-19 vaccine",
|
18
|
+
patient_refused_covid19_pfizer: "Patient refused Covid-19 vaccine Pfizer",
|
19
|
+
patient_refused_covid19_astrazenica: "Patient refused Covid-19 vaccine Astra Zeneca"
|
20
|
+
}.each do |code, name|
|
21
|
+
VaccinationType.find_or_create_by!(code: code, name: name)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
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.165
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Airslie
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord-import
|
@@ -310,14 +310,14 @@ dependencies:
|
|
310
310
|
requirements:
|
311
311
|
- - "~>"
|
312
312
|
- !ruby/object:Gem::Version
|
313
|
-
version: 2.
|
313
|
+
version: 2.4.0
|
314
314
|
type: :runtime
|
315
315
|
prerelease: false
|
316
316
|
version_requirements: !ruby/object:Gem::Requirement
|
317
317
|
requirements:
|
318
318
|
- - "~>"
|
319
319
|
- !ruby/object:Gem::Version
|
320
|
-
version: 2.
|
320
|
+
version: 2.4.0
|
321
321
|
- !ruby/object:Gem::Dependency
|
322
322
|
name: font-awesome-sass
|
323
323
|
requirement: !ruby/object:Gem::Requirement
|
@@ -664,14 +664,14 @@ dependencies:
|
|
664
664
|
name: puma
|
665
665
|
requirement: !ruby/object:Gem::Requirement
|
666
666
|
requirements:
|
667
|
-
- - "
|
667
|
+
- - ">="
|
668
668
|
- !ruby/object:Gem::Version
|
669
669
|
version: '4.3'
|
670
670
|
type: :runtime
|
671
671
|
prerelease: false
|
672
672
|
version_requirements: !ruby/object:Gem::Requirement
|
673
673
|
requirements:
|
674
|
-
- - "
|
674
|
+
- - ">="
|
675
675
|
- !ruby/object:Gem::Version
|
676
676
|
version: '4.3'
|
677
677
|
- !ruby/object:Gem::Dependency
|
@@ -1455,6 +1455,7 @@ files:
|
|
1455
1455
|
- app/controllers/renalware/virology/base_controller.rb
|
1456
1456
|
- app/controllers/renalware/virology/dashboards_controller.rb
|
1457
1457
|
- app/controllers/renalware/virology/profiles_controller.rb
|
1458
|
+
- app/controllers/renalware/virology/vaccination_types_controller.rb
|
1458
1459
|
- app/controllers/renalware/virology/vaccinations_controller.rb
|
1459
1460
|
- app/documents/document/attribute_initializer.rb
|
1460
1461
|
- app/documents/document/attribute_initializer/active_model.rb
|
@@ -1677,12 +1678,14 @@ files:
|
|
1677
1678
|
- app/models/renalware/drugs/type.rb
|
1678
1679
|
- app/models/renalware/events.rb
|
1679
1680
|
- app/models/renalware/events/advanced_care_plan.rb
|
1681
|
+
- app/models/renalware/events/alertable_events_query.rb
|
1680
1682
|
- app/models/renalware/events/biopsy.rb
|
1681
1683
|
- app/models/renalware/events/clinical_frailty_score.rb
|
1682
1684
|
- app/models/renalware/events/create_event.rb
|
1683
1685
|
- app/models/renalware/events/event.rb
|
1684
1686
|
- app/models/renalware/events/event_list_query.rb
|
1685
1687
|
- app/models/renalware/events/event_query.rb
|
1688
|
+
- app/models/renalware/events/event_type_alert_trigger.rb
|
1686
1689
|
- app/models/renalware/events/investigation.rb
|
1687
1690
|
- app/models/renalware/events/line_change_event_query.rb
|
1688
1691
|
- app/models/renalware/events/lists/form.rb
|
@@ -2205,6 +2208,7 @@ files:
|
|
2205
2208
|
- app/models/renalware/virology/patient.rb
|
2206
2209
|
- app/models/renalware/virology/profile.rb
|
2207
2210
|
- app/models/renalware/virology/vaccination.rb
|
2211
|
+
- app/models/renalware/virology/vaccination_type.rb
|
2208
2212
|
- app/models/renalware/virology/version.rb
|
2209
2213
|
- app/models/renalware/zip_archive.rb
|
2210
2214
|
- app/pdfs/renalware/events/event_pdf.rb
|
@@ -2572,12 +2576,14 @@ files:
|
|
2572
2576
|
- app/views/renalware/events/clinical_frailty_score/_cell.html.slim
|
2573
2577
|
- app/views/renalware/events/clinical_frailty_score/_inputs.html.slim
|
2574
2578
|
- app/views/renalware/events/clinical_frailty_score/_toggled_cell.html.slim
|
2579
|
+
- app/views/renalware/events/events/_alerts.html.slim
|
2575
2580
|
- app/views/renalware/events/events/_event.html.slim
|
2576
2581
|
- app/views/renalware/events/events/_filters.html.slim
|
2577
2582
|
- app/views/renalware/events/events/_form.html.slim
|
2578
2583
|
- app/views/renalware/events/events/_list.html.slim
|
2579
2584
|
- app/views/renalware/events/events/_summary_part.html.slim
|
2580
2585
|
- app/views/renalware/events/events/_table.html.slim
|
2586
|
+
- app/views/renalware/events/events/alert/_simple.html.slim
|
2581
2587
|
- app/views/renalware/events/events/cell/_biopsy.html.slim
|
2582
2588
|
- app/views/renalware/events/events/cell/_investigation.html.slim
|
2583
2589
|
- app/views/renalware/events/events/cell/_simple.html.slim
|
@@ -3325,6 +3331,11 @@ files:
|
|
3325
3331
|
- app/views/renalware/virology/dashboards/show.html.slim
|
3326
3332
|
- app/views/renalware/virology/profiles/_summary.html.slim
|
3327
3333
|
- app/views/renalware/virology/profiles/edit.html.slim
|
3334
|
+
- app/views/renalware/virology/vaccination_types/_form.html.slim
|
3335
|
+
- app/views/renalware/virology/vaccination_types/edit.html.slim
|
3336
|
+
- app/views/renalware/virology/vaccination_types/index.html.slim
|
3337
|
+
- app/views/renalware/virology/vaccination_types/new.html.slim
|
3338
|
+
- app/views/renalware/virology/vaccinations/_alert.html.slim
|
3328
3339
|
- app/views/renalware/virology/vaccinations/_cell.html.slim
|
3329
3340
|
- app/views/renalware/virology/vaccinations/_inputs.html.slim
|
3330
3341
|
- app/views/renalware/virology/vaccinations/_list.html.slim
|
@@ -4076,6 +4087,8 @@ files:
|
|
4076
4087
|
- db/migrate/20201023092859_remove_unused_indexes.rb
|
4077
4088
|
- db/migrate/20201105153422_update_medication_current_prescriptions_view.rb
|
4078
4089
|
- db/migrate/20201112152752_update_pd_mdm_patients_view1.rb
|
4090
|
+
- db/migrate/20210105163944_create_virology_vaccination_types.rb
|
4091
|
+
- db/migrate/20210115181817_create_event_type_alert_triggers.rb
|
4079
4092
|
- db/seeds.rb
|
4080
4093
|
- db/seeds/default/accesses/access_pd_catheter_insertion_techniques.csv
|
4081
4094
|
- db/seeds/default/accesses/access_pd_catheter_insertion_techniques.rb
|
@@ -4167,6 +4180,8 @@ files:
|
|
4167
4180
|
- db/seeds/default/ukrdc/modality_codes.csv
|
4168
4181
|
- db/seeds/default/ukrdc/modality_codes.rb
|
4169
4182
|
- db/seeds/default/ukrdc/seeds.rb
|
4183
|
+
- db/seeds/default/virology/seeds.rb
|
4184
|
+
- db/seeds/default/virology/vaccination_types.rb
|
4170
4185
|
- db/seeds/seeds_helper.rb
|
4171
4186
|
- db/triggers/feed_messages_preprocessing_trigger_v01.sql
|
4172
4187
|
- db/triggers/update_current_observation_set_trigger_v01.sql
|
@@ -4442,6 +4457,7 @@ files:
|
|
4442
4457
|
- spec/factories/transplants/rejection_treatments.rb
|
4443
4458
|
- spec/factories/ukrdc/modality_codes.rb
|
4444
4459
|
- spec/factories/virology/patients.rb
|
4460
|
+
- spec/factories/virology/vaccination_types.rb
|
4445
4461
|
- spec/factories/virology/vaccinations.rb
|
4446
4462
|
- spec/support/ajax_helpers.rb
|
4447
4463
|
- spec/support/capybara_helper.rb
|
@@ -4530,7 +4546,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
4530
4546
|
- !ruby/object:Gem::Version
|
4531
4547
|
version: '0'
|
4532
4548
|
requirements: []
|
4533
|
-
rubygems_version: 3.
|
4549
|
+
rubygems_version: 3.1.4
|
4534
4550
|
signing_key:
|
4535
4551
|
specification_version: 4
|
4536
4552
|
summary: Renalware core functionality as a mountable engine.
|