forked from OCA/partner-contact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
26 lines (25 loc) · 963 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- coding: utf-8 -*-
# © 2015 Forest and Biomass Services Romania
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Automatic partner creation based on VAT number',
'summary': 'Using VIES webservice, name and address information will '
'be fetched and added to the partner.',
'version': '10.0.1.0.0',
'category': 'Customer Relationship Management',
'author': 'Forest and Biomass Services Romania, '
'Odoo Community Association (OCA)',
'website': 'https://www.forbiom.eu',
'license': 'AGPL-3',
'application': False,
'installable': True,
'external_dependencies': {
'python': ['stdnum', 'suds'],
},
'depends': ['base_vat'],
'data': ['views/res_partner_view.xml'],
'images': ['static/description/icon.png',
'static/description/customer.png',
'static/description/customer1.png'],
'auto_install': False,
}