odoo-addon-account-loan 17.0.1.1.3.2__py3-none-any.whl → 17.0.2.0.0__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.

@@ -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:f2a9518a8e816743c4850fcb76c1f1a8ae99663e505310e7fedce1a5040a07ff
14
+ !! source digest: sha256:59c6924d56b9f3bf84420edd2b401de3a4e1d2482abc2e71939ef510d4938492
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/licence-AGPL--3-blue.png
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": "17.0.1.1.3",
5
+ "version": "17.0.2.0.0",
6
6
  "author": "Creu Blanca,Odoo Community Association (OCA)",
7
7
  "website": "https://github.com/OCA/account-financial-tools",
8
8
  "license": "AGPL-3",
@@ -817,6 +817,13 @@ msgstr ""
817
817
  msgid "Rate"
818
818
  msgstr ""
819
819
 
820
+ #. module: account_loan
821
+ #. odoo-python
822
+ #: code:addons/account_loan/models/account_loan.py:0
823
+ #, python-format
824
+ msgid "Rate Change"
825
+ msgstr ""
826
+
820
827
  #. module: account_loan
821
828
  #: model:ir.model.fields,field_description:account_loan.field_account_loan__rate_period
822
829
  msgid "Rate Period"
@@ -1023,6 +1030,16 @@ msgstr ""
1023
1030
  msgid "When checked, the first payment will be on start date"
1024
1031
  msgstr ""
1025
1032
 
1033
+ #. module: account_loan
1034
+ #. odoo-python
1035
+ #: code:addons/account_loan/models/account_loan.py:0
1036
+ #, python-format
1037
+ msgid ""
1038
+ "You have modified the interest rate. Click the Compute items button to "
1039
+ "update the lines. Please note that if you have manually edited these lines, "
1040
+ "those changes will be lost upon computation."
1041
+ msgstr ""
1042
+
1026
1043
  #. module: account_loan
1027
1044
  #: model_terms:ir.ui.view,arch_db:account_loan.account_loan_line_tree
1028
1045
  msgid "principal_amount"
@@ -207,21 +207,32 @@ class AccountLoan(models.Model):
207
207
  ("name_uniq", "unique(name, company_id)", "Loan name must be unique"),
208
208
  ]
209
209
 
210
+ @api.onchange("rate")
211
+ def _onchange_rate_warning(self):
212
+ if self.state != "draft":
213
+ return {
214
+ "warning": {
215
+ "title": _("Rate Change"),
216
+ "message": _(
217
+ "You have modified the interest rate. Click the Compute items button to update the lines. Please note that if you have manually edited these lines, those changes will be lost upon computation."
218
+ ),
219
+ }
220
+ }
221
+
210
222
  @api.onchange("line_ids")
211
223
  def _onchange_line_ids_draft_manual(self):
212
- if self.state == "draft":
213
- self.line_ids = self.line_ids.sorted(key=lambda line: line.sequence)
214
- previous_pending_principal = 0
215
- previous_principal_amount = 0
216
- for line in self.line_ids:
217
- if line.sequence == 1:
218
- line.pending_principal_amount = line.loan_id.loan_amount
219
- else:
220
- line.pending_principal_amount = (
221
- previous_pending_principal - previous_principal_amount
222
- )
223
- previous_pending_principal = line.pending_principal_amount
224
- previous_principal_amount = line.principal_amount
224
+ self.line_ids = self.line_ids.sorted(key=lambda line: line.sequence)
225
+ previous_pending_principal = 0
226
+ previous_principal_amount = 0
227
+ for line in self.line_ids:
228
+ if line.sequence == 1:
229
+ line.pending_principal_amount = line.loan_id.loan_amount
230
+ else:
231
+ line.pending_principal_amount = (
232
+ previous_pending_principal - previous_principal_amount
233
+ )
234
+ previous_pending_principal = line.pending_principal_amount
235
+ previous_principal_amount = line.principal_amount
225
236
 
226
237
  @api.depends("move_ids")
227
238
  def _compute_move_count(self):
@@ -136,9 +136,10 @@ class AccountLoanLine(models.Model):
136
136
  @api.depends("rate")
137
137
  def _compute_interests_amount(self):
