Skip to content

Commit

Permalink
Merge e2d23e6 into e12ac46
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Jul 6, 2015
2 parents e12ac46 + e2d23e6 commit f1d612a
Show file tree
Hide file tree
Showing 17 changed files with 1,561 additions and 0 deletions.
34 changes: 34 additions & 0 deletions account_invoice_accrual/README.rst
@@ -0,0 +1,34 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License: AGPL-3

Account Invoice Accrual
=======================

Many company wants to establish a complete accounting situation at the end of
each period. An important aspect of this process is to record invoices for
which the goods or services were received / delivered but for which the invoice
has not been received / sent.

Account Invoice Accrual lets you easily create these provisions entries.

Credits
=======

Contributors
------------

* Laetitia Gangloff (ACSONE) <laetitia.gangloff@acsone.eu>
* Adrien Peiffer (ACSONE) <adrien.peiffer@acsone.eu>

Maintainer
----------

.. image:: http://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: http://odoo-community.org

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

To contribute to this module, please visit http://odoo-community.org.
31 changes: 31 additions & 0 deletions account_invoice_accrual/__init__.py
@@ -0,0 +1,31 @@
# -*- coding: utf-8 -*-
#
#
# Authors: Laetitia Gangloff
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
# All Rights Reserved
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs.
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contact a Free Software
# Service Company.
#
# 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/>.
#
from . import account_invoice
from . import wizard
from . import company
from . import account_reversal
56 changes: 56 additions & 0 deletions account_invoice_accrual/__openerp__.py
@@ -0,0 +1,56 @@
# -*- coding: utf-8 -*-
#
#
# Authors: Laetitia Gangloff
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
# All Rights Reserved
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs.
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contact a Free Software
# Service Company.
#
# 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 invoice accrual",
"version": "0.1",
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"category": "Invoice",
"website": "http://www.acsone.eu",
"depends": [
"account",
"account_reversal", # from account-financial-tools/7.0
"account_cutoff_accrual_base",
],
"data": [
"account_invoice_view.xml",
"wizard/account_move_accrue_view.xml",
"company_view.xml",
],
"demo": [],
"test": [
"test/account_invoice_accrual_confirm.yml",
"test/account_invoice_accrual_remove.yml",
"test/account_invoice_accrual_reversal.yml",
],
"license": "AGPL-3",
"installable": True,
"auto_install": False,
"application": False,
}

0 comments on commit f1d612a

Please sign in to comment.