Browse Source

[UPDT] kit and budget depends resolved

pull/166/head
Ajmal Cybro 4 years ago
parent
commit
ee449ab28a
  1. 4
      base_account_budget/__manifest__.py
  2. 5
      base_account_budget/doc/RELEASE_NOTES.md
  3. 4
      base_accounting_kit/__manifest__.py
  4. 6
      base_accounting_kit/doc/changelog.md
  5. 6
      base_accounting_kit/views/res_config_view.xml

4
base_account_budget/__manifest__.py

@ -21,7 +21,7 @@
#############################################################################
{
'name': 'Odoo 14 Budget Management',
'version': '14.0.1.0.0',
'version': '14.0.1.0.1',
'summary': """ Budget Management for Odoo 14 Community Edition. """,
'description': """ This module allows accountants to manage analytic and budgets.
@ -47,7 +47,7 @@
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'depends': ['base', 'account', 'base_accounting_kit'],
'depends': ['base', 'account'],
'website': 'https://www.cybrosys.com',
'data': [
'security/ir.model.access.csv',

5
base_account_budget/doc/RELEASE_NOTES.md

@ -4,3 +4,8 @@
#### Version 14.0.1.0.0
#### ADD
- Initial commit for base_account_budget
#### 03.05.2021
#### Version 14.0.1.0.1
#### UPDT
- Depends Removed

4
base_accounting_kit/__manifest__.py

@ -22,7 +22,7 @@
{
'name': 'Odoo 14 Full Accounting Kit',
'version': '14.0.3.7.7',
'version': '14.0.3.8.8',
'category': 'Accounting',
'live_test_url': 'https://www.youtube.com/watch?v=peAp2Tx_XIs',
'summary': """ Asset and Budget Management,
@ -48,7 +48,7 @@
'website': "https://www.cybrosys.com",
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'depends': ['base', 'account', 'sale', 'account_check_printing'],
'depends': ['base', 'account', 'sale', 'account_check_printing', 'base_account_budget'],
'data': [
'security/ir.model.access.csv',
'security/security.xml',

6
base_accounting_kit/doc/changelog.md

@ -53,3 +53,9 @@
#### UPDT
- Multiple Invoice Copies added.
#### 27.04.2021
#### Version 14.0.3.8.8
#### UPDT
- Budget added as depend
- Removed the budget option of enterprise

6
base_accounting_kit/views/res_config_view.xml

@ -12,13 +12,17 @@
<field name="customer_credit_limit" on_change="1"/>
</div>
<div class="o_setting_right_pane" id="snailmail_settings">
<label for="customer_credit_limit" />
<label for="customer_credit_limit"/>
<div class="text-muted">
Enable credit limit for customers
</div>
</div>
</div>
</xpath>
<!-- Remove the enterprise budget option -->
<xpath expr="//div[@id='account_budget']" position="replace"/>
</field>
</record>
</data>

Loading…
Cancel
Save