2
0
account-financial-tools/account_move_template/__manifest__.py
Jordi Ballester Alomar 39070f31b0 add to the template: - partner - analytic account - analytic tags - taxes - originator tax
When you create a move from a template, you can now indicate the date
and the company to use.

Added tests.
2023-06-05 11:29:47 +02:00

28 lines
835 B
Python

# Copyright 2015-2017 See manifest
# Copyright 2018 Raf Ven <raf.ven@dynapps.be>
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
'name': "Account Move Template",
'version': '11.0.1.0.0',
'category': 'Generic Modules/Accounting',
'summary': "Templates for recurring Journal Entries",
'author': "Agile Business Group, Odoo Community Association (OCA), Aurium "
"Technologies, Vauxoo, Eficent",
'website': 'https://github.com/OCA/account-financial-tools',
'license': 'AGPL-3',
'depends': [
'account',
'analytic',
],
'data': [
'security/ir.model.access.csv',
'view/move_template.xml',
'wizard/select_template.xml',
'security/account_move_template_security.xml',
],
'test': [
],
'installable': True,
}