odoo-addon-account-loan 16.0.1.0.5__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.

@@ -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:a97cd9ecd83ceef07255455f44533ac8e6d337004092ed8eb9febf1ee4e626fd
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/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": "16.0.1.0.5",
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)]",
@@ -263,6 +263,7 @@ class AccountLoanLine(models.Model):
263
263
  )
264
264
 
265
265
  def _move_vals(self, journal=False, account=False):
266
+ self.ensure_one()
266
267
  return {
267
268
  "loan_line_id": self.id,
268
269
  "loan_id": self.loan_id.id,
@@ -274,8 +275,8 @@ class AccountLoanLine(models.Model):
274
275
  ],
275
276
  }
276
277
 
277
- def _move_line_vals(self, account=False):
278
- vals = []
278
+ def _add_basic_values(self, vals, account):
279
+ self.ensure_one()
279
280
  partner = self.loan_id.partner_id.with_company(self.loan_id.company_id)
280
281
  vals.append(
281
282
  {
@@ -286,14 +287,21 @@ class AccountLoanLine(models.Model):
286
287
  "debit": 0,
287
288
  }
288
289
  )
289
- if self.interests_amount:
290
- vals.append(
291
- {
292
- "account_id": self.loan_id.interest_expenses_account_id.id,
293
- "credit": 0,
294
- "debit": self.interests_amount,
295
- }
296
- )
290
+ return vals
291
+
292
+ def _add_interests_values(self, vals):
293
+ self.ensure_one()
294
+ vals.append(
295
+ {
296
+ "account_id": self.loan_id.interest_expenses_account_id.id,
297
+ "credit": 0,
298
+ "debit": self.interests_amount,
299
+ }
300
+ )
301
+ return vals
302
+
303
+ def _add_short_term_account_values(self, vals):
304
+ self.ensure_one()
297
305
  vals.append(
298
306
  {
299
307
  "account_id": self.loan_id.short_term_loan_account_id.id,
@@ -301,6 +309,10 @@ class AccountLoanLine(models.Model):
301
309
  "debit": self.payment_amount - self.interests_amount,
302
310
  }
303
311
  )
312
+ return vals
313
+
314
+ def _add_long_term_account_values(self, vals):
315
+ self.ensure_one()
304
316
  if self.long_term_loan_account_id and self.long_term_principal_amount:
305
317
  vals.append(
306
318
  {
@@ -318,7 +330,20 @@ class AccountLoanLine(models.Model):
318
330
  )
319
331
  return vals
320
332
 
333
+ def _move_line_vals(self, account=False):
334
+ self.ensure_one()
335
+ vals = []
336
+ vals = self._add_basic_values(vals, account)
337
+ if self.interests_amount:
338
+ vals = self._add_interests_values(vals)
339
+
340
+ vals = self._add_short_term_account_values(vals)
341
+ vals = self._add_long_term_account_values(vals)
342
+
343
+ return vals
344
+
321
345
  def _invoice_vals(self):
346
+ self.ensure_one()
322
347
  return {
323
348
  "loan_line_id": self.id,
324
349
  "loan_id": self.loan_id.id,
@@ -332,8 +357,7 @@ class AccountLoanLine(models.Model):
332
357
  ],
333
358
  }
334
359
 
335
- def _invoice_line_vals(self):
336
- vals = list()
360
+ def _add_basic_values_invoice_line(self, vals):
337
361
  vals.append(
338
362
  {
339
363
  "product_id": self.loan_id.product_id.id,
@@ -343,6 +367,9 @@ class AccountLoanLine(models.Model):
343
367
  "account_id": self.loan_id.short_term_loan_account_id.id,
344
368
  }
345
369
  )
370
+ return vals
371
+
372
+ def _add_interests_values_invoice_line(self, vals):
346
373
  vals.append(
347
374
  {
348
375
  "product_id": self.loan_id.interests_product_id.id,
@@ -354,6 +381,12 @@ class AccountLoanLine(models.Model):
354
381
  )
355
382
  return vals
356
383
 
384
+ def _invoice_line_vals(self):
385
+ vals = list()
386
+ vals = self._add_basic_values_invoice_line(vals)
387
+ vals = self._add_interests_values_invoice_line(vals)
388
+ return vals
389
+
357
390
  def _generate_move(self, journal=False, account=False):
358
391
  """
359
392
  Computes and post the moves of loans
@@ -379,7 +412,8 @@ class AccountLoanLine(models.Model):
379
412
  "loan_id": self.loan_id.id,
380
413
  "date": self.date,
381
414
  "ref": self.name,
382
- "journal_id": self.loan_id.journal_id.id,
415
+ "journal_id": self.loan_id.long_term_journal_id.id
416
+ or self.loan_id.journal_id.id,
383
417
  "line_ids": [
384
418
  Command.create(vals) for vals in self._get_long_term_move_line_vals()
385
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>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:a97cd9ecd83ceef07255455f44533ac8e6d337004092ed8eb9febf1ee4e626fd
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/licence-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&amp;target_branch=16.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/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&amp;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
- <h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
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 &gt; Accounting &gt; 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
- <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 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
- <h1><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h1>
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
- <h1><a class="toc-backref" href="#toc-entry-5">Credits</a></h1>
447
+ <h2><a class="toc-backref" href="#toc-entry-5">Credits</a></h2>
443
448
  <div class="section" id="authors">
444
- <h2><a class="toc-backref" href="#toc-entry-6">Authors</a></h2>
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
- <h2><a class="toc-backref" href="#toc-entry-7">Contributors</a></h2>
455
+ <h3><a class="toc-backref" href="#toc-entry-7">Contributors</a></h3>
451
456
  <ul class="simple">
452
457
  <li>Enric Tobella &lt;<a class="reference external" href="mailto:etobella&#64;creublanca.es">etobella&#64;creublanca.es</a>&gt;</li>
453
458
  <li>Bhavesh Odedra &lt;<a class="reference external" href="mailto:bodedra&#64;opensourceintegrators.com">bodedra&#64;opensourceintegrators.com</a>&gt;</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
- <h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
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.5
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:a97cd9ecd83ceef07255455f44533ac8e6d337004092ed8eb9febf1ee4e626fd
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/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=ASh6LKPU-2i5CzgOkKucr-mlOrnkOlrnIy0SLrZlHFo,4771
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=4NNmeiJBoR_KkcsbJBVGHJRx5aVWD2yNBZj_-oZaRAo,1083
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=sVRLpDdwv-w1GGgPO4TeTAcM86iBV7o4FGNFSswYxNw,36274
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=JHtBEShn5Aek1IqPcUv79EmH_mj8anRlG1hi_gOuSzM,16328
83
- odoo/addons/account_loan/models/account_loan_line.py,sha256=Kv4xwGQ8wN4j8-MWsEDm9kcQQ3kVhEFcA8Vgty6-z0A,17332
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=Dgq7HX8TH8Q425shGnqduhNCqLPOsI6jSHbLWEMtgiI,15233
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=_cwuRvwmp0f7xr8r8T9ztMut2aOg7jlzkMhU2vCoWeM,9402
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.5.dist-info/METADATA,sha256=_UTA7ERI6Nhxdza5vzIykZieHSM_K1z6yBGbRdxK71A,5357
110
- odoo_addon_account_loan-16.0.1.0.5.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
111
- odoo_addon_account_loan-16.0.1.0.5.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
112
- odoo_addon_account_loan-16.0.1.0.5.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.44.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5