Search 1.9 billion lines of Odoo code on GitHub

medical_diagnostic_report

Author: Creu Blanca,Odoo Community Association (OCA)
License: AGPL-3
Branch: 13.0-imp-readme_diagnostic_report
Repository: tegin/medical-fhir
Dependencies: account, base, medical_administration, medical_administration_encounter, medical_base, medical_certify, medical_clinical, medical_workflow, uom, web, web_editor, web_translate_dialog, and web_widget_bokeh_chart
Languages: HTML (393, 7.3%), JavaScript (214, 4.0%), PO File (1180, 21.9%), Python (1653, 30.7%), Sass (130, 2.4%), XML (1702, 31.6%), and reStructuredText (109, 2.0%)
Other branches: 12.0, 13.0, 13.0-add-imagingstudy, 13.0-add-med_diag_rep, 13.0-add-medical_clinical_impression, 13.0-add-medical_clinical_impression_clean, 13.0-add-medical_product_request, 13.0-fix-hr, 13.0-fix-precommit, 13.0-imp-ferros, 13.0-merge-impression_product_request_study, 14.0, 14.0-add-medical_clinical_impression, 14.0-fix, 14.0-fix-medical_workflow, 14.0-imp-medical_clinical_condition__, and 14.0-imp-medical_fhir
Other repositories: ERPLibre/medical-fhir

