Browse Source

Nov 28: [FIX] Bug Fixed 'base_accounting_kit'

pull/301/merge
Cybrosys Technologies 5 months ago
parent
commit
8b1a87bc4e
  1. 2
      base_accounting_kit/__manifest__.py
  2. 8
      base_accounting_kit/doc/RELEASE_NOTES.md
  3. 1
      base_accounting_kit/models/account_move.py

2
base_accounting_kit/__manifest__.py

@ -22,7 +22,7 @@
{ {
'name': 'Odoo 16 Full Accounting Kit for Community', 'name': 'Odoo 16 Full Accounting Kit for Community',
'version': '16.0.2.0.13', 'version': '16.0.2.0.14',
'category': 'Accounting', 'category': 'Accounting',
'live_test_url': 'https://www.youtube.com/watch?v=peAp2Tx_XIs', 'live_test_url': 'https://www.youtube.com/watch?v=peAp2Tx_XIs',
'summary': """Odoo 17 Accounting, Odoo 17 Accounting Reports, Odoo17 Accounting, Odoo Accounting, Odoo17 Financial Reports, Odoo17 Asset, Odoo17 Profit and Loss, PDC, Followups, Odoo17, Accounting, Odoo Apps, Reports""", 'summary': """Odoo 17 Accounting, Odoo 17 Accounting Reports, Odoo17 Accounting, Odoo Accounting, Odoo17 Financial Reports, Odoo17 Asset, Odoo17 Profit and Loss, PDC, Followups, Odoo17, Accounting, Odoo Apps, Reports""",

8
base_accounting_kit/doc/RELEASE_NOTES.md

@ -79,3 +79,11 @@
### UPDT ### UPDT
- Invalid Field Attributes Bug Fix - Invalid Field Attributes Bug Fix
### 26.11.2024
### Version 16.0.2.0.14
### UPDT
- Invalid print statments

1
base_accounting_kit/models/account_move.py

@ -65,7 +65,6 @@ class AccountMove(models.Model):
return res return res
def action_post(self): def action_post(self):
print(self.line_ids, "line")
result = super(AccountMove, self).action_post() result = super(AccountMove, self).action_post()
for inv in self: for inv in self:
context = dict(self.env.context) context = dict(self.env.context)

Loading…
Cancel
Save