Skip to content

Commit 8829e37

Browse files
committed
[MIG] account_invoice_view_payment: Migration to 16.0
1 parent 352ca40 commit 8829e37

File tree

5 files changed

+134
-52
lines changed

5 files changed

+134
-52
lines changed

account_invoice_view_payment/README.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Account Invoice View Payment
1717
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
1818
:alt: License: AGPL-3
1919
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoicing-lightgray.png?logo=github
20-
:target: https://github.com/OCA/account-invoicing/tree/15.0/account_invoice_view_payment
20+
:target: https://github.com/OCA/account-invoicing/tree/16.0/account_invoice_view_payment
2121
:alt: OCA/account-invoicing
2222
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23-
:target: https://translation.odoo-community.org/projects/account-invoicing-15-0/account-invoicing-15-0-account_invoice_view_payment
23+
:target: https://translation.odoo-community.org/projects/account-invoicing-16-0/account-invoicing-16-0-account_invoice_view_payment
2424
:alt: Translate me on Weblate
2525
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26-
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&target_branch=15.0
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&target_branch=16.0
2727
:alt: Try me on Runboat
2828

2929
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -52,7 +52,7 @@ Usage
5252
Registering a payment
5353

5454
#. Go to an open customer invoice or vendor bill and press 'Register Payment'.
55-
#. Enter the payment details and press 'Validate & View Payment'.
55+
#. The button "Create Payment" will take care of validating the payment.
5656

5757
After payment has been made
5858

@@ -66,7 +66,7 @@ Bug Tracker
6666
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-invoicing/issues>`_.
6767
In case of trouble, please check there if your issue has already been reported.
6868
If you spotted it first, help us to smash it by providing a detailed and welcomed
69-
`feedback <https://github.com/OCA/account-invoicing/issues/new?body=module:%20account_invoice_view_payment%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
69+
`feedback <https://github.com/OCA/account-invoicing/issues/new?body=module:%20account_invoice_view_payment%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
7070

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

@@ -100,6 +100,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
100100
mission is to support the collaborative development of Odoo features and
101101
promote its widespread use.
102102

103-
This module is part of the `OCA/account-invoicing <https://github.com/OCA/account-invoicing/tree/15.0/account_invoice_view_payment>`_ project on GitHub.
103+
This module is part of the `OCA/account-invoicing <https://github.com/OCA/account-invoicing/tree/16.0/account_invoice_view_payment>`_ project on GitHub.
104104

105105
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

account_invoice_view_payment/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"name": "Account Invoice View Payment",
77
"summary": "Access to the payment from an invoice",
8-
"version": "15.0.1.1.1",
8+
"version": "16.0.1.0.0",
99
"license": "AGPL-3",
1010
"website": "https://github.com/OCA/account-invoicing",
1111
"author": "ForgeFlow, " "Odoo Community Association (OCA)",

account_invoice_view_payment/models/account_move.py

+57
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,68 @@
33
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
44

55
from odoo import models
6+
from odoo.tools import formatLang
67

78

89
class AccountMove(models.Model):
910
_inherit = "account.move"
1011

