odoo-addon-account-loan 16.0.1.0.6__py3-none-any.whl → 16.0.1.0.7__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.
Potentially problematic release.
This version of odoo-addon-account-loan might be problematic. Click here for more details.
- odoo/addons/account_loan/README.rst +6 -2
- odoo/addons/account_loan/__manifest__.py +1 -1
- odoo/addons/account_loan/i18n/account_loan.pot +5 -0
- odoo/addons/account_loan/models/account_loan.py +6 -0
- odoo/addons/account_loan/models/account_loan_line.py +2 -1
- odoo/addons/account_loan/static/description/index.html +19 -13
- odoo/addons/account_loan/views/account_loan_view.xml +4 -0
- {odoo_addon_account_loan-16.0.1.0.6.dist-info → odoo_addon_account_loan-16.0.1.0.7.dist-info}/METADATA +7 -3
- {odoo_addon_account_loan-16.0.1.0.6.dist-info → odoo_addon_account_loan-16.0.1.0.7.dist-info}/RECORD +11 -11
- {odoo_addon_account_loan-16.0.1.0.6.dist-info → odoo_addon_account_loan-16.0.1.0.7.dist-info}/WHEEL +0 -0
- {odoo_addon_account_loan-16.0.1.0.6.dist-info → odoo_addon_account_loan-16.0.1.0.7.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 Loan management
|
|
3
7
|
=======================
|
|
@@ -7,13 +11,13 @@ Account Loan management
|
|
|
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:bc5e3ab8c84f6e4505e89a2f4d1fcc2f788a3f8935397039e9a834e61df82a46
|
|
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%2Faccount--financial--tools-lightgray.png?logo=github
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
3
3
|
{
|
|
4
4
|
"name": "Account Loan management",
|
|
5
|
-
"version": "16.0.1.0.
|
|
5
|
+
"version": "16.0.1.0.7",
|
|
6
6
|
"author": "Creu Blanca,Odoo Community Association (OCA)",
|
|
7
7
|
"website": "https://github.com/OCA/account-financial-tools",
|
|
8
8
|
"license": "AGPL-3",
|
|
@@ -597,6 +597,11 @@ msgstr ""
|
|
|
597
597
|
msgid "Loans"
|
|
598
598
|
msgstr ""
|
|
599
599
|
|
|
600
|
+
#. module: account_loan
|
|
601
|
+
#: model:ir.model.fields,field_description:account_loan.field_account_loan__long_term_journal_id
|
|
602
|
+
msgid "Long Term Journal"
|
|
603
|
+
msgstr ""
|
|
604
|
+
|
|
600
605
|
#. module: account_loan
|
|
601
606
|
#: model:ir.model.fields,field_description:account_loan.field_account_loan_line__long_term_pending_principal_amount
|
|
602
607
|
msgid "Long Term Pending Principal Amount"
|
|
@@ -173,6 +173,12 @@ class AccountLoan(models.Model):
|
|
|
173
173
|
readonly=True,
|
|
174
174
|
states={"draft": [("readonly", False)]},
|
|
175
175
|
)
|
|
176
|
+
long_term_journal_id = fields.Many2one(
|
|
177
|
+
"account.journal",
|
|
178
|
+
domain="[('company_id', '=', company_id),('type', '=', 'general')]",
|
|
179
|
+
readonly=True,
|
|
180
|
+
states={"draft": [("readonly", False)]},
|
|
181
|
+
)
|
|
176
182
|
short_term_loan_account_id = fields.Many2one(
|
|
177
183
|
"account.account",
|
|
178
184
|
domain="[('company_id', '=', company_id)]",
|
|
@@ -412,7 +412,8 @@ class AccountLoanLine(models.Model):
|
|
|
412
412
|
"loan_id": self.loan_id.id,
|
|
413
413
|
"date": self.date,
|
|
414
414
|
"ref": self.name,
|
|
415
|
-
"journal_id": self.loan_id.
|
|
415
|
+
"journal_id": self.loan_id.long_term_journal_id.id
|
|
416
|
+
or self.loan_id.journal_id.id,
|
|
416
417
|
"line_ids": [
|
|
417
418
|
Command.create(vals) for vals in self._get_long_term_move_line_vals()
|
|
418
419
|
],
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -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 Loan management</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-loan-management">
|
|
370
|
+
<h1>Account Loan management</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:bc5e3ab8c84f6e4505e89a2f4d1fcc2f788a3f8935397039e9a834e61df82a46
|
|
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/account-financial-tools/tree/16.0/account_loan"><img alt="OCA/account-financial-tools" src="https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-financial-tools-16-0/account-financial-tools-16-0-account_loan"><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-financial-tools&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>This module extends the functionality of accounting to support loans.
|
|
374
379
|
It will create automatically moves or invoices for loans.
|
|
375
380
|
Moreover, you can check the pending amount to be paid and reduce the debt.</p>
|
|
@@ -403,7 +408,7 @@ Moreover, you can check the pending amount to be paid and reduce the debt.</p>
|
|
|
403
408
|
</ul>
|
|
404
409
|
</div>
|
|
405
410
|
<div class="section" id="usage">
|
|
406
|
-
<
|
|
411
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
|
|
407
412
|
<p>To use this module, you need to:</p>
|
|
408
413
|
<ol class="arabic simple">
|
|
409
414
|
<li>Go to <cite>Invoicing / Accounting > Accounting > Loans</cite></li>
|
|
@@ -424,14 +429,14 @@ leases before a selected date</li>
|
|
|
424
429
|
</a>
|
|
425
430
|
</div>
|
|
426
431
|
<div class="section" id="changelog">
|
|
427
|
-
<
|
|
432
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Changelog</a></h2>
|
|
428
433
|
<div class="section" id="section-1">
|
|
429
|
-
<
|
|
434
|
+
<h3><a class="toc-backref" href="#toc-entry-3">16.0.1.0.0</a></h3>
|
|
430
435
|
<p>Due to the changes on 16, we will generate two moves on leasings, one for the invoice, and another one for the change from long to short term.</p>
|
|
431
436
|
</div>
|
|
432
437
|
</div>
|
|
433
438
|
<div class="section" id="bug-tracker">
|
|
434
|
-
<
|
|
439
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h2>
|
|
435
440
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-financial-tools/issues">GitHub Issues</a>.
|
|
436
441
|
In case of trouble, please check there if your issue has already been reported.
|
|
437
442
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -439,15 +444,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
439
444
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
440
445
|
</div>
|
|
441
446
|
<div class="section" id="credits">
|
|
442
|
-
<
|
|
447
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Credits</a></h2>
|
|
443
448
|
<div class="section" id="authors">
|
|
444
|
-
<
|
|
449
|
+
<h3><a class="toc-backref" href="#toc-entry-6">Authors</a></h3>
|
|
445
450
|
<ul class="simple">
|
|
446
451
|
<li>Creu Blanca</li>
|
|
447
452
|
</ul>
|
|
448
453
|
</div>
|
|
449
454
|
<div class="section" id="contributors">
|
|
450
|
-
<
|
|
455
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Contributors</a></h3>
|
|
451
456
|
<ul class="simple">
|
|
452
457
|
<li>Enric Tobella <<a class="reference external" href="mailto:etobella@creublanca.es">etobella@creublanca.es</a>></li>
|
|
453
458
|
<li>Bhavesh Odedra <<a class="reference external" href="mailto:bodedra@opensourceintegrators.com">bodedra@opensourceintegrators.com</a>></li>
|
|
@@ -455,7 +460,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
455
460
|
</ul>
|
|
456
461
|
</div>
|
|
457
462
|
<div class="section" id="maintainers">
|
|
458
|
-
<
|
|
463
|
+
<h3><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h3>
|
|
459
464
|
<p>This module is maintained by the OCA.</p>
|
|
460
465
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
461
466
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -470,5 +475,6 @@ promote its widespread use.</p>
|
|
|
470
475
|
</div>
|
|
471
476
|
</div>
|
|
472
477
|
</div>
|
|
478
|
+
</div>
|
|
473
479
|
</body>
|
|
474
480
|
</html>
|
|
@@ -144,6 +144,10 @@
|
|
|
144
144
|
</group>
|
|
145
145
|
<group>
|
|
146
146
|
<field name="long_term_loan_account_id" />
|
|
147
|
+
<field
|
|
148
|
+
name="long_term_journal_id"
|
|
149
|
+
attrs="{'invisible': ['|', ('is_leasing', '=', False), ('long_term_loan_account_id', '=', False)]}"
|
|
150
|
+
/>
|
|
147
151
|
<field name="interest_expenses_account_id" />
|
|
148
152
|
<field name="currency_id" invisible="1" />
|
|
149
153
|
</group>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_loan
|
|
3
|
-
Version: 16.0.1.0.
|
|
3
|
+
Version: 16.0.1.0.7
|
|
4
4
|
Summary: Account Loan management
|
|
5
5
|
Home-page: https://github.com/OCA/account-financial-tools
|
|
6
6
|
Author: Creu Blanca,Odoo Community Association (OCA)
|
|
@@ -15,6 +15,10 @@ Requires-Dist: numpy-financial<=1.0.0
|
|
|
15
15
|
Requires-Dist: numpy>=1.15
|
|
16
16
|
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
17
17
|
|
|
18
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
19
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
20
|
+
:alt: Odoo Community Association
|
|
21
|
+
|
|
18
22
|
=======================
|
|
19
23
|
Account Loan management
|
|
20
24
|
=======================
|
|
@@ -24,13 +28,13 @@ Account Loan management
|
|
|
24
28
|
!! This file is generated by oca-gen-addon-readme !!
|
|
25
29
|
!! changes will be overwritten. !!
|
|
26
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
|
-
!! source digest: sha256:
|
|
31
|
+
!! source digest: sha256:bc5e3ab8c84f6e4505e89a2f4d1fcc2f788a3f8935397039e9a834e61df82a46
|
|
28
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
33
|
|
|
30
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
31
35
|
:target: https://odoo-community.org/page/development-status
|
|
32
36
|
:alt: Beta
|
|
33
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
37
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
34
38
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
35
39
|
:alt: License: AGPL-3
|
|
36
40
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github
|
{odoo_addon_account_loan-16.0.1.0.6.dist-info → odoo_addon_account_loan-16.0.1.0.7.dist-info}/RECORD
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
odoo/addons/account_loan/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_loan/README.rst,sha256=yvSLK4ZbGBPNygZn-jRg8q6Mo9_goToY2_kpY9t79YE,4936
|
|
2
2
|
odoo/addons/account_loan/__init__.py,sha256=o9EnCAU5AKoGmP2X6ytOhQFxVqIh5Y1itLUOmzxSUJY,113
|
|
3
|
-
odoo/addons/account_loan/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_loan/__manifest__.py,sha256=hjGfddGu_rChegWOoEXkLZOAes1n8mqrt6anEZfuYiE,1083
|
|
4
4
|
odoo/addons/account_loan/data/ir_sequence_data.xml,sha256=bLydnK8X-0QWzFoBms4UpGYYle25C2DmbpVECEG4PMc,540
|
|
5
|
-
odoo/addons/account_loan/i18n/account_loan.pot,sha256=
|
|
5
|
+
odoo/addons/account_loan/i18n/account_loan.pot,sha256=cDcBlW5E70tq0oD0n9ttqqDmKzc6vW47vXnOz6nhU-Y,36432
|
|
6
6
|
odoo/addons/account_loan/i18n/am.po,sha256=3Rhvjs0LBoOJTWs2pHgoq4HSDTzr3eSD46DCSAXywcc,36711
|
|
7
7
|
odoo/addons/account_loan/i18n/ar.po,sha256=pwS5kWB6HgdHCOwdl2MSOaqSbs6X4HAf_MScASWvJFM,37008
|
|
8
8
|
odoo/addons/account_loan/i18n/bg.po,sha256=zgyXt5KS77PF5k-dKCICqGfB_uME3xgTzumVfY3-SLk,36868
|
|
@@ -79,8 +79,8 @@ odoo/addons/account_loan/i18n/vi_VN.po,sha256=CD0WxpSno_lZEqiPu9u_Vb1h0rLf0mKNA5
|
|
|
79
79
|
odoo/addons/account_loan/i18n/zh_CN.po,sha256=klEIONxZXSO1wvk1AeVO7_t2xdzeM9amtGm1KZLK1Ag,36819
|
|
80
80
|
odoo/addons/account_loan/i18n/zh_TW.po,sha256=_7Nn4UdlI3eFqq4tolfYcI1lASMPa4iNUkwy2vRSPbY,36809
|
|
81
81
|
odoo/addons/account_loan/models/__init__.py,sha256=jwLlr4SgTaxqvv5CCJkgGwhwNus45E4E4e3pijuROJY,211
|
|
82
|
-
odoo/addons/account_loan/models/account_loan.py,sha256=
|
|
83
|
-
odoo/addons/account_loan/models/account_loan_line.py,sha256=
|
|
82
|
+
odoo/addons/account_loan/models/account_loan.py,sha256=cNiytiejpBO2rcRkKNkCKCEFM5fXAi1GPYMrIONHNf8,16554
|
|
83
|
+
odoo/addons/account_loan/models/account_loan_line.py,sha256=56GlmbTbfpShm7sXXz5k2CdYJBxpeAy7HGAxgIYAcjA,18304
|
|
84
84
|
odoo/addons/account_loan/models/account_move.py,sha256=8p2V854_J060o_yupWrGyVa5Ps44d8GpkY4azcAUz3k,937
|
|
85
85
|
odoo/addons/account_loan/models/res_partner.py,sha256=uGZfhvx1x0Bg2DaXA2HrVMzskfa8Gg80yJCU9Y2XJ1g,997
|
|
86
86
|
odoo/addons/account_loan/readme/CONTRIBUTORS.rst,sha256=Ijn5BrL2AGAUBRbJF1NEm8Kbmd1phhKYB-oD1PzI6S4,151
|
|
@@ -90,11 +90,11 @@ odoo/addons/account_loan/readme/USAGE.rst,sha256=kjZZgQy0GLDicDWcYWZ3E8UJOaG0e__
|
|
|
90
90
|
odoo/addons/account_loan/security/account_loan_security.xml,sha256=OK99GIjEzFgyBf3-s8u8AojY-oQ_Go61Z1xe4hBarn0,830
|
|
91
91
|
odoo/addons/account_loan/security/ir.model.access.csv,sha256=3RwBdFKlfSzAJCUWYxDBGUw0t0ZLuBphkZWYtNHGmlI,1009
|
|
92
92
|
odoo/addons/account_loan/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
93
|
-
odoo/addons/account_loan/static/description/index.html,sha256=
|
|
93
|
+
odoo/addons/account_loan/static/description/index.html,sha256=xUD8n3JyMkH_4sy-QHvNN4ODrEE1_8SDNEKwYopWP5Q,15447
|
|
94
94
|
odoo/addons/account_loan/tests/__init__.py,sha256=I1GwELsBL3FTRS0pVrE5q-qEk537mMnSOXpWkPVcBnY,94
|
|
95
95
|
odoo/addons/account_loan/tests/test_loan.py,sha256=lCSIDL5nTPiz2xFQQwYiVh0hPTxgA_C-O6X2iSxcZi8,25695
|
|
96
96
|
odoo/addons/account_loan/views/account_loan_lines_view.xml,sha256=FuqV2E98vUiqVBhEG5RNu8mFnVTdVHu0jARjfAFHCVc,5832
|
|
97
|
-
odoo/addons/account_loan/views/account_loan_view.xml,sha256=
|
|
97
|
+
odoo/addons/account_loan/views/account_loan_view.xml,sha256=otoJnLBTICGVIDsdV5fJ7qLL4LrrKAO5uxeiTCmuFg4,9692
|
|
98
98
|
odoo/addons/account_loan/views/account_move_view.xml,sha256=g51cbguqHm12CdIAMuNFE3bpGlDpj_jQP4LoLtTaG4c,839
|
|
99
99
|
odoo/addons/account_loan/views/res_partner.xml,sha256=i34pkpDi2OpPbwSGhlz_Pxm5fDY9dZWWNOJDA640h38,1274
|
|
100
100
|
odoo/addons/account_loan/wizards/__init__.py,sha256=mq87kRH_mXzIn76cBCeuzptRiIOdQWjImjmZ_HNGUVU,227
|
|
@@ -106,7 +106,7 @@ odoo/addons/account_loan/wizards/account_loan_pay_amount.py,sha256=-kG1q8Ueh0Fl_
|
|
|
106
106
|
odoo/addons/account_loan/wizards/account_loan_pay_amount_view.xml,sha256=9s1qfpai_AiyrmPQk2vtJPz5LiCmsjb84yCmBw9de5o,1619
|
|
107
107
|
odoo/addons/account_loan/wizards/account_loan_post.py,sha256=ImxohbBVZAtG4ufJ9taQh_qRlRaJvOvZTLRhqQBlKUs,3193
|
|
108
108
|
odoo/addons/account_loan/wizards/account_loan_post_view.xml,sha256=dw5m2GlDtswq07lnsMqWctIEdYRr8Q3r0cpVscbKyUM,1463
|
|
109
|
-
odoo_addon_account_loan-16.0.1.0.
|
|
110
|
-
odoo_addon_account_loan-16.0.1.0.
|
|
111
|
-
odoo_addon_account_loan-16.0.1.0.
|
|
112
|
-
odoo_addon_account_loan-16.0.1.0.
|
|
109
|
+
odoo_addon_account_loan-16.0.1.0.7.dist-info/METADATA,sha256=OT7rokamLC3QB9gteUMvDJcz_IzhVRicMD6iyzJab_o,5522
|
|
110
|
+
odoo_addon_account_loan-16.0.1.0.7.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
111
|
+
odoo_addon_account_loan-16.0.1.0.7.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
112
|
+
odoo_addon_account_loan-16.0.1.0.7.dist-info/RECORD,,
|
{odoo_addon_account_loan-16.0.1.0.6.dist-info → odoo_addon_account_loan-16.0.1.0.7.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|