-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path__manifest__.py
45 lines (36 loc) · 1004 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
{
'name': "Upwork invoice",
'summary': """upwork invoice""",
'description': """
This Module:
- Import invoices from Upwork.
- Create Bills based on imports.
- Generate Electronic invoices.
- Update e-invoices and store new version in the module.
""",
'author': "Mounir lahsini",
'website': "https://github.com/matteopolleschi/upwork_invoice_import",
'category': 'Accounting',
'version': '1.0',
'depends': [
'base',
'contacts',
'account',
'l10n_it_fiscalcode',
'l10n_it_fatturapa_out',
],
'data': [
'security/ir.model.access.csv',
'views/upwork_invoice_views.xml',
'views/upwork_invoice_rate_views.xml',
'views/upwork_invoice_asset.xml',
],
'qweb': [
'static/src/xml/e_invoice.xml',
],
'demo': [],
'installable': True,
'application': True,
'auto_install': False
}