Browse Source

[FIX] Bug Fixed 'base_accounting_kit'

pull/134/merge
Ajmal JK 5 years ago
parent
commit
b59d7eb743
  1. 2
      base_accounting_kit/__manifest__.py
  2. 7
      base_accounting_kit/doc/RELEASE_NOTES.md
  3. 2
      base_accounting_kit/models/account_payment.py

2
base_accounting_kit/__manifest__.py

@ -22,7 +22,7 @@
{ {
'name': 'Odoo 13 Full Accounting Kit', 'name': 'Odoo 13 Full Accounting Kit',
'version': '13.0.2.4.1', 'version': '13.0.2.4.2',
'category': 'Accounting', 'category': 'Accounting',
'summary': """ Asset and Budget Management, 'summary': """ Asset and Budget Management,
Accounting Reports, PDC, Lock dates, Accounting Reports, PDC, Lock dates,

7
base_accounting_kit/doc/RELEASE_NOTES.md

@ -21,6 +21,11 @@
- Bug Fixed 'Recurring payment' - Bug Fixed 'Recurring payment'
#### 12.11.2019 #### 12.11.2019
#### Version 13.0.1.4.1 #### Version 13.0.2.4.1
#### FIX #### FIX
- Bug Fixed 'asset and report' - Bug Fixed 'asset and report'
#### 08.01.2020
#### Version 13.0.2.4.2
#### FIX
- Bug Fixed multiple payment issue.

2
base_accounting_kit/models/account_payment.py

@ -33,7 +33,7 @@ class AccountRegisterPayments(models.TransientModel):
default=False) default=False)
def get_payments_vals(self): def get_payments_vals(self):
res = super(AccountRegisterPayments, self).get_payment_vals() res = super(AccountRegisterPayments, self).get_payments_vals()
if self.payment_method_id == self.env.ref( if self.payment_method_id == self.env.ref(
'account_check_printing.account_payment_method_check'): 'account_check_printing.account_payment_method_check'):
res.update({ res.update({

Loading…
Cancel
Save