odoo-addon-account-credit-control 15.0.1.3.2.1__py3-none-any.whl → 15.0.1.3.3__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_credit_control/README.rst +6 -2
- odoo/addons/account_credit_control/__manifest__.py +1 -1
- odoo/addons/account_credit_control/models/credit_control_line.py +3 -2
- odoo/addons/account_credit_control/models/credit_control_run.py +4 -5
- odoo/addons/account_credit_control/static/description/index.html +25 -17
- odoo/addons/account_credit_control/wizard/credit_control_policy_changer.py +3 -3
- {odoo_addon_account_credit_control-15.0.1.3.2.1.dist-info → odoo_addon_account_credit_control-15.0.1.3.3.dist-info}/METADATA +9 -8
- {odoo_addon_account_credit_control-15.0.1.3.2.1.dist-info → odoo_addon_account_credit_control-15.0.1.3.3.dist-info}/RECORD +10 -10
- {odoo_addon_account_credit_control-15.0.1.3.2.1.dist-info → odoo_addon_account_credit_control-15.0.1.3.3.dist-info}/WHEEL +1 -1
- {odoo_addon_account_credit_control-15.0.1.3.2.1.dist-info → odoo_addon_account_credit_control-15.0.1.3.3.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
1
5
|
======================
|
|
2
6
|
Account Credit Control
|
|
3
7
|
======================
|
|
@@ -7,13 +11,13 @@ Account Credit Control
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:205d25247a8a06815902d5c6b1d3c73be343f3abd8ec6b3f9ef45fa1fd8b7a68
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcredit--control-lightgray.png?logo=github
|
|
@@ -294,9 +294,10 @@ class CreditControlLine(models.Model):
|
|
|
294
294
|
|
|
295
295
|
def button_credit_control_line_form(self):
|
|
296
296
|
self.ensure_one()
|
|
297
|
-
action = self.env.
|
|
297
|
+
action = self.env["ir.actions.act_window"]._for_xml_id(
|
|
298
|
+
"account_credit_control.credit_control_line_action"
|
|
299
|
+
)
|
|
298
300
|
form = self.env.ref("account_credit_control.credit_control_line_form")
|
|
299
|
-
action = action.read()[0]
|
|
300
301
|
action["views"] = [(form.id, "form")]
|
|
301
302
|
action["res_id"] = self.id
|
|
302
303
|
return action
|
|
@@ -182,10 +182,9 @@ class CreditControlRun(models.Model):
|
|
|
182
182
|
def open_credit_communications(self):
|
|
183
183
|
"""Open the generated communications."""
|
|
184
184
|
self.ensure_one()
|
|
185
|
-
action = self.env.
|
|
185
|
+
action = self.env["ir.actions.act_window"]._for_xml_id(
|
|
186
186
|
"account_credit_control.credit_control_communication_action"
|
|
187
187
|
)
|
|
188
|
-
action = action.read()[0]
|
|
189
188
|
action["domain"] = [
|
|
190
189
|
("id", "in", self.mapped("line_ids.communication_id").ids),
|
|
191
190
|
]
|
|
@@ -194,9 +193,9 @@ class CreditControlRun(models.Model):
|
|
|
194
193
|
def open_credit_lines(self):
|
|
195
194
|
"""Open the generated lines"""
|
|
196
195
|
self.ensure_one()
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
196
|
+
action = self.env["ir.actions.act_window"]._for_xml_id(
|
|
197
|
+
"account_credit_control.credit_control_line_action"
|
|
198
|
+
)
|
|
200
199
|
action["domain"] = [("id", "in", self.line_ids.ids)]
|
|
201
200
|
return action
|
|
202
201
|
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
2
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
3
|
<head>
|
|
5
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
7
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
8
7
|
<style type="text/css">
|
|
9
8
|
|
|
10
9
|
/*
|
|
11
10
|
:Author: David Goodger (goodger@python.org)
|
|
12
|
-
:Id: $Id: html4css1.css
|
|
11
|
+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
|
13
12
|
:Copyright: This stylesheet has been placed in the public domain.
|
|
14
13
|
|
|
15
14
|
Default cascading style sheet for the HTML output of Docutils.
|
|
15
|
+
Despite the name, some widely supported CSS2 features are used.
|
|
16
16
|
|
|
17
17
|
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
|
18
18
|
customize this style sheet.
|
|
@@ -275,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
|
|
275
275
|
margin-left: 2em ;
|
|
276
276
|
margin-right: 2em }
|
|
277
277
|
|
|
278
|
-
pre.code .ln { color:
|
|
278
|
+
pre.code .ln { color: gray; } /* line numbers */
|
|
279
279
|
pre.code, code { background-color: #eeeeee }
|
|
280
280
|
pre.code .comment, code .comment { color: #5C6576 }
|
|
281
281
|
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
|
@@ -301,7 +301,7 @@ span.option {
|
|
|
301
301
|
span.pre {
|
|
302
302
|
white-space: pre }
|
|
303
303
|
|
|
304
|
-
span.problematic {
|
|
304
|
+
span.problematic, pre.problematic {
|
|
305
305
|
color: red }
|
|
306
306
|
|
|
307
307
|
span.section-subtitle {
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Account Credit Control</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="account-credit-control">
|
|
370
|
+
<h1>Account Credit Control</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:205d25247a8a06815902d5c6b1d3c73be343f3abd8ec6b3f9ef45fa1fd8b7a68
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
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/
|
|
377
|
+
<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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/credit-control/tree/15.0/account_credit_control"><img alt="OCA/credit-control" src="https://img.shields.io/badge/github-OCA%2Fcredit--control-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/credit-control-15-0/credit-control-15-0-account_credit_control"><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/credit-control&target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>Account Credit Control module is a part of Financial Tools used in business to
|
|
374
379
|
ensure that once sales are made they are realised as cash. This module helps to
|
|
375
380
|
identify outstanding debt beyond tolerance level and setup followup method.</p>
|
|
@@ -388,7 +393,7 @@ identify outstanding debt beyond tolerance level and setup followup method.</p>
|
|
|
388
393
|
</ul>
|
|
389
394
|
</div>
|
|
390
395
|
<div class="section" id="configuration">
|
|
391
|
-
<
|
|
396
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
|
|
392
397
|
<p>Configure the policies and policy levels in <tt class="docutils literal">Invoicing > Configuration >
|
|
393
398
|
Credit Control > Credit Control Policies</tt>.
|
|
394
399
|
You can define as many policy levels as you need. You must set on which
|
|
@@ -399,7 +404,7 @@ company form.</p>
|
|
|
399
404
|
<p>You are able to specify a particular policy for one partner or one invoice.</p>
|
|
400
405
|
</div>
|
|
401
406
|
<div class="section" id="usage">
|
|
402
|
-
<
|
|
407
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2>
|
|
403
408
|
<p>Menu entries are located in <em>Invoicing > Adviser > Credit Control</em>.</p>
|
|
404
409
|
<p>Create a new “run” in the <em>Credit Control Run</em> menu with the controlling date.
|
|
405
410
|
Then, use the <em>Compute Credit Lines</em> button. All the credit control lines will
|
|
@@ -423,7 +428,7 @@ letters for all linked lines.</p>
|
|
|
423
428
|
processes that have been created and follow them.</p>
|
|
424
429
|
</div>
|
|
425
430
|
<div class="section" id="bug-tracker">
|
|
426
|
-
<
|
|
431
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h2>
|
|
427
432
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/credit-control/issues">GitHub Issues</a>.
|
|
428
433
|
In case of trouble, please check there if your issue has already been reported.
|
|
429
434
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -431,9 +436,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
431
436
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
432
437
|
</div>
|
|
433
438
|
<div class="section" id="credits">
|
|
434
|
-
<
|
|
439
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2>
|
|
435
440
|
<div class="section" id="authors">
|
|
436
|
-
<
|
|
441
|
+
<h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
|
|
437
442
|
<ul class="simple">
|
|
438
443
|
<li>Camptocamp</li>
|
|
439
444
|
<li>Okia</li>
|
|
@@ -443,7 +448,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
443
448
|
</ul>
|
|
444
449
|
</div>
|
|
445
450
|
<div class="section" id="contributors">
|
|
446
|
-
<
|
|
451
|
+
<h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3>
|
|
447
452
|
<ul class="simple">
|
|
448
453
|
<li>Nicolas Bessi (Camptocamp)</li>
|
|
449
454
|
<li>Guewen Baconnier (Camptocamp)</li>
|
|
@@ -468,9 +473,11 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
468
473
|
</ul>
|
|
469
474
|
</div>
|
|
470
475
|
<div class="section" id="maintainers">
|
|
471
|
-
<
|
|
476
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
|
|
472
477
|
<p>This module is maintained by the OCA.</p>
|
|
473
|
-
<a class="reference external image-reference" href="https://odoo-community.org"
|
|
478
|
+
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
479
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
480
|
+
</a>
|
|
474
481
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
475
482
|
mission is to support the collaborative development of Odoo features and
|
|
476
483
|
promote its widespread use.</p>
|
|
@@ -479,5 +486,6 @@ promote its widespread use.</p>
|
|
|
479
486
|
</div>
|
|
480
487
|
</div>
|
|
481
488
|
</div>
|
|
489
|
+
</div>
|
|
482
490
|
</body>
|
|
483
491
|
</html>
|
|
@@ -135,8 +135,8 @@ class CreditControlPolicyChanger(models.TransientModel):
|
|
|
135
135
|
if not generated_lines:
|
|
136
136
|
return {"type": "ir.actions.act_window_close"}
|
|
137
137
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
138
|
+
action = self.env["ir.actions.act_window"]._for_xml_id(
|
|
139
|
+
"account_credit_control.credit_control_line_action"
|
|
140
|
+
)
|
|
141
141
|
action["domain"] = [("id", "in", generated_lines.ids)]
|
|
142
142
|
return action
|
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
|
-
Name: odoo-addon-
|
|
3
|
-
Version: 15.0.1.3.
|
|
2
|
+
Name: odoo-addon-account_credit_control
|
|
3
|
+
Version: 15.0.1.3.3
|
|
4
4
|
Summary: Account Credit Control
|
|
5
5
|
Home-page: https://github.com/OCA/credit-control
|
|
6
6
|
Author: Camptocamp,Odoo Community Association (OCA),Okia,Access Bookings,Tecnativa,ACSONE SA/NV
|
|
7
7
|
Author-email: support@odoo-community.org
|
|
8
8
|
License: AGPL-3
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
Classifier: Programming Language :: Python
|
|
11
10
|
Classifier: Framework :: Odoo
|
|
12
11
|
Classifier: Framework :: Odoo :: 15.0
|
|
13
12
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
14
13
|
Requires-Python: >=3.8
|
|
15
|
-
Requires-Dist: odoo
|
|
14
|
+
Requires-Dist: odoo<15.1dev,>=15.0a
|
|
15
|
+
|
|
16
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
17
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
18
|
+
:alt: Odoo Community Association
|
|
16
19
|
|
|
17
20
|
======================
|
|
18
21
|
Account Credit Control
|
|
@@ -23,13 +26,13 @@ Account Credit Control
|
|
|
23
26
|
!! This file is generated by oca-gen-addon-readme !!
|
|
24
27
|
!! changes will be overwritten. !!
|
|
25
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
26
|
-
!! source digest: sha256:
|
|
29
|
+
!! source digest: sha256:205d25247a8a06815902d5c6b1d3c73be343f3abd8ec6b3f9ef45fa1fd8b7a68
|
|
27
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
31
|
|
|
29
32
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
30
33
|
:target: https://odoo-community.org/page/development-status
|
|
31
34
|
:alt: Beta
|
|
32
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
35
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
33
36
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
34
37
|
:alt: License: AGPL-3
|
|
35
38
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcredit--control-lightgray.png?logo=github
|
|
@@ -155,5 +158,3 @@ promote its widespread use.
|
|
|
155
158
|
This module is part of the `OCA/credit-control <https://github.com/OCA/credit-control/tree/15.0/account_credit_control>`_ project on GitHub.
|
|
156
159
|
|
|
157
160
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
158
|
-
|
|
159
|
-
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/account_credit_control/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_credit_control/README.rst,sha256=8ilkSFZualP6NgZXY1az9c7rvwSmXk1iQgRobCGuP30,5387
|
|
2
2
|
odoo/addons/account_credit_control/__init__.py,sha256=8MjrwJNjAjKy6j77I1529EUbQMh7TZ867lnz-KzifyI,127
|
|
3
|
-
odoo/addons/account_credit_control/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_credit_control/__manifest__.py,sha256=C64koFHEFkqa4LWibaXNjL6aNbDzz1iKAd1t1-DXwd4,1718
|
|
4
4
|
odoo/addons/account_credit_control/data/data.xml,sha256=zmKKQktO2Mgsbd1pgv45iKysz7mIExtfYhNJzHpIDD8,10792
|
|
5
5
|
odoo/addons/account_credit_control/demo/res_users.xml,sha256=KWDhrbbE4VTCHpkvFMu49yeLkGdwIson7hOkboR-0dE,372
|
|
6
6
|
odoo/addons/account_credit_control/i18n/account_credit_control.pot,sha256=GiTMLIV08my3UVfPdH_uB9AvxBjo4xF7EiUQdfO1sDY,78135
|
|
@@ -86,9 +86,9 @@ odoo/addons/account_credit_control/models/__init__.py,sha256=sb3eOYTLCrhAigyAPEq
|
|
|
86
86
|
odoo/addons/account_credit_control/models/account_account.py,sha256=k7A1hrH2xi-em9uvuBsYuAj-UviL1s_X7wK0GprbZI4,503
|
|
87
87
|
odoo/addons/account_credit_control/models/account_move.py,sha256=3b_eTzR2K3SJ6A50mueFa7wyG48iKWhoOdMfkGh4Msk,2222
|
|
88
88
|
odoo/addons/account_credit_control/models/credit_control_communication.py,sha256=sK1sljVw6xgKM4AD6oWI2QshcPdxG3YOAJUveaZoGY8,9299
|
|
89
|
-
odoo/addons/account_credit_control/models/credit_control_line.py,sha256=
|
|
89
|
+
odoo/addons/account_credit_control/models/credit_control_line.py,sha256=TmGzkXsMEHlQB1x-JWgf8mlnLgu5amgzB0-C3jBxV2c,10696
|
|
90
90
|
odoo/addons/account_credit_control/models/credit_control_policy.py,sha256=TP_bOGWAB3Z6gHuBLlmZmUVrwxpcI1dqMTrnslEqAxk,15494
|
|
91
|
-
odoo/addons/account_credit_control/models/credit_control_run.py,sha256=
|
|
91
|
+
odoo/addons/account_credit_control/models/credit_control_run.py,sha256=FlcVXLbsPIZvkX4Kzdxh7Eg0xW0S5C4qLV1VZNlrbIA,7554
|
|
92
92
|
odoo/addons/account_credit_control/models/mail_mail.py,sha256=Dj9BtaMn-Bda7LJ75CWbtO2nmq4qBcWyB8NBeH7Kkfg,1173
|
|
93
93
|
odoo/addons/account_credit_control/models/mail_message.py,sha256=C1zd3qjv6gyJm12CZZxQX9HJsPWuovovuMvYygMYG1k,784
|
|
94
94
|
odoo/addons/account_credit_control/models/res_company.py,sha256=vmoBLc6EmvuwRgUeISjkrDKjwcxv_y94ejVDOA5FDmE,793
|
|
@@ -108,7 +108,7 @@ odoo/addons/account_credit_control/security/acl_account_credit_control_analysis.
|
|
|
108
108
|
odoo/addons/account_credit_control/security/acl_res_partner_payment_action_type.xml,sha256=7NzTwW2slprIvbxh8dIgOGllSFBbvwU4-f07G77jgrI,1302
|
|
109
109
|
odoo/addons/account_credit_control/security/ir.model.access.csv,sha256=uNeDMu3L6DpRgu3Bx9TqdKE3JsdcnH4k7542g6Y9bOA,4909
|
|
110
110
|
odoo/addons/account_credit_control/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
111
|
-
odoo/addons/account_credit_control/static/description/index.html,sha256=
|
|
111
|
+
odoo/addons/account_credit_control/static/description/index.html,sha256=Enujg4palQDDtPe3whbTQ11ZgpLXJN_WI2VezYyoV4o,16012
|
|
112
112
|
odoo/addons/account_credit_control/tests/__init__.py,sha256=ytdwXdWp6qfFDhN08R3rfI-w_AriEuONj3VSBV3Ztb0,206
|
|
113
113
|
odoo/addons/account_credit_control/tests/test_account_move.py,sha256=8Jl6Mkqo56NNA4AZLxIf5rJ3sW4UT9IvaP6nBoz1_gg,11849
|
|
114
114
|
odoo/addons/account_credit_control/tests/test_credit_control_policy.py,sha256=d73YU-DIcLFt0O0HPTByfnCAFFlSKxbUrg-ovxgglKg,3446
|
|
@@ -127,12 +127,12 @@ odoo/addons/account_credit_control/wizard/credit_control_emailer.py,sha256=ixD4W
|
|
|
127
127
|
odoo/addons/account_credit_control/wizard/credit_control_emailer_view.xml,sha256=OU73yG5zcDwoXLhmMBxP0xs-EyyMZo6PhLZ1gzyKzcc,2049
|
|
128
128
|
odoo/addons/account_credit_control/wizard/credit_control_marker.py,sha256=aQhe9jPabAzyi_O65ZLfoOAAFDFwvKCgJujcCvR1C2E,2712
|
|
129
129
|
odoo/addons/account_credit_control/wizard/credit_control_marker_view.xml,sha256=2FUHF0N-Yw0h9RFdSoKkM_zqyb9ZjVEwu-VDyXuX3LM,2374
|
|
130
|
-
odoo/addons/account_credit_control/wizard/credit_control_policy_changer.py,sha256=
|
|
130
|
+
odoo/addons/account_credit_control/wizard/credit_control_policy_changer.py,sha256=Yo5ccQqt7SN2TxuqH3GptONCqBX-YtboORejpaORK7o,5060
|
|
131
131
|
odoo/addons/account_credit_control/wizard/credit_control_policy_changer_view.xml,sha256=jQlLQKQfOpDNDf5Bz9QJNdnZbHX2Bv80EU9fsrwvUYg,2880
|
|
132
132
|
odoo/addons/account_credit_control/wizard/credit_control_printer.py,sha256=1UhTbmiZW6Do2x-2D-K-Lrv003P3P9VlhstVjfJBzZo,1816
|
|
133
133
|
odoo/addons/account_credit_control/wizard/credit_control_printer_view.xml,sha256=PbziKrepf9o5ocwZlWdhPwWCkaa2_6AhuoKMp6rEzWI,2101
|
|
134
134
|
odoo/addons/account_credit_control/wizard/mail_compose_message.py,sha256=g-VEcrShJZmAzGd81aIZ4KjanbHc9gwCX5G7zISODrg,797
|
|
135
|
-
odoo_addon_account_credit_control-15.0.1.3.
|
|
136
|
-
odoo_addon_account_credit_control-15.0.1.3.
|
|
137
|
-
odoo_addon_account_credit_control-15.0.1.3.
|
|
138
|
-
odoo_addon_account_credit_control-15.0.1.3.
|
|
135
|
+
odoo_addon_account_credit_control-15.0.1.3.3.dist-info/METADATA,sha256=oRNLpKgox8wxLYtNNjkeAfC2ZeOwNwQo3bHwPvNjUTU,5950
|
|
136
|
+
odoo_addon_account_credit_control-15.0.1.3.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
137
|
+
odoo_addon_account_credit_control-15.0.1.3.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
138
|
+
odoo_addon_account_credit_control-15.0.1.3.3.dist-info/RECORD,,
|