mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
Do not raise ConnectionError if we get a response Use ConnectionError from requests lib instead of overriding it Fix push_to_pingen (writes on state as for cron), remove unneeded loops
31 lines
861 B
Python
31 lines
861 B
Python
# -*- coding: utf-8 -*-
|
|
# Author: Guewen Baconnier
|
|
# Copyright 2012-2017 Camptocamp SA
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'pingen.com integration',
|
|
'version': '10.0.1.0.0',
|
|
'author': "Camptocamp,Odoo Community Association (OCA)",
|
|
'maintainer': 'Camptocamp',
|
|
'license': 'AGPL-3',
|
|
'category': 'Reporting',
|
|
'complexity': 'easy',
|
|
'depends': ['base_setup'],
|
|
'external_dependencies': {
|
|
'python': ['requests'],
|
|
},
|
|
'website': 'http://www.camptocamp.com',
|
|
'data': [
|
|
'views/ir_attachment_view.xml',
|
|
'views/pingen_document_view.xml',
|
|
'data/pingen_data.xml',
|
|
'views/base_config_settings.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'tests': [],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': True,
|
|
}
|