Medical Pathology - Import Interface

medical_pathology_import
REPOSITORY
REPOSITORYOCA/vertical-medical
GIT
GIThttps://github.com/OCA/vertical-medical.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/vertical-medical/tree/10.0/medical_pathology_import
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYTechnical Settings
LICENSE
LICENSEGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), LasLabs
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), LasLabs
COMMITTERS
COMMITTERSJordi Ballester, OCA Transbot, Dave Lasley, oca-travis
WEBSITE
WEBSITEhttps://laslabs.com/
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:20:02
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/server-tools:
    - base_locale_uom_default
OCA/vertical-medical:
    - medical_pathology
    - medical
odoo/odoo:
    - product
    - base
    - decimal_precision
    - mail
    - base_setup
    - web_kanban
    - web
    - bus
    - web_tour
    - report
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES Not have
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (1)
XML IDNameModelTypeStatus
medical_pathology_import_view_form Medical Pathology Import Form medical.pathology.import form New
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``.