-
Notifications
You must be signed in to change notification settings - Fork 25
/
__manifest__.py
58 lines (56 loc) · 2.59 KB
/
__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
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 2024 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Account Cut-off Prepaid',
'version': '16.0.1.0.0',
'category': 'Accounting', # Sales, Warehouse, Manufacturing, Purchases, Human Resources
'license': 'AGPL-3',
'summary': 'Prepaid Expense, Prepaid Revenue', # v7: size=64, v8: no size limit
'description': """
This module adds a **Start Date** and **End Date** field on invoice
lines. For example, if you have an insurance contrat for your company
that run from April 1st 2013 to March 31st 2014, you will enter these
dates as start and end dates on the supplier invoice line. If your
fiscal year ends on December 31st 2013, 3 months of expenses are part of
the 2014 fiscal year and should not be part of the 2013 fiscal year. So,
thanks to this module, you will create a *Prepaid Expense* on December
31st 2013 and OpenERP will identify this expense with the 3 months that
are after the cut-off date and propose to generate the appropriate
cut-off journal entry.
This module has been written by Alexis de Lattre from Akretion
""",
'author': 'Akretion,Odoo Community Association (OCA)',
'maintainers': ['alexis-via'],
'contributors': '', # text
"development_status": "Mature",
'website': 'https://github.com/OCA/connector-telephony',
'depends': ['account_cutoff_base'],
'excludes': ['report_intrastat'],
'external_dependencies': {'python': ['phonenumbers', 'Asterisk', "python-stdnum>=1.16"]},
'data': [
'security/ir.model.access.csv',
],
'post_init_hook': 'update_bank_journals',
'uninstall_hook': 'street3_uninstall_hook',
'demo': ['demo/product.xml'],
'test': ['test/sale_stock_users.yml'],
'qweb': ['static/src/xml/*.xml'],
'css': ['static/src/css/*.css'], # only in v7 (replaced by XML file in v8
'js': ['static/src/js/*.js'], # only in v7 ! (replaced by XML file in v8
'images': [ # only in V7 ?
'images/prepaid_revenue_draft.jpg',
'images/prepaid_revenue_journal_entry.jpg',
'images/prepaid_revenue_done.jpg',
],
# pour les screenshots en v8: mettre dans static/description/, sans déclaration
# dans ce fichier
# pour l'icone du module (PNG 64x64 ou 128x128): rien à mettre dans __openerp__.py
# v7: ./static/src/img/icon.png
# v8: ./static/description/icon.png
'url': 'http://www.akretion.com/doc_du_module.html', # ??
'installable': True,
'auto_install': False,
'application': True,
}