<h1 class="title">Medical Diagnostic Report</h1> <p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/tegin/medical-fhir/tree/13.0/medical_diagnostic_report"><img alt="tegin/medical-fhir" src="https://img.shields.io/badge/github-tegin%2Fmedical--fhir-lightgray.png?logo=github" /></a></p> <p>This addon enables to create medical diagnostic reports with a lot of flexibility.</p> <p>The reports are created from report templates which can be configured with several options, as for example, adding observations, composition, conclusions... It also ensures that the report has not been modified through a digest process.</p> <p>The observations can be created with a concept or without. Is it recommended to do it with a concept, specially if it's an observation that you want to keep track. From the patient view you can see a concept evolution through a wizard in a graph and a pivot report in Medical -&gt; Report -&gt; Observations.</p> <p>This model medical.observation is done in such a way the they can be created from a report or not in order to do it more scalable.</p> <p><strong>Table of contents</strong></p> <div class="contents local topic" id="contents"> <ul class="simple"> <li><a class="reference internal" href="#usage" id="id1">Usage</a><ul> <li><a class="reference internal" href="#medical-diagnostic-report-template" id="id2">Medical Diagnostic Report Template</a></li> <li><a class="reference internal" href="#medical-observation-concept" id="id3">Medical Observation Concept</a></li> <li><a class="reference internal" href="#create-a-report-from-an-encounter" id="id4">Create a report from an encounter</a></li> <li><a class="reference internal" href="#patient-concept-evolution" id="id5">Patient Concept Evolution</a></li> </ul> </li> <li><a class="reference internal" href="#bug-tracker" id="id6">Bug Tracker</a></li> <li><a class="reference internal" href="#credits" id="id7">Credits</a><ul> <li><a class="reference internal" href="#authors" id="id8">Authors</a></li> <li><a class="reference internal" href="#contributors" id="id9">Contributors</a></li> <li><a class="reference internal" href="#maintainers" id="id10">Maintainers</a></li> </ul> </li> </ul> </div> <a name="usage"></a> <h2><a class="toc-backref" href="#id1">Usage</a></h2> <p>Make sure the user has the permits needed.</p> <a name="medical-diagnostic-report-template"></a> <h3><a class="toc-backref" href="#id2">Medical Diagnostic Report Template</a></h3> <p>To create a new report template:</p> <ol class="arabic"> <li><p class="first">Go to Clinical -&gt; Report Configuration -&gt; Diagnostic Report Templates</p> </li> <li><p class="first">Create a new one and configure the report:</p> <blockquote> <ul class="simple"> <li>Report name: the name used to search the report at the report creation wizard</li> <li>Title: name that will appear at the report</li> <li>With observations: When true, the report will have an observations page.</li> <li>Observations: The records added here will appear by default in the report. Each record can be filled with or without a concept . The former it is recommended if you want to keep track of these observations, as for example creating a pivot report or seeing its evolution through time. You can add 4 types of records: line, section, subsection and note. Each of them has a different format. They all can also be blocked, it means that this record will be blocked for the user in the report.</li> <li>Item Blocked: Mark it as true if you want to block all observations records (so only the value field can be edited).</li> <li>With composition: When true, the report will have a composition page.</li> <li>Composition: The html added here will be set as default in the report.</li> <li>With conclusion: When true, the report will have a conclusion page.</li> <li>Conclusion: The text added here will be set as the default conclusion in the report.</li> </ul> </blockquote> </li> <li><p class="first">You can preview the report with demo data with the &quot;Preview button&quot;</p> </li> </ol> <a name="medical-observation-concept"></a> <h3><a class="toc-backref" href="#id3">Medical Observation Concept</a></h3> <p>To create a new concept:</p> <ol class="arabic simple"> <li>Go to Clinical -&gt; Report Configuration -&gt; Observation Concepts</li> <li>Create a new record.</li> <li>Write the name and the value type. In the case of an integer or float value, write also the unit of measure and, if desired, the reference range. In the case of a selection value, the different options are separated by &quot;;&quot; (Ex: yes;no)</li> </ol> <a name="create-a-report-from-an-encounter"></a> <h3><a class="toc-backref" href="#id4">Create a report from an encounter</a></h3> <ol class="arabic simple"> <li>Select an encounter in Administration -&gt; Encounter and enter in its form view.</li> <li>Click on &quot;Generate Medical Report&quot; and choose the template of the report and the language.</li> <li>Add the desired data.</li> <li>You can add another template by clicking the &quot;Expand&quot; button.</li> <li>Once everything is correct, you can issue the report and print it at &quot;Print -&gt; Diagnostic Report&quot;.</li> <li>To ensure that it has not been modified, you can click on the &quot;Signature&quot; button and if the Digest Altered field is false, it means that it has not been modified.</li> </ol> <a name="patient-concept-evolution"></a> <h3><a class="toc-backref" href="#id5">Patient Concept Evolution</a></h3> <p>To see the evolution on a graph of a patient's concept (only for float and integer values):</p> <ol class="arabic simple"> <li>Go to a patient form view and click on &quot;Observations Evolution&quot;.</li> <li>Select a concept and filter by dates if desired.</li> <li>You can save the image or perform additional actions.</li> </ol> <a name="bug-tracker"></a> <h2><a class="toc-backref" href="#id6">Bug Tracker</a></h2> <p>Bugs are tracked on <a class="reference external" href="https://github.com/tegin/medical-fhir/issues">GitHub Issues</a>. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed <a class="reference external" href="https://github.com/tegin/medical-fhir/issues/new?body=module:%20medical_diagnostic_report%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p> <p>Do not contact contributors directly about support or help with technical issues.</p> <a name="credits"></a> <h2><a class="toc-backref" href="#id7">Credits</a></h2> <a name="authors"></a> <h3><a class="toc-backref" href="#id8">Authors</a></h3> <ul class="simple"> <li>Creu Blanca</li> </ul> <a name="contributors"></a> <h3><a class="toc-backref" href="#id9">Contributors</a></h3> <ul class="simple"> <li>Creu Blanca</li> </ul> <a name="maintainers"></a> <h3><a class="toc-backref" href="#id10">Maintainers</a></h3> <p>This module is part of the <a class="reference external" href="https://github.com/tegin/medical-fhir/tree/13.0/medical_diagnostic_report">tegin/medical-fhir</a> project on GitHub.</p> <p>You are welcome to contribute.</p>