138
138
  for record in self:
139
- record.interests_amount = (
140
- record.pending_principal_amount * record.rate
141
- ) / 100
139
+ if record.interests_amount and record.pending_principal_amount:
140
+ record.interests_amount = (
141
+ record.pending_principal_amount * record.rate
142
+ ) / 100
142
143
 
143
144
  @api.depends("move_ids")
144
145
  def _compute_has_moves(self):
@@ -26,7 +26,6 @@ class AccountMove(models.Model):
26
26
  if loan_line_id:
27
27
  record.loan_id = loan_line_id.loan_id
28
28
  record.loan_line_id._check_move_amount()
29
- record.loan_line_id.loan_id._compute_posted_lines()
30
29
  if record.loan_line_id.sequence == record.loan_id.periods:
31
30
  record.loan_id.close()
32
31
  return res
@@ -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>Account Loan management</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" id="account-loan-management">
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:f2a9518a8e816743c4850fcb76c1f1a8ae99663e505310e7fedce1a5040a07ff
375
+ !! source digest: sha256:59c6924d56b9f3bf84420edd2b401de3a4e1d2482abc2e71939ef510d4938492
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/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-financial-tools/tree/17.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-17-0/account-financial-tools-17-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&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
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/17.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-17-0/account-financial-tools-17-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&amp;target_branch=17.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. It
374
379
  will create automatically moves or invoices for loans. Moreover, you can
375
380
  check the pending amount to be paid and reduce the debt.</p>
@@ -404,7 +409,7 @@ check the pending amount to be paid and reduce the debt.</p>
404
409
  </ul>
405
410
  </div>
406
411
  <div class="section" id="usage">
407
- <h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
412
+ <h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
408
413
  <p>To use this module, you need to:</p>
409
414
  <ol class="arabic simple">
410
415
  <li>Go to Invoicing / Accounting &gt; Accounting &gt; Loans</li>
@@ -424,15 +429,15 @@ and leases before a selected date</li>
424
429
  <p><a class="reference external image-reference" href="https://runbot.odoo-community.org/runbot/92/12.0"><img alt="Try me on Runbot" src="https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas" /></a></p>
425
430
  </div>
426
431
  <div class="section" id="changelog">
427
- <h1><a class="toc-backref" href="#toc-entry-2">Changelog</a></h1>
432
+ <h2><a class="toc-backref" href="#toc-entry-2">Changelog</a></h2>
428
433
  <div class="section" id="section-1">
429
- <h2><a class="toc-backref" href="#toc-entry-3">16.0.1.0.0</a></h2>
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
431
436
  for the invoice, and another one for the change from long to short term.</p>
432
437
  </div>
433
438
  </div>
434
439
  <div class="section" id="bug-tracker">
435
- <h1><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h1>
440
+ <h2><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h2>
436
441
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-financial-tools/issues">GitHub Issues</a>.
437
442
  In case of trouble, please check there if your issue has already been reported.
438
443
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -440,15 +445,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
440
445
  <p>Do not contact contributors directly about support or help with technical issues.</p>
441
446
  </div>
442
447
  <div class="section" id="credits">
443
- <h1><a class="toc-backref" href="#toc-entry-5">Credits</a></h1>
448
+ <h2><a class="toc-backref" href="#toc-entry-5">Credits</a></h2>
444
449
  <div class="section" id="authors">
445
- <h2><a class="toc-backref" href="#toc-entry-6">Authors</a></h2>
450
+ <h3><a class="toc-backref" href="#toc-entry-6">Authors</a></h3>
446
451
  <ul class="simple">
447
452
  <li>Creu Blanca</li>
448
453
  </ul>
449
454
  </div>
450
455
  <div class="section" id="contributors">
451
- <h2><a class="toc-backref" href="#toc-entry-7">Contributors</a></h2>
456
+ <h3><a class="toc-backref" href="#toc-entry-7">Contributors</a></h3>
452
457
  <ul class="simple">
453
458
  <li>Enric Tobella &lt;<a class="reference external" href="mailto:etobella&#64;creublanca.es">etobella&#64;creublanca.es</a>&gt;</li>
