mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# account_check_deposit for Odoo/OpenERP
|
|
# Copyright (C) 2012-2014 Akretion (http://www.akretion.com/)
|
|
# @author: Benoît GUILLOT <benoit.guillot@akretion.com>
|
|
# @author: Chafique DELLI <chafique.delli@akretion.com>
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
#
|
|
# 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': 'Account Check Deposit',
|
|
'version': '0.1',
|
|
'category': 'Accounting & Finance',
|
|
'license': 'AGPL-3',
|
|
'summary': 'Manage deposit of checks to the bank',
|
|
'description': """
|
|
Account Check Deposit
|
|
=====================
|
|
This module allows you to easily manage check deposits : you can select all
|
|
the checks you received as payments and create a global deposit for the
|
|
selected checks.
|
|
|
|
A journal for received checks is automatically created.
|
|
You must configure on this journal the default debit account and the default
|
|
credit account. You must also configure on the company the account for
|
|
check deposits.
|
|
""",
|
|
'author': 'Akretion',
|
|
'website': 'http://www.akretion.com/',
|
|
'depends': [
|
|
'account_accountant',
|
|
'report_webkit',
|
|
],
|
|
'data': [
|
|
'account_deposit_view.xml',
|
|
'account_deposit_sequence.xml',
|
|
'company_view.xml',
|
|
'security/ir.model.access.csv',
|
|
'security/check_deposit_security.xml',
|
|
'account_data.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
}
|