12+
def _get_reconciled_info_JSON_values(self):
13+
self.ensure_one()
14+
reconciled_vals = []
15+
for move in self:
16+
if move.state == "posted" and move.is_invoice(include_receipts=True):
17+
reconciled_partials = move._get_all_reconciled_invoice_partials()
18+
for reconciled_partial in reconciled_partials:
19+
counterpart_line = reconciled_partial["aml"]
20+
if counterpart_line.move_id.ref:
21+
reconciliation_ref = "%s (%s)" % (
22+
counterpart_line.move_id.name,
23+
counterpart_line.move_id.ref,
24+
)
25+
else:
26+
reconciliation_ref = counterpart_line.move_id.name
27+
if (
28+
counterpart_line.amount_currency
29+
and counterpart_line.currency_id
30+
!= counterpart_line.company_id.currency_id
31+
):
32+
foreign_currency = counterpart_line.currency_id
33+
else:
34+
foreign_currency = False
35+
36+
reconciled_vals.append(
37+
{
38+
"name": counterpart_line.name,
39+
"journal_name": counterpart_line.journal_id.name,
40+
"amount": reconciled_partial["amount"],
41+
"currency_id": move.company_id.currency_id.id
42+
if reconciled_partial["is_exchange"]
43+
else reconciled_partial["currency"].id,
44+
"date": counterpart_line.date,
45+
"partial_id": reconciled_partial["partial_id"],
46+
"account_payment_id": counterpart_line.payment_id.id,
47+
"payment_method_name": counterpart_line.payment_id.payment_method_line_id.name, # noqa: B950
48+
"move_id": counterpart_line.move_id.id,
49+
"ref": reconciliation_ref,
50+
# these are necessary for the views to change
51+
# depending on the values
52+
"is_exchange": reconciled_partial["is_exchange"],
53+
"amount_company_currency": formatLang(
54+
self.env,
55+
abs(counterpart_line.balance),
56+
currency_obj=counterpart_line.company_id.currency_id,
57+
),
58+
"amount_foreign_currency": foreign_currency
59+
and formatLang(
60+
self.env,
61+
abs(counterpart_line.amount_currency),
62+
currency_obj=foreign_currency,
63+
),
64+
}
65+
)
66+
return reconciled_vals
67+
1168
def action_view_payments(self):
1269
"""
1370
This function returns an action that display existing payments of given

account_invoice_view_payment/static/description/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ <h1 class="title">Account Invoice View Payment</h1>
369369
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370370
!! source digest: sha256:0cca4874ac9c8da20233b28a13917e68e208348a2a0575f94b7bf241aa5bcea2
371371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372-
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-invoicing/tree/15.0/account_invoice_view_payment"><img alt="OCA/account-invoicing" src="https://img.shields.io/badge/github-OCA%2Faccount--invoicing-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-invoicing-15-0/account-invoicing-15-0-account_invoice_view_payment"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&amp;target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
372+
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-invoicing/tree/16.0/account_invoice_view_payment"><img alt="OCA/account-invoicing" src="https://img.shields.io/badge/github-OCA%2Faccount--invoicing-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-invoicing-16-0/account-invoicing-16-0-account_invoice_view_payment"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373373
<p>This module allows users to access directly to the payment from an invoice
374374
when registering a payment or afterwards.</p>
375375
<p>The option to open the payment when it’s being registered is useful
@@ -413,7 +413,7 @@ <h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
413413
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-invoicing/issues">GitHub Issues</a>.
414414
In case of trouble, please check there if your issue has already been reported.
415415
If you spotted it first, help us to smash it by providing a detailed and welcomed
416-
<a class="reference external" href="https://github.com/OCA/account-invoicing/issues/new?body=module:%20account_invoice_view_payment%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
416+
<a class="reference external" href="https://github.com/OCA/account-invoicing/issues/new?body=module:%20account_invoice_view_payment%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
417417
<p>Do not contact contributors directly about support or help with technical issues.</p>
418418
</div>
419419
<div class="section" id="credits">
@@ -443,7 +443,7 @@ <h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
443443
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
444444
mission is to support the collaborative development of Odoo features and
445445
promote its widespread use.</p>
446-
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-invoicing/tree/15.0/account_invoice_view_payment">OCA/account-invoicing</a> project on GitHub.</p>
446+
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-invoicing/tree/16.0/account_invoice_view_payment">OCA/account-invoicing</a> project on GitHub.</p>
447447
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
448448
</div>
449449
</div>

account_invoice_view_payment/tests/test_account_invoice_view_payment.py

+67-42
Original file line numberDiff line numberDiff line change
@@ -6,89 +6,113 @@
66
from odoo.tests.common import TransactionCase
77

88

9+
# @tagged("post_install", "-at_install")
910
class TestAccountInvoiceViewPayment(TransactionCase):
1011
"""
1112
Tests for Account Invoice View Payment.
1213
"""
1314

14-
def setUp(self):
15-
super(TestAccountInvoiceViewPayment, self).setUp()
16-
group_ids = self.env.ref("account.group_account_invoice").ids
17-
self.test_user_1 = self.env["res.users"].create(
15+
@classmethod
16+
def setUpClass(cls):
17+
super().setUpClass()
18+
group_ids = cls.env.ref("account.group_account_invoice").ids
19+
cls.test_user_1 = cls.env["res.users"].create(
1820
{"name": "John", "login": "test1", "groups_id": [(6, 0, group_ids)]}
1921
)
20-
self.par_model = self.env["res.partner"]
21-
self.acc_model = self.env["account.account"]
22-
self.inv_model = self.env["account.move"]
23-
self.inv_line_model = self.env["account.move.line"]
24-
self.pay_model = self.env["account.payment"]
25-
self.reg_pay_model = self.env["account.payment.register"]
26-
27-
self.cash = self.env["account.journal"].create(
22+
cls.par_model = cls.env["res.partner"]
23+
cls.acc_model = cls.env["account.account"]
24+
cls.inv_model = cls.env["account.move"]
25+
cls.inv_line_model = cls.env["account.move.line"]
26+
cls.pay_model = cls.env["account.payment"]
27+
cls.reg_pay_model = cls.env["account.payment.register"]
28+
29+
cls.cash = cls.env["account.journal"].create(
2830
{"name": "Cash Test", "type": "cash", "code": "CT"}
2931
)
30-
self.payment_method_manual_in = self.env.ref(
32+
cls.payment_method_manual_in = cls.env.ref(
3133
"account.account_payment_method_manual_in"
3234
)
3335

34-
self.partner1 = self._create_partner()
35-
36-
self.invoice_account = self.acc_model.search(
37-
[
38-
(
39-
"user_type_id",
40-
"=",
41-
self.env.ref("account.data_account_type_revenue").id,
42-
)
43-
],
44-
limit=1,
36+
cls.default_line_account = cls.acc_model.create(
37+
{
38+
"name": "TESTACC",
39+
"code": "TESTACC",
40+
"account_type": "income",
41+
"deprecated": False,
42+
"company_id": cls.env.user.company_id.id,
43+
}
4544
)
4645

47-
self.invoice1 = self._create_invoice(self.partner1, "out_invoice")
48-
self.invoice2 = self._create_invoice(self.partner1, "in_invoice")
49-
self.invoice3 = self._create_invoice(self.partner1, "in_invoice")
50-
self.invoice2.invoice_date = self.invoice3.invoice_date = fields.Date.today()
46+
cls.inbound_payment_method_line = cls.cash.inbound_payment_method_line_ids[0]
47+
cls.outbound_payment_method_line = cls.cash.outbound_payment_method_line_ids[0]
48+
49+
cls.partner = cls._create_partner()
50+
cls.invoice1 = cls._create_invoice(cls.partner, "out_invoice")
51+
cls.invoice2 = cls._create_invoice(cls.partner, "in_invoice")
52+
cls.invoice3 = cls._create_invoice(cls.partner, "in_invoice")
53+
cls.invoice2.invoice_date = cls.invoice3.invoice_date = fields.Date.today()
5154

52-
def _create_partner(self):
53-
partner = self.par_model.create(
55+
@classmethod
56+
def _create_partner(cls):
57+
partner = cls.par_model.create(
5458
{"name": "Test Partner", "company_type": "company"}
5559
)
5660
return partner
5761

58-
def _create_invoice(self, partner, invoice_type):
59-
inv_line = [
62+
@classmethod
63+
def _create_invoice(cls, partner, invoice_type):
64+
cls.invoice_lines = [
6065
(
6166
0,
67+
False,
68+
{
69+
"name": "Test section",
70+
"display_type": "line_section",
71+
},
72+
),
73+
(
6274
0,
75+
False,
6376
{
64-
"product_id": self.env.ref("product.product_product_8").id,
65-
"name": "Test Invoice Line",
66-
"account_id": self.invoice_account.id,
77+
"name": "Test description #1",
78+
"account_id": cls.default_line_account.id,
6779
"quantity": 1.0,
68-
"price_unit": 3.0,
80+
"price_unit": 100.0,
6981
},
70-
)
82+
),
83+
(
84+
0,
85+
False,
86+
{
87+
"name": "Test description #2",
88+
"account_id": cls.default_line_account.id,
89+
"quantity": 2.0,
90+
"price_unit": 25.0,
91+
},
92+
),
7193
]
72-
invoice = self.inv_model.create(
94+
cls.invoice = cls.env["account.move"].create(
7395
{
74-
"partner_id": partner.id,
96+
"partner_id": cls.partner.id,
7597
"move_type": invoice_type,
76-
"invoice_line_ids": inv_line,
98+
"invoice_line_ids": cls.invoice_lines,
7799
}
78100
)
79-
return invoice
101+
return cls.invoice
80102

81103
def test_account_move_view_payment_out_invoice(self):
82104
self.invoice1.action_post()
83105
wiz = (
84-
self.pay_model.with_user(self.test_user_1)
106+
self.env["account.payment"]
107+
.with_user(self.test_user_1)
85108
.with_context(active_id=[self.invoice1.id], active_model="account.move")
86109
.create(
87110
{
88111
"journal_id": self.cash.id,
89112
"payment_method_id": self.payment_method_manual_in.id,
90113
"amount": self.invoice1.amount_residual,
91114
"payment_type": "inbound",
115+
"payment_method_line_id": self.inbound_payment_method_line.id,
92116
}
93117
)
94118
)
@@ -122,6 +146,7 @@ def test_account_move_view_payment_in_invoice(self):
122146
"payment_method_id": self.payment_method_manual_in.id,
123147
"amount": self.invoice2.amount_residual,
124148
"payment_type": "inbound",
149+
"payment_method_line_id": self.inbound_payment_method_line.id,
125150
}
126151
)
127152
)

0 commit comments

Comments
 (0)