454
459
  <li>Bhavesh Odedra &lt;<a class="reference external" href="mailto:bodedra&#64;opensourceintegrators.com">bodedra&#64;opensourceintegrators.com</a>&gt;</li>
@@ -460,7 +465,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
460
465
  </ul>
461
466
  </div>
462
467
  <div class="section" id="maintainers">
463
- <h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
468
+ <h3><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h3>
464
469
  <p>This module is maintained by the OCA.</p>
465
470
  <a class="reference external image-reference" href="https://odoo-community.org">
466
471
  <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@@ -475,5 +480,6 @@ promote its widespread use.</p>
475
480
  </div>
476
481
  </div>
477
482
  </div>
483
+ </div>
478
484
  </body>
479
485
  </html>
@@ -7,27 +7,35 @@
7
7
  <field name="priority">99</field>
8
8
  <field name="arch" type="xml">
9
9
  <tree editable="bottom">
10
- <field name="sequence" readonly="false" widget="handle" />
11
- <field name="sequence" readonly="false" />
12
- <field name="date" readonly="false" />
13
- <field name="rate" />
14
- <field name="pending_principal_amount" readonly="True" force_save="1" />
15
- <field name="payment_amount" sum="Total payments" />
10
+ <field
11
+ name="sequence"
12
+ readonly="has_moves or has_invoices"
13
+ widget="handle"
14
+ />
15
+ <field name="sequence" readonly="has_moves or has_invoices" />
16
+ <field name="date" readonly="has_moves or has_invoices" />
17
+ <field name="rate" readonly="has_moves or has_invoices" />
18
+ <field name="pending_principal_amount" readonly="True" />
19
+ <field name="payment_amount" sum="Total payments" readonly="True" />
16
20
  <field
17
21
  name="principal_amount"
18
22
  sum="principal_amount"
19
- readonly="false"
23
+ readonly="has_moves or has_invoices"
24
+ />
25
+ <field
26
+ name="interests_amount"
27
+ sum="Total interests"
28
+ readonly="has_moves or has_invoices"
20
29
  />
21
- <field name="interests_amount" sum="Total interests" />
22
30
  <field
23
31
  name="long_term_pending_principal_amount"
24
32
  column_invisible="not parent.long_term_loan_account_id"
25
- readonly="false"
33
+ readonly="has_moves or has_invoices"
26
34
  />
27
35
  <field
28
36
  name="long_term_principal_amount"
29
37
  column_invisible="not parent.long_term_loan_account_id"
30
- readonly="false"
38
+ readonly="has_moves or has_invoices"
31
39
  />
32
40
  <field name="long_term_loan_account_id" column_invisible="True" />
33
41
  <field name="loan_state" column_invisible="True" />
@@ -151,7 +151,7 @@
151
151
  <field
152
152
  name="line_ids"
153
153
  context="{'tree_view_ref': 'account_loan.account_loan_line_tree'}"
154
- readonly="state != 'draft'"
154
+ readonly="state in ['canlcelled', 'closed']"
155
155
  />
156
156
  </page>
157
157
  <page string="Accounts" id="accounting">
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_loan
3
- Version: 17.0.1.1.3.2
3
+ Version: 17.0.2.0.0
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: numpy-financial<=1.0.0
6
6
  Requires-Dist: numpy>=1.15
@@ -15,6 +15,10 @@ Classifier: Framework :: Odoo
15
15
  Classifier: Framework :: Odoo :: 17.0
16
16
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
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:f2a9518a8e816743c4850fcb76c1f1a8ae99663e505310e7fedce1a5040a07ff
31
+ !! source digest: sha256:59c6924d56b9f3bf84420edd2b401de3a4e1d2482abc2e71939ef510d4938492
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/licence-AGPL--3-blue.png
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
@@ -1,8 +1,8 @@
1
- odoo/addons/account_loan/README.rst,sha256=bQRBGoWxnr790PO4yAuYpfzs_ETB-VtcDpcJ28WO5N8,4864
1
+ odoo/addons/account_loan/README.rst,sha256=TV2SbkPwU7inSBxCrQrxTEZwEMFURcCO85fAfFhnHZI,5029
2
2
  odoo/addons/account_loan/__init__.py,sha256=o9EnCAU5AKoGmP2X6ytOhQFxVqIh5Y1itLUOmzxSUJY,113
