Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions spp_disability_registry/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ Key Features
scheduling
- Impairment type, cause, and severity classifications using DCI
vocabularies
- Assistive device management with status workflow (needed, requested,
provided)
- Assistive device management with status (needed, requested, provided)
- Proxy response tracking for children
- CEL function integration for program eligibility targeting

Expand All @@ -53,6 +52,22 @@ Key Features
Changelog
=========

19.0.3.0.0
~~~~~~~~~~

- feat(disability_registry): age-driven assessment type selection with
manual override (#1050)
- feat(disability_registry): CFM 2-4 and CFM 5-17 questionnaires (#1048,
#1049)
- feat(disability_registry): configurable assessment approval workflow
(#1060)
- feat(disability_registry): impairment classification on its own
multi-row tab (#1054)
- feat(disability_registry): improved assistive-device management +
proxy response by assessment type (#1052, #1053)
- fix(disability_registry): recognise approved assessments in the
registry (#1022)

19.0.2.0.1
~~~~~~~~~~

Expand Down
3 changes: 2 additions & 1 deletion spp_disability_registry/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OpenSPP Disability Registry",
"version": "19.0.2.0.1",
"version": "19.0.3.0.0",
"category": "OpenSPP",
"summary": "Disability assessment and registry management for social protection",
"author": "OpenSPP.org",
Expand Down Expand Up @@ -31,6 +31,7 @@
"views/assessment_views.xml",
"views/assistive_device_views.xml",
"views/registrant_views.xml",
"views/res_config_settings_views.xml",
"views/menus.xml",
],
"demo": [
Expand Down
5 changes: 1 addition & 4 deletions spp_disability_registry/data/vocabulary_device.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,12 @@
<odoo noupdate="1">
<!--
Assistive Device Type Vocabulary
Based on DCI CD.DR.04 and ISO 9999
-->
<record id="vocab_device_type" model="spp.vocabulary">
<field name="name">Assistive Device Type</field>
<field name="namespace_uri">urn:dci:cd:dr:04</field>
<field name="version">2024</field>
<field
name="description"
>Types of assistive devices aligned with ISO 9999 classification</field>
<field name="description">Types of assistive devices</field>
<field name="is_system">True</field>
<field name="domain">disability</field>
</record>
Expand Down
27 changes: 21 additions & 6 deletions spp_disability_registry/demo/demo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,20 @@
<field name="wg_selfcare">a_lot</field>
<field name="wg_communicating">some</field>
<field
name="impairment_type_ids"
eval="[Command.link(ref('code_disability_physical'))]"
name="impairment_line_ids"
eval="[
Command.create({
'impairment_type_id': ref('code_disability_physical'),
'impairment_cause_id': ref('code_cause_injury'),
'severity_level_id': ref('code_severity_severe'),
}),
Command.create({
'impairment_type_id': ref('code_disability_visual'),
'impairment_cause_id': ref('code_cause_disease'),
'severity_level_id': ref('code_severity_moderate'),
}),
]"
/>
<field name="severity_level_id" ref="code_severity_severe" />
<field name="review_category">mine</field>
<field
name="support_needs"
Expand All @@ -61,10 +71,15 @@
<field name="wg_selfcare">none</field>
<field name="wg_communicating">a_lot</field>
<field
name="impairment_type_ids"
eval="[Command.link(ref('code_disability_hearing'))]"
name="impairment_line_ids"
eval="[
Command.create({
'impairment_type_id': ref('code_disability_hearing'),
'impairment_cause_id': ref('code_cause_congenital'),
'severity_level_id': ref('code_severity_moderate'),
}),
]"
/>
<field name="severity_level_id" ref="code_severity_moderate" />
<field name="review_category">mip</field>
<field name="is_proxy_response">True</field>
<field name="proxy_relationship">parent</field>
Expand Down
2 changes: 2 additions & 0 deletions spp_disability_registry/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from . import assessment
from . import assistive_device
from . import impairment
from . import cel_disability_functions
from . import registrant
from . import res_config_settings
Loading
Loading