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
|
#!/usr/bin/env python
#-*- encoding:utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2011 TeMPO Consulting, MSF. All Rights Reserved
# Developer: Olivier DOSSMANN
#
# 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" : "Registers",
"version" : "1.0",
"description" : """
This module aims to add some registers into accounting menu and change the method to do accounting by using
all registers.
""",
"author" : "TeMPO Consulting",
'website': 'http://tempo-consulting.fr',
"category" : "Tools",
# WARNING : account_analytic_plans has been added in order to cut modification done in account_analytic_plans by fields_view_get on account_move_line
"depends" : ["base", "account", "hr", "account_payment", "account_accountant", "account_activable", "analytic_distribution", "purchase_override", "analytic_distribution_invoice"],
"init_xml" : [],
"update_xml" : [
'security/ir.model.access.csv',
'wizard/import_invoice_on_registers_view.xml',
'wizard/import_cheque_on_bank_registers_view.xml',
'account_view.xml',
'account_bank_statement_workflow.xml',
'wizard/wizard_closing_cashbox.xml',
'wizard/wizard_cashbox_write_off.xml',
'wizard/wizard_temp_posting.xml',
'wizard/wizard_hard_posting.xml',
'account_cash_statement_sequence.xml',
'wizard/wizard_cash_return.xml',
'account_invoice_view.xml',
'wizard/register_creation.xml',
'wizard/wizard_confirm_bank.xml',
'wizard/invoice_date.xml',
],
"demo_xml" : [],
"test": [
'test/register_accounting_data.yml',
'test/account_cash_statement.yml',
'test/account_bank_statement.yml',
'test/account_cheque_register.yml',
'test/cash_and_bank_transfers.yml',
'test/operational_advance_management.yml',
'test/cashbox_balance.yml',
'test/direct_expense.yml',
'test/direct_invoice.yml',
'test/import_cheque_from_bank.yml',
'test/wizard_register_creation.yml',
'test/bug_closing_balance_on_cashbox.yml',
'test/import_invoice.yml',
],
"installable": True,
"active": False
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|