Browse Source

[UPDT] Account parent group added

pull/175/head
Ajmal Cybro 4 years ago
parent
commit
8bf9f30136
  1. 3
      base_accounting_kit/__manifest__.py
  2. 6
      base_accounting_kit/doc/changelog.md
  3. 16
      base_accounting_kit/views/account_group.xml

3
base_accounting_kit/__manifest__.py

@ -22,7 +22,7 @@
{ {
'name': 'Odoo 14 Full Accounting Kit', 'name': 'Odoo 14 Full Accounting Kit',
'version': '14.0.3.11.11', 'version': '14.0.3.13.11',
'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': """ Asset and Budget Management, 'summary': """ Asset and Budget Management,
@ -65,6 +65,7 @@
'views/dashboard_views.xml', 'views/dashboard_views.xml',
'views/reports_config_view.xml', 'views/reports_config_view.xml',
'views/accounting_menu.xml', 'views/accounting_menu.xml',
'views/account_group.xml',
'views/credit_limit_view.xml', 'views/credit_limit_view.xml',
'views/account_configuration.xml', 'views/account_configuration.xml',
'views/account_payment_view.xml', 'views/account_payment_view.xml',

6
base_accounting_kit/doc/changelog.md

@ -86,3 +86,9 @@
#### FIX #### FIX
- 'Journal entry already posted' issue fixed. - 'Journal entry already posted' issue fixed.
#### 02.08.2021
#### Version 14.0.3.13.11
#### UPDT
- Account Parent Group added

16
base_accounting_kit/views/account_group.xml

@ -0,0 +1,16 @@
<odoo>
<data>
<record id="action_account_group" model="ir.actions.act_window">
<field name="name">Account Groups</field>
<field name="res_model">account.group</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem id="menu_account_group" name="Account Groups"
action="action_account_group" sequence="10"
parent="account.account_account_menu"/>
</data>
</odoo>
Loading…
Cancel
Save