3
- odoo/addons/account_loan/__manifest__.py,sha256=WycJscZW7DHZS69hj3RmiDmkRsSRhzZX-QkD5PWl6Nk,1083
3
+ odoo/addons/account_loan/__manifest__.py,sha256=wClttprjv7bs-EENaKcu_7wt--ov-fZEcw7I_yLtSWc,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=hjVY11lPF5-JiEuzKu_cYZAeBkRmuhSpnu_oT3sMO0U,35759
5
+ odoo/addons/account_loan/i18n/account_loan.pot,sha256=6asNGESGEUYsTPQQ0YLa_wNrAJbl4EUUoWf6EfYmMJU,36228
6
6
  odoo/addons/account_loan/i18n/am.po,sha256=TJnWyHGRL83Etd-9KRJiMCvu6ZsiURYhPUvKd-z9Buc,36169
7
7
  odoo/addons/account_loan/i18n/ar.po,sha256=tsniL5qfKv-YZd1ldM4BKPjz7QEDqSsWlcUWpPjoSGI,36445
8
8
  odoo/addons/account_loan/i18n/bg.po,sha256=9oWNG13x4dhp2CpKf7fvgCoc1rNO-y2u8Wy3vxWa9jU,36376
@@ -81,9 +81,9 @@ odoo/addons/account_loan/i18n/zh_TW.po,sha256=9su4pmFqMURKojSECkKaVQZYsiHCcQuJnT
81
81
  odoo/addons/account_loan/migrations/17.0.1.0.0/noupdate_changes.xml,sha256=bZbGut6mOAMZsniduY1yY2QA8W31LLNcBJFGjt1EFeE,398
82
82
  odoo/addons/account_loan/migrations/17.0.1.0.0/post-migration.py,sha256=0XUOqdMYcrw_CbdeWHc5BgWUEhEG_Rxed6I1bdq9H3c,314
83
83
  odoo/addons/account_loan/models/__init__.py,sha256=jwLlr4SgTaxqvv5CCJkgGwhwNus45E4E4e3pijuROJY,211
84
- odoo/addons/account_loan/models/account_loan.py,sha256=hJMrZaOK1toCwBMeNlafbB8-ImRnbyqzD-wFhLX-zvs,16515
85
- odoo/addons/account_loan/models/account_loan_line.py,sha256=0rHUsVIUoz0QqVFSidwJU0yUjTxQD_tzWXMX3vD5uqM,18102
86
- odoo/addons/account_loan/models/account_move.py,sha256=8p2V854_J060o_yupWrGyVa5Ps44d8GpkY4azcAUz3k,937
84
+ odoo/addons/account_loan/models/account_loan.py,sha256=Dxz5apL4uD9YdZkGJkFuNMtNW2vL0G-cIPPNMFP1FhI,16936
85
+ odoo/addons/account_loan/models/account_loan_line.py,sha256=GaNlg2ZERnjf2uH_SIBfEUigA0qDmQxb7wKOwM-uCE0,18190
86
+ odoo/addons/account_loan/models/account_move.py,sha256=cL0Z4bvK77L7eEulSNBmI4zhw5CSpIbHSJcgoCHGwfs,869
87
87
  odoo/addons/account_loan/models/res_partner.py,sha256=6NgoxHUstcHftmDGj9NWzxfb9MBDG6XATj_1OwMao84,995
88
88
  odoo/addons/account_loan/readme/CONTRIBUTORS.md,sha256=w4frkcHOfPes7QOWbCyGpnNbYcxJhFM0A9x0qCxxQd4,227
89
89
  odoo/addons/account_loan/readme/DESCRIPTION.md,sha256=tgKIF8E4LJiqio5knhWzXzUeop9VUvNXwc3fDV1bIz8,598
@@ -92,11 +92,11 @@ odoo/addons/account_loan/readme/USAGE.md,sha256=pQ7Eb0xRbAdguo8JAxUQ-irEFkOdIeor
92
92
  odoo/addons/account_loan/security/account_loan_security.xml,sha256=je25Lct1hJDX_5Qz9vhmXWF9n3s47WSzN9Ic8l8mr2k,752
