Geert Arien

Medical Amadia

For an international internship I spent three months in Madagascar. Three weeks of those I was traveling through the country, from the east to the west coast. The other two and a half months I stayed in Antananarivo, the capital of Madagascar, implementing a medical ERP system for Amadia, a non-profit organization.

Antananarivo view
Amadia's hospital in Antananarivo lies atop a small hill, the top floor has a balcony which features this amazing view of the capital city of Madagascar.

Amadia, a Madagascar based non-profit organization focusing on diabetes patients, was in need of an ERP system to manage their activities. Crucial to the organization was that the ERP system was adapted to their needs and that the cost price was kept as low as possible.

After comparing the available options, Odoo was chosen as the ERP system for this project. The decisive factors were Odoo’s open source nature and it’s modular design. It allows users to choose and install the functionality they need as well as extend the system in a systematic way, which was exactly what we needed.

Odoo modules
Extra modules can be installed using Odoo's user interface.

Odoo is an ERP system that uses a client/server architecture in which clients are web browsers accessing the Odoo server via Remote Procedure Call. Furthermore it also features an Object-Relational Mapping layer and follows the Model-View-Controller architectural pattern. PostgreSQL is used as database backend.

Following the MVC pattern, business objects are declared as Python classes:

from openerp import models, fields

class MedicalPatientAllergy(models.Model):
    _name = 'medical.patient.allergy'
    _description = 'Medical Patient Allergy'

    name = fields.Char(required=True,
       translate=True, )

While views are defined using XML:

<record id="medical_prescription_tree_view"
  model="ir.ui.view">
    <field name="name">
      medical.prescription.tree
    </field>
    <field name="model">
      medical.prescription
    </field>
    <field name="arch" type="xml">
        <tree string="Medical Prescription">
                <field name="id"/>
            <field name="medical_patient_id" />
            <field name="date" />
            <field name="prescription_ids"/>
        </tree>
    </field>
</record>

To adapt the ERP system to the requirements of the Amadia organization, a fork was created of an existing healthcare module called Odoo Medical. This open source module is maintained by the Odoo Community Association and was only partially implemented. The module was further implemented and extended with specific modifications required by the Amadia organization.

Among the new features added for Amadia, the most prominent are the following:

  • Prescriptions
  • Observations
  • Medical services
  • Hospitalizations
  • Automated stock management
Odoo hospitalization
Editing a hospitalization record in Odoo.

Besides the development of the ERP system, I was also responsible for the installation and configuration of the server at Amadia’s hospital in Antananarivo. The application was installed on a server running Debian, a popular Linux distribution which is renowned for its stability. The server was configured with security in mind and the application was secured by sending all traffic through HTTPS. This was accomplished by using the Nginx webserver as a reverse proxy server that redirects traffic on the HTTPS port to Odoo.

The final Odoo module that I created for Amadia is available on github. For more information about the development environment as well as the installation and configuration of Debian, Odoo and Nginx, please refer to the technical documentation.