Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[12.0][MIG] account_partner_reconcile #239

Merged
merged 6 commits into from
Apr 21, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions account_partner_reconcile/README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

=========================
Expand All @@ -17,15 +17,15 @@ The button is visible only to users that belong to the accounting groups

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

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

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


Credits
Expand Down
1 change: 1 addition & 0 deletions account_partner_reconcile/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from . import models
4 changes: 2 additions & 2 deletions account_partner_reconcile/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# © 2017 Eficent Business and IT Consulting Services S.L.
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

{
'name': "Account Partner Reconcile",
'version': '11.0.1.0.0',
'version': '12.0.1.0.0',
'category': 'Accounting',
'author': 'Eficent,'
'Odoo Community Association (OCA), ',
Expand Down
1 change: 1 addition & 0 deletions account_partner_reconcile/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from . import res_partner
5 changes: 3 additions & 2 deletions account_partner_reconcile/models/res_partner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2017 Eficent Business and IT Consulting Services S.L.
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

Expand All @@ -17,7 +17,8 @@ def action_open_reconcile(self):

action_context = {'show_mode_selector': True,
'partner_ids': [self.id, ],
'account_ids': accounts.ids}
'account_ids': accounts.ids,
}
return {
'type': 'ir.actions.client',
'tag': 'manual_reconciliation_view',
Expand Down
2 changes: 2 additions & 0 deletions account_partner_reconcile/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The button is visible only to users that belong to the accounting groups
"Accountant" or "Adviser".
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Billing" or "Billing Manager". To carry out the matching, users need to have activated the check "Show Full Accounting Features".

2 changes: 2 additions & 0 deletions account_partner_reconcile/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Jordi Ballester <jordi.ballester@eficent.com>
* Jaume Planas <jaume.planas@minorisa.net>
2 changes: 2 additions & 0 deletions account_partner_reconcile/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This module adds a button "Match Payments" in the customer & suppliers form
view to allow to start the matching of invoices & payments for that partner.
2 changes: 0 additions & 2 deletions account_partner_reconcile/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from . import test_account_partner_reconcile