Browse Source

Nov 3 : [FIX] Bug Fixed 'base_accounting_kit'

pull/295/head
AjmalCybro 2 years ago
parent
commit
761d00f052
  1. 2
      base_accounting_kit/__manifest__.py
  2. 26
      base_accounting_kit/doc/RELEASE_NOTES.md
  3. 11
      base_accounting_kit/models/account_payment.py

2
base_accounting_kit/__manifest__.py

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

26
base_accounting_kit/doc/RELEASE_NOTES.md

@ -1,31 +1,57 @@
## Module <base_accounting_kit>
#### 14.10.2022
#### Version 16.0.1.0.0
#### ADD
- Initial commit for Odoo 16 accounting
#### 08.03.2023
#### Version 16.0.2.0.0
#### IMP
- Added Anglo Saxon Accounting Feature
#### 09.06.2023
#### Version 16.0.2.0.3
#### UPDT
- Bug Fix
#### 15.06.2023
#### Version 16.0.2.0.4
#### UPDT
- Bug Fix
#### 11.07.2023
#### Version 16.0.2.0.5
#### UPDT
- Cash journal Bug Fix
#### 17.08.2023
#### Version 16.0.2.0.7
#### UPDT
- Asset type Bug Fix
### 02.11.2023
### Version 16.0.2.0.10
### UPDT
- Payment Register Bank and Cheque References Bug Fix

11
base_accounting_kit/models/account_payment.py

@ -76,6 +76,16 @@ class AccountRegisterPayments(models.TransientModel):
})
return res
def _create_payments(self):
payments = super(AccountRegisterPayments, self)._create_payments()
for payment in payments:
payment.write({
'bank_reference': self.bank_reference,
'cheque_reference': self.cheque_reference
})
return payments
class AccountPayment(models.Model):
_inherit = "account.payment"
@ -175,6 +185,7 @@ class AccountPayment(models.Model):
def unmark_as_sent(self):
self.write({'is_move_sent': False})
class AccountPaymentMethod(models.Model):
_inherit = "account.payment.method"

Loading…
Cancel
Save