Browse Source

[FIX] Bug Fixed 'base_accounting_kit'

pull/179/head
Ajmal Cybro 4 years ago
parent
commit
ed1d017e95
  1. 2
      base_accounting_kit/__manifest__.py
  2. 5
      base_accounting_kit/doc/changelog.md
  3. 1
      base_accounting_kit/models/payment_matching.py

2
base_accounting_kit/__manifest__.py

@ -22,7 +22,7 @@
{
'name': 'Odoo 14 Full Accounting Kit',
'version': '14.0.3.13.12',
'version': '14.0.3.13.13',
'category': 'Accounting',
'live_test_url': 'https://www.youtube.com/watch?v=peAp2Tx_XIs',
'summary': """ Asset and Budget Management,

5
base_accounting_kit/doc/changelog.md

@ -95,3 +95,8 @@
#### Version 14.0.3.13.12
#### UPDT
- Dashboard issue fixed, 'state' field is ambigous
#### 18.08.2021
#### Version 14.0.3.13.13
#### UPDT
- Reconciliation issue fixed

1
base_accounting_kit/models/payment_matching.py

@ -283,7 +283,6 @@ class AccountReconciliation(models.AbstractModel):
aml_ids = self._context.get('active_ids') and self._context.get('active_model') == 'account.move.line' and tuple(self._context.get('active_ids'))
if aml_ids:
aml = MoveLine.browse(aml_ids)
aml._check_reconcile_validity()
account = aml[0].account_id
currency = account.currency_id or account.company_id.currency_id
return {

Loading…
Cancel
Save