Repository
OCA/vertical-medical · module folder · Try on Runboat
Module version
1.0.0
Category
Technical Settings
Folder size
0.05 MB
License
GPL-3
Application
No
Auto-installable
No
Website
https://laslabs.com/
Last tracking update
2026-08-07 07:17:46
Authors
Odoo Community Association (OCA), LasLabs
Maintainers
Odoo Community Association (OCA), LasLabs
Committers
Jordi Ballester, OCA Transbot, Dave Lasley, oca-travis
Odoo dependencies
OCA/server-tools:
OCA/vertical-medical:
odoo/odoo:
- web
- bus
Python dependencies
None
System dependencies
None
Required by
medical_pathology_icd10
Description

Code Analysis

Views touched (1)
XML IDNameModelTypeStatus
medical_pathology_import_view_form Medical Pathology Import Form medical.pathology.import form New
HTTP endpoints (0)

No HTTP endpoints found for this module.

Models touched (1)

New fields (4)
  • code_type_id Many2one → medical.pathology.code.type
    comodel_name='medical.pathology.code.type' help='Identifies the code type that is being imported. If you are not sure what to choose, select an importer first and leave the resulting default' required=True string='Code Type'
  • file_name Char
    help='Name of file (inside of ZIP) representing full tabular XML' string='XML File Name'
  • importer_type Selection
    required=True selection=<expr> string='Importer Type'
  • zip_uri Char
    help='URI to full ZIP file' string='ZIP File URI'
Public methods (2)
  • create(self, vals, no_import=False)
    @api.model
    It begins import process after creation unless flag is passed
  • do_import(self)
    @api.multi
    It calls the import method for the type of importer. Import methods should be named ``do_import_*``, such as ``do_import_icd10`` or ``do_import_snomed``.