Skip to content

Commit

Permalink
add banking modules
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-demeyer committed Jan 17, 2019
1 parent f6c226e commit dda38e3
Show file tree
Hide file tree
Showing 126 changed files with 22,489 additions and 0 deletions.
57 changes: 57 additions & 0 deletions account_bank_menu/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

=================
Account Bank Menu
=================

This module adds a menu entry *Bank and Cash* to the *Accounting* menu
since the use of the accounting dashboard is not always practical especially
for companies with lots of bank accounts.
so that these can be cancelled and corrected via 'Set to Draft'.

Installation
============

There is no specific installation procedure for this module.

Configuration and Usage
=======================

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/92/11.0

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/OCA/account-financial-tools/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

Credits
=======

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

* Luc De Meyer <[email protected]>

Do not contact contributors directly about support or help with technical issues.

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://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.
Empty file added account_bank_menu/__init__.py
Empty file.
20 changes: 20 additions & 0 deletions account_bank_menu/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2009-2018 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Account Bank Menu',
'summary': "Adds *Bank and Cash* to the *Accounting' menu",
'version': '11.0.1.0.0',
'category': 'Accounting & Finance',
'website': 'https://github.com/OCA/account-financial-tools',
'author': 'Noviat,'
'Odoo Community Association (OCA)',
'license': 'AGPL-3',
'installable': True,
'depends': [
'account',
],
'data': [
'views/account_bank_menu.xml'
],
}
Binary file added account_bank_menu/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions account_bank_menu/views/account_bank_menu.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>

<menuitem id="menu_finance_bank_and_cash"
name="Bank and Cash"
parent="account.menu_finance"
sequence="7"/>

<menuitem string="Bank Statements"
action="account.action_bank_statement_tree"
id="account_bank_statement_menu"
parent="menu_finance_bank_and_cash"
sequence="10"/>

</odoo>
32 changes: 32 additions & 0 deletions account_bank_statement_advanced/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

=======================
Advanced Bank Statement
=======================

This module extends the standard account_bank_statement object for
better scalability and e-banking support.

This module adds:
-----------------
- value date
- batch payments
- Payment Reference field to support ISO 20022 EndToEndReference
(simple or batch. detail) or PaymentInformationIdentification (batch)
- Creditor Reference fields to support ISO 20022 CdtrRefInf
(e.g. structured communication & communication type)
- bank statement line views
- bank statements balances report
- performance improvements for digital import of bank statement
- manual reconcile extended to partners which are not marked as 'customer' or 'supplier'

Installation guidelines
=======================

We recommend to install this module in combination with the following module:

- web_sheet_full_width

cf. https://github.com/OCA/web
3 changes: 3 additions & 0 deletions account_bank_statement_advanced/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from . import models
from . import report
from . import wizard
31 changes: 31 additions & 0 deletions account_bank_statement_advanced/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright 2009-2019 Noviat
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Advanced Bank Statement',
'version': '11.0.1.0.0',
'license': 'AGPL-3',
'author': 'Noviat',
'website': 'http://www.noviat.com',
'category': 'Accounting & Finance',
'summary': 'Advanced Bank Statement',
'depends': [
'account_cancel',
'base_iban',
'account_bank_menu',
],
'data': [
'security/ir.model.access.csv',
'security/account_security.xml',
'data/ir_sequence.xml',
'views/assets_backend.xml',
'views/account_bank_statement.xml',
'views/account_bank_statement_line.xml',
'views/account_bank_statement_line_global.xml',
'views/statement_balance_report.xml',
'wizard/bank_statement_balance_print.xml',
'wizard/bank_statement_automatic_reconcile_result_view.xml',
'report/statement_balance_report.xml',
],
'installable': True,
}
15 changes: 15 additions & 0 deletions account_bank_statement_advanced/data/ir_sequence.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">

<!-- Globalisation Level Sequence-->
<record id="sequence_reconcile_seq" model="ir.sequence">
<field name="name">Statement Line Globalisation sequence</field>
<field name="code">statement.line.global</field>
<field name="prefix">G</field>
<field eval="1" name="number_next"/>
<field eval="1" name="number_increment"/>
</record>

</data>
</odoo>
Loading

0 comments on commit dda38e3

Please sign in to comment.