93
93
  odoo/addons/account_loan/security/ir.model.access.csv,sha256=3RwBdFKlfSzAJCUWYxDBGUw0t0ZLuBphkZWYtNHGmlI,1009
94
94
  odoo/addons/account_loan/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
95
- odoo/addons/account_loan/static/description/index.html,sha256=Wv-nQ139YpXLJ1KxvBYd02kTdov37cRDQIhc6mIwim0,15392
95
+ odoo/addons/account_loan/static/description/index.html,sha256=SxJ00-P9-kCIaa2sD0k-n8Ugmom2GEjz_3i3B_M4Eew,15606
96
96
  odoo/addons/account_loan/tests/__init__.py,sha256=I1GwELsBL3FTRS0pVrE5q-qEk537mMnSOXpWkPVcBnY,94
97
97
  odoo/addons/account_loan/tests/test_loan.py,sha256=sCnOT9RdiIsrDJUSgIQpIDAt0SdZLUhBbNHZ1MGS55I,31061
98
- odoo/addons/account_loan/views/account_loan_lines_view.xml,sha256=BNt633HUe9J-rpSi-VbJ8fp4IagJNf-LS46A9g6sVoc,6224
99
- odoo/addons/account_loan/views/account_loan_view.xml,sha256=aPtN3ZjPy_m5xCWUtuwNrCL3PP8t3btP2lBy5c9hwRs,10996
98
+ odoo/addons/account_loan/views/account_loan_lines_view.xml,sha256=wBhtozQ_gfyRFklFNsvuvWk9-vgFereQtSghBA931ik,6571
99
+ odoo/addons/account_loan/views/account_loan_view.xml,sha256=F0XtI0RTRCXXqxpdewHIEtOAmJacnGiZu4nGCLQekio,11013
100
100
  odoo/addons/account_loan/views/account_move_view.xml,sha256=-dFzRj3e84NTkLCoaAzneAPlwxVtzbjBZyAt6eK_NfM,814
101
101
  odoo/addons/account_loan/views/res_partner.xml,sha256=rneFt7lW3cUoI8UVaLQc9mkiSCii2Os1T3TTYCEB_s0,1248
102
102
  odoo/addons/account_loan/wizards/__init__.py,sha256=mq87kRH_mXzIn76cBCeuzptRiIOdQWjImjmZ_HNGUVU,227
@@ -108,7 +108,7 @@ odoo/addons/account_loan/wizards/account_loan_pay_amount.py,sha256=-kG1q8Ueh0Fl_
108
108
  odoo/addons/account_loan/wizards/account_loan_pay_amount_view.xml,sha256=9rCkG5kL3u2vc4Mmz9zo5Sqfp6raGnPz3ZGv2AlLIN4,1596
109
109
  odoo/addons/account_loan/wizards/account_loan_post.py,sha256=9aRQaqPGdV5NSUJ6oiTV8kaUhT5TzuqJ3oFJKefL3Tw,3667
110
110
  odoo/addons/account_loan/wizards/account_loan_post_view.xml,sha256=s-teTEY9HCEA2CHD3_tQZJIGOHJMZNAlR1pSN5Dpdn8,1440
111
- odoo_addon_account_loan-17.0.1.1.3.2.dist-info/METADATA,sha256=z25HVSivjwTUnhM3wGWAhE3zeHgC7bp6q2_oWmmjDRc,5452
112
- odoo_addon_account_loan-17.0.1.1.3.2.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
113
- odoo_addon_account_loan-17.0.1.1.3.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
114
- odoo_addon_account_loan-17.0.1.1.3.2.dist-info/RECORD,,
111
+ odoo_addon_account_loan-17.0.2.0.0.dist-info/METADATA,sha256=2updqjmkxCvMT9kEXYo4JCv42gioDQ5Q0cowKl9spgo,5615
112
+ odoo_addon_account_loan-17.0.2.0.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
113
+ odoo_addon_account_loan-17.0.2.0.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
114
+ odoo_addon_account_loan-17.0.2.0.0.dist-info/RECORD,,