odoo-addon-account-banking-mandate 16.0.1.3.3__py3-none-any.whl → 16.0.1.3.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_banking_mandate/README.rst +1 -1
- odoo/addons/account_banking_mandate/__manifest__.py +1 -1
- odoo/addons/account_banking_mandate/static/description/index.html +1 -1
- odoo/addons/account_banking_mandate/tests/test_invoice_mandate.py +19 -2
- odoo/addons/account_banking_mandate/tests/test_mandate.py +55 -18
- {odoo_addon_account_banking_mandate-16.0.1.3.3.dist-info → odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info}/METADATA +4 -4
- {odoo_addon_account_banking_mandate-16.0.1.3.3.dist-info → odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info}/RECORD +9 -9
- {odoo_addon_account_banking_mandate-16.0.1.3.3.dist-info → odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info}/WHEEL +1 -1
- {odoo_addon_account_banking_mandate-16.0.1.3.3.dist-info → odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ Account Banking Mandate
|
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
8
|
!! changes will be overwritten. !!
|
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
10
|
+
!! source digest: sha256:d9ec3039f02e9ffcb38fcb853907a3edf85991a280bd5c9c68745cc7bf9483ac
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
368
|
!! changes will be overwritten. !!
|
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
370
|
+
!! source digest: sha256:d9ec3039f02e9ffcb38fcb853907a3edf85991a280bd5c9c68745cc7bf9483ac
|
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.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/bank-payment/tree/16.0/account_banking_mandate"><img alt="OCA/bank-payment" src="https://img.shields.io/badge/github-OCA%2Fbank--payment-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/bank-payment-16-0/bank-payment-16-0-account_banking_mandate"><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/bank-payment&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
373
|
<p>This module adds a generic model for banking mandates.
|
|
@@ -5,12 +5,13 @@ from unittest.mock import patch
|
|
|
5
5
|
|
|
6
6
|
from odoo import fields
|
|
7
7
|
from odoo.exceptions import UserError
|
|
8
|
-
from odoo.tests.common import TransactionCase
|
|
8
|
+
from odoo.tests.common import TransactionCase, tagged
|
|
9
9
|
|
|
10
10
|
from odoo.addons.account.models.account_payment_method import AccountPaymentMethod
|
|
11
11
|
from odoo.addons.base.tests.common import DISABLED_MAIL_CONTEXT
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
@tagged("post_install", "-at_install")
|
|
14
15
|
class TestInvoiceMandate(TransactionCase):
|
|
15
16
|
def test_post_invoice_01(self):
|
|
16
17
|
self.assertEqual(self.invoice.mandate_id, self.mandate)
|
|
@@ -208,6 +209,16 @@ class TestInvoiceMandate(TransactionCase):
|
|
|
208
209
|
res = super().setUpClass()
|
|
209
210
|
cls.env = cls.env(context=dict(cls.env.context, **DISABLED_MAIL_CONTEXT))
|
|
210
211
|
cls.company = cls.env.ref("base.main_company")
|
|
212
|
+
if not cls.company.chart_template_id:
|
|
213
|
+
# Load a CoA if there's none in the company
|
|
214
|
+
coa = cls.env.ref("l10n_generic_coa.configurable_chart_template", False)
|
|
215
|
+
if not coa:
|
|
216
|
+
# Load the first available CoA
|
|
217
|
+
coa = cls.env["account.chart.template"].search(
|
|
218
|
+
[("visible", "=", True)], limit=1
|
|
219
|
+
)
|
|
220
|
+
coa.try_loading(company=cls.company, install_demo=False)
|
|
221
|
+
|
|
211
222
|
cls.partner = cls._create_res_partner("Peter with ACME Bank")
|
|
212
223
|
cls.acme_bank = cls._create_res_bank(
|
|
213
224
|
"ACME Bank", "GEBABEBB03B", "Charleroi", cls.env.ref("base.be")
|
|
@@ -268,12 +279,18 @@ class TestInvoiceMandate(TransactionCase):
|
|
|
268
279
|
)
|
|
269
280
|
.id
|
|
270
281
|
)
|
|
282
|
+
cls.product = cls.env["product.product"].create(
|
|
283
|
+
{
|
|
284
|
+
"name": "Test product",
|
|
285
|
+
"type": "service",
|
|
286
|
+
}
|
|
287
|
+
)
|
|
271
288
|
invoice_vals = [
|
|
272
289
|
(
|
|
273
290
|
0,
|
|
274
291
|
0,
|
|
275
292
|
{
|
|
276
|
-
"product_id": cls.
|
|
293
|
+
"product_id": cls.product.id,
|
|
277
294
|
"quantity": 1.0,
|
|
278
295
|
"account_id": invoice_line_account,
|
|
279
296
|
"price_unit": 200.00,
|
|
@@ -5,21 +5,52 @@ from datetime import timedelta
|
|
|
5
5
|
|
|
6
6
|
from odoo import fields
|
|
7
7
|
from odoo.exceptions import UserError, ValidationError
|
|
8
|
-
from odoo.tests.common import TransactionCase
|
|
8
|
+
from odoo.tests.common import TransactionCase, tagged
|
|
9
9
|
|
|
10
10
|
from odoo.addons.base.tests.common import DISABLED_MAIL_CONTEXT
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
@tagged("post_install", "-at_install")
|
|
13
14
|
class TestMandate(TransactionCase):
|
|
14
15
|
@classmethod
|
|
15
16
|
def setUpClass(cls):
|
|
16
17
|
res = super(TestMandate, cls).setUpClass()
|
|
17
18
|
cls.env = cls.env(context=dict(cls.env.context, **DISABLED_MAIL_CONTEXT))
|
|
18
19
|
cls.company = cls.env.ref("base.main_company")
|
|
20
|
+
if not cls.company.chart_template_id:
|
|
21
|
+
# Load a CoA if there's none in the company
|
|
22
|
+
coa = cls.env.ref("l10n_generic_coa.configurable_chart_template", False)
|
|
23
|
+
if not coa:
|
|
24
|
+
# Load the first available CoA
|
|
25
|
+
coa = cls.env["account.chart.template"].search(
|
|
26
|
+
[("visible", "=", True)], limit=1
|
|
27
|
+
)
|
|
28
|
+
coa.try_loading(company=cls.company, install_demo=False)
|
|
19
29
|
cls.company_2 = cls.env["res.company"].create({"name": "Company 2"})
|
|
20
30
|
cls.company_2.partner_id.company_id = cls.company_2.id
|
|
21
|
-
cls.
|
|
22
|
-
|
|
31
|
+
cls.partner = cls.env["res.partner"].create(
|
|
32
|
+
{
|
|
33
|
+
"name": "Test Partner",
|
|
34
|
+
"company_id": cls.company.id,
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
cls.bank = cls.env["res.bank"].create(
|
|
38
|
+
{
|
|
39
|
+
"name": "Fiducial Banque",
|
|
40
|
+
"bic": "FIDCFR21XXX",
|
|
41
|
+
"street": "38 rue Sergent Michel Berthet",
|
|
42
|
+
"zip": "69009",
|
|
43
|
+
"city": "Lyon",
|
|
44
|
+
"country": cls.env.ref("base.fr").id,
|
|
45
|
+
}
|
|
46
|
+
)
|
|
47
|
+
cls.bank_account = cls.env["res.partner.bank"].create(
|
|
48
|
+
{
|
|
49
|
+
"partner_id": cls.partner.id,
|
|
50
|
+
"bank_id": cls.bank.id,
|
|
51
|
+
"acc_number": "FR66 1212 1212 1212 1212 1212 121",
|
|
52
|
+
}
|
|
53
|
+
)
|
|
23
54
|
cls.mandate = cls.env["account.banking.mandate"].create(
|
|
24
55
|
{
|
|
25
56
|
"partner_bank_id": cls.bank_account.id,
|
|
@@ -54,10 +85,22 @@ class TestMandate(TransactionCase):
|
|
|
54
85
|
self.mandate.cancel()
|
|
55
86
|
|
|
56
87
|
def test_onchange_methods(self):
|
|
57
|
-
|
|
88
|
+
partner = self.env["res.partner"].create(
|
|
89
|
+
{
|
|
90
|
+
"name": "Test Partner 2",
|
|
91
|
+
"company_id": self.company.id,
|
|
92
|
+
}
|
|
93
|
+
)
|
|
94
|
+
bank_account_2 = self.env["res.partner.bank"].create(
|
|
95
|
+
{
|
|
96
|
+
"partner_id": partner.id,
|
|
97
|
+
"bank_id": self.bank.id,
|
|
98
|
+
"acc_number": "FR66 1212 1212 1212 1212 1212 121",
|
|
99
|
+
}
|
|
100
|
+
)
|
|
58
101
|
self.mandate.partner_bank_id = bank_account_2
|
|
59
102
|
self.mandate.mandate_partner_bank_change()
|
|
60
|
-
self.assertEqual(self.mandate.partner_id,
|
|
103
|
+
self.assertEqual(self.mandate.partner_id, partner)
|
|
61
104
|
|
|
62
105
|
def test_constrains_01(self):
|
|
63
106
|
self.mandate.validate()
|
|
@@ -101,10 +144,9 @@ class TestMandate(TransactionCase):
|
|
|
101
144
|
Test case: create a mandate with no reference
|
|
102
145
|
Expected result: the reference of the created mandate is not empty
|
|
103
146
|
"""
|
|
104
|
-
bank_account = self.env.ref("account_payment_mode.res_partner_12_iban")
|
|
105
147
|
mandate = self.env["account.banking.mandate"].create(
|
|
106
148
|
{
|
|
107
|
-
"partner_bank_id": bank_account.id,
|
|
149
|
+
"partner_bank_id": self.bank_account.id,
|
|
108
150
|
"signature_date": "2015-01-01",
|
|
109
151
|
"company_id": self.company.id,
|
|
110
152
|
}
|
|
@@ -116,10 +158,9 @@ class TestMandate(TransactionCase):
|
|
|
116
158
|
Test case: create a mandate with "ref01" as reference
|
|
117
159
|
Expected result: the reference of the created mandate is "ref01"
|
|
118
160
|
"""
|
|
119
|
-
bank_account = self.env.ref("account_payment_mode.res_partner_12_iban")
|
|
120
161
|
mandate = self.env["account.banking.mandate"].create(
|
|
121
162
|
{
|
|
122
|
-
"partner_bank_id": bank_account.id,
|
|
163
|
+
"partner_bank_id": self.bank_account.id,
|
|
123
164
|
"signature_date": "2015-01-01",
|
|
124
165
|
"company_id": self.company.id,
|
|
125
166
|
"unique_mandate_reference": "ref01",
|
|
@@ -132,10 +173,9 @@ class TestMandate(TransactionCase):
|
|
|
132
173
|
Test case: create a mandate with "TEST" as reference
|
|
133
174
|
Expected result: the reference of the created mandate is "TEST"
|
|
134
175
|
"""
|
|
135
|
-
bank_account = self.env.ref("account_payment_mode.res_partner_12_iban")
|
|
136
176
|
mandate = self.env["account.banking.mandate"].create(
|
|
137
177
|
{
|
|
138
|
-
"partner_bank_id": bank_account.id,
|
|
178
|
+
"partner_bank_id": self.bank_account.id,
|
|
139
179
|
"signature_date": "2015-01-01",
|
|
140
180
|
"company_id": self.company.id,
|
|
141
181
|
"unique_mandate_reference": "TEST",
|
|
@@ -149,10 +189,9 @@ class TestMandate(TransactionCase):
|
|
|
149
189
|
Test case: create a mandate with "/" as reference
|
|
150
190
|
Expected result: the reference of the created mandate is not "/"
|
|
151
191
|
"""
|
|
152
|
-
bank_account = self.env.ref("account_payment_mode.res_partner_12_iban")
|
|
153
192
|
mandate = self.env["account.banking.mandate"].create(
|
|
154
193
|
{
|
|
155
|
-
"partner_bank_id": bank_account.id,
|
|
194
|
+
"partner_bank_id": self.bank_account.id,
|
|
156
195
|
"signature_date": "2015-01-01",
|
|
157
196
|
"company_id": self.company.id,
|
|
158
197
|
"unique_mandate_reference": "/",
|
|
@@ -166,10 +205,9 @@ class TestMandate(TransactionCase):
|
|
|
166
205
|
Test case: create a mandate without reference
|
|
167
206
|
Expected result: the reference of the created mandate is not empty
|
|
168
207
|
"""
|
|
169
|
-
bank_account = self.env.ref("account_payment_mode.res_partner_12_iban")
|
|
170
208
|
mandate = self.env["account.banking.mandate"].create(
|
|
171
209
|
{
|
|
172
|
-
"partner_bank_id": bank_account.id,
|
|
210
|
+
"partner_bank_id": self.bank_account.id,
|
|
173
211
|
"signature_date": "2015-01-01",
|
|
174
212
|
"company_id": self.company.id,
|
|
175
213
|
}
|
|
@@ -181,10 +219,9 @@ class TestMandate(TransactionCase):
|
|
|
181
219
|
Test case: create a mandate with False as reference (empty with UX)
|
|
182
220
|
Expected result: the reference of the created mandate is not False
|
|
183
221
|
"""
|
|
184
|
-
bank_account = self.env.ref("account_payment_mode.res_partner_12_iban")
|
|
185
222
|
mandate_1 = self.env["account.banking.mandate"].create(
|
|
186
223
|
{
|
|
187
|
-
"partner_bank_id": bank_account.id,
|
|
224
|
+
"partner_bank_id": self.bank_account.id,
|
|
188
225
|
"signature_date": "2015-01-01",
|
|
189
226
|
"company_id": self.company.id,
|
|
190
227
|
"unique_mandate_reference": False,
|
|
@@ -193,7 +230,7 @@ class TestMandate(TransactionCase):
|
|
|
193
230
|
self.assertTrue(mandate_1.unique_mandate_reference)
|
|
194
231
|
mandate_2 = self.env["account.banking.mandate"].create(
|
|
195
232
|
{
|
|
196
|
-
"partner_bank_id": bank_account.id,
|
|
233
|
+
"partner_bank_id": self.bank_account.id,
|
|
197
234
|
"signature_date": "2015-01-01",
|
|
198
235
|
"company_id": self.company.id,
|
|
199
236
|
"unique_mandate_reference": "",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_banking_mandate
|
|
3
|
-
Version: 16.0.1.3.
|
|
3
|
+
Version: 16.0.1.3.5
|
|
4
4
|
Summary: Banking mandates
|
|
5
5
|
Home-page: https://github.com/OCA/bank-payment
|
|
6
6
|
Author: Compassion CH, Tecnativa, Akretion, Therp B.V., Odoo Community Association (OCA)
|
|
@@ -12,8 +12,8 @@ Classifier: Framework :: Odoo :: 16.0
|
|
|
12
12
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Requires-Python: >=3.10
|
|
15
|
-
Requires-Dist: odoo-addon-account-payment-order
|
|
16
|
-
Requires-Dist: odoo
|
|
15
|
+
Requires-Dist: odoo-addon-account-payment-order<16.1dev,>=16.0dev
|
|
16
|
+
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
17
17
|
|
|
18
18
|
=======================
|
|
19
19
|
Account Banking Mandate
|
|
@@ -24,7 +24,7 @@ Account Banking Mandate
|
|
|
24
24
|
!! This file is generated by oca-gen-addon-readme !!
|
|
25
25
|
!! changes will be overwritten. !!
|
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
|
-
!! source digest: sha256:
|
|
27
|
+
!! source digest: sha256:d9ec3039f02e9ffcb38fcb853907a3edf85991a280bd5c9c68745cc7bf9483ac
|
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
29
|
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/account_banking_mandate/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_banking_mandate/README.rst,sha256=AY2NG5HGPTgwethO65RNLqDMiq8B-xKuuFvHnUpgD0Y,3917
|
|
2
2
|
odoo/addons/account_banking_mandate/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
|
|
3
|
-
odoo/addons/account_banking_mandate/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_banking_mandate/__manifest__.py,sha256=q0-Nf5rZaj52WUT7hwivEcxALbBY0uFSba-8Y-KkR00,1199
|
|
4
4
|
odoo/addons/account_banking_mandate/data/mandate_reference_sequence.xml,sha256=Pne_W7tMPmZPLXorBXyeP30OhAUl6tJaAoPFDCg4_ug,381
|
|
5
5
|
odoo/addons/account_banking_mandate/i18n/account_banking_mandate.pot,sha256=M4ArxbaxjQDHrJNRuqwx43B_512mQFcdqU3LvyKgTvg,22264
|
|
6
6
|
odoo/addons/account_banking_mandate/i18n/am.po,sha256=LxemBs85czlD6QwYmL27bXmdCMzQz8nKAsWKT5L9HXs,22648
|
|
@@ -53,17 +53,17 @@ odoo/addons/account_banking_mandate/readme/USAGE.rst,sha256=bGf8r-kiaS29WfWjwEZL
|
|
|
53
53
|
odoo/addons/account_banking_mandate/security/ir.model.access.csv,sha256=66g45xnkyv9SFcqo06-lhF_ffqxLVDfTSiChc_MSxNQ,358
|
|
54
54
|
odoo/addons/account_banking_mandate/security/mandate_security.xml,sha256=WbewZ27MzIpwIwNm22uZSxgDPejYQ7fkCtAdaJJqIwc,762
|
|
55
55
|
odoo/addons/account_banking_mandate/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
56
|
-
odoo/addons/account_banking_mandate/static/description/index.html,sha256=
|
|
56
|
+
odoo/addons/account_banking_mandate/static/description/index.html,sha256=sBlQxuBmmBXJofKxs99J8Fyn91h5gwkrctaE1TJe_FM,14487
|
|
57
57
|
odoo/addons/account_banking_mandate/tests/__init__.py,sha256=VYtfoW8h3bB01yKyMfXK9lLWooWPaxF2lTd40c5xwUo,62
|
|
58
|
-
odoo/addons/account_banking_mandate/tests/test_invoice_mandate.py,sha256=
|
|
59
|
-
odoo/addons/account_banking_mandate/tests/test_mandate.py,sha256=
|
|
58
|
+
odoo/addons/account_banking_mandate/tests/test_invoice_mandate.py,sha256=sZhapdsA8O9eFNy_LMQwicO3JEYh0xBMIR28p7on9_A,11165
|
|
59
|
+
odoo/addons/account_banking_mandate/tests/test_mandate.py,sha256=2A2JkScW-RJZW7rvBuBOPhpD3zx23Phlc04eIQrbczQ,8874
|
|
60
60
|
odoo/addons/account_banking_mandate/views/account_banking_mandate_view.xml,sha256=r97sI5fq2CmeDQl8WefgvTBaOinOCa9SQjAO0h2bjME,9995
|
|
61
61
|
odoo/addons/account_banking_mandate/views/account_move_view.xml,sha256=9MLc5hLMk1BLxBWoduB_0PeWPErkza6CkjThqqlSGeU,1103
|
|
62
62
|
odoo/addons/account_banking_mandate/views/account_payment_line.xml,sha256=t_tnl1-Kf8oPfwhRcy6zSfApiaETeVI_muBT8oNhJEo,1763
|
|
63
63
|
odoo/addons/account_banking_mandate/views/account_payment_method.xml,sha256=xjrdpvlyMtnAWsUz34EkTqqlferFW-kDKb9y653hncQ,711
|
|
64
64
|
odoo/addons/account_banking_mandate/views/res_partner.xml,sha256=GpZpEIPSBQhYNhKlGIthnkYABy4rNMF1z2keGRq0nH4,1087
|
|
65
65
|
odoo/addons/account_banking_mandate/views/res_partner_bank_view.xml,sha256=5RMHyCc4ouinkLNbHGJb9APNodbBLP3kB7JBFmY39oM,1439
|
|
66
|
-
odoo_addon_account_banking_mandate-16.0.1.3.
|
|
67
|
-
odoo_addon_account_banking_mandate-16.0.1.3.
|
|
68
|
-
odoo_addon_account_banking_mandate-16.0.1.3.
|
|
69
|
-
odoo_addon_account_banking_mandate-16.0.1.3.
|
|
66
|
+
odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info/METADATA,sha256=RLvUqgmWEoxalEYWJp-f3eyZOvMv8FNxwZ48afJRZY0,4589
|
|
67
|
+
odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
68
|
+
odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
69
|
+
odoo_addon_account_banking_mandate-16.0.1.3.5.dist-info/RECORD,,
|