forked from OCA/account-payment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
78 lines (72 loc) · 2.78 KB
/
__openerp__.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2011-2012 Domsense s.r.l. (<http://www.domsense.com>).
# Copyright (C) 2014 Agile Business Group sagl (<http://www.agilebg.com>)
# @authors Lorenzo Battistini <[email protected]>
# Stefano Sforzi <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
"name": "VAT on payment",
"version": "8.0.1.0.0",
'category': 'Generic Modules/Accounting',
"depends": ["account_voucher_cash_basis"],
"author": "Agile Business Group",
"website": "http://www.agilebg.com",
"license": "AGPL-3",
"description": """
See 'account_voucher_cash_basis' description.
To activate the VAT on payment behaviour, this module adds a checkbox on
invoice form: 'Vat on payment'
Moreover, three things have to be configured:
- On account object, Related account used for real registrations on a VAT on
payment basis
- On journal object, Related journal used for shadow registrations on a VAT on
payment basis
- On tax code object, Related tax code used for real registrations on a VAT on
payment basis
Requirements: http://goo.gl/Nu0wDf
Howto:
http://planet.agilebg.com/en/2012/10/vat-on-payment-treatment-with-openerp/
Also, see demo and test data
""",
'data': [
'account_account_view.xml',
'account_tax_code_view.xml',
'account_journal_view.xml',
'account_invoice_view.xml',
'account_move_line_view.xml',
'account_voucher_view.xml',
'account_config_settings_view.xml',
'account_fiscal_position_view.xml',
],
'demo': [
'account_demo.xml',
],
'test': [
'test/account_invoice_1.yml',
'test/account_invoice_2.yml',
'test/account_invoice_3.yml',
'test/account_invoice_4.yml',
'test/account_invoice_5.yml',
'test/account_invoice_6.yml',
'test/account_invoice_7.yml',
'test/account_invoice_8.yml',
'test/account_invoice_9.yml',
],
'installable': False,
}