__manifest__.py 1.15 KB
# -*- coding: utf-8 -*-
{
    'name': "Transportar",

    'summary': """
        módulo Transportar para registro de transportistas""",

    'description': """
        módulo Transportar para registro de transportistas, tipos de transporte y servicios
    """,

    'author': "HGT",
    'website': "http://hgt.anacsoft.com/",

    # Categories can be used to filter modules in modules listing
    # Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
    # for the full list
    'category': 'Specific Industry Applications',
    'version': '0.2020.11.4',

    # any module necessary for this one to work correctly
    'depends': [
        'base',
        'asw_geografia',
        
    ],

    # always loaded
    'data': [
        'security/permisos.xml',
        'security/ir.model.access.csv',
        'views/transportista_vista.xml',
        'views/tipo_transporte_vista.xml',
        'views/mensajes.xml',
        'views/solicitudes.xml',
        'views/punto_retiro_vista.xml',
        'views/menu_vista.xml',
        'data_xml/dias.xml',
    ],
    # only loaded in demonstration mode
    'demo': [
        'demo/demo.xml',
    ],
}