forked from Noviat/account_ebics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f435e79
commit d91190d
Showing
5 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png | ||
:target: https://www.gnu.org/licenses/agpl | ||
:alt: License: AGPL-3 | ||
|
||
============================================== | ||
Deploy account_ebics module on Odoo Enterprise | ||
============================================== | ||
|
||
This module makes it possible to deploy the 'account_ebics' | ||
module on Odoo Enterprise. | ||
|
||
This module will be installed automatically when following modules are activated | ||
on your odoo database : | ||
|
||
- account_ebics | ||
- account_accountant |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright 2009-2019 Noviat. | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
'name': 'account_ebics on Odoo Enterprise', | ||
'summary': "Deploy account_ebics module on Odoo Enterprise", | ||
'version': '12.0.1.0.0', | ||
'author': 'Noviat', | ||
'category': 'Hidden', | ||
'license': 'AGPL-3', | ||
'installable': True, | ||
'depends': [ | ||
'account_ebics', | ||
'account_accountant', | ||
], | ||
'data': [ | ||
'views/account_ebics_menu.xml' | ||
], | ||
'installable': True, | ||
'auto_install': True, | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo> | ||
|
||
<record id="account_ebics.ebics_processing_menu" model="ir.ui.menu"> | ||
<field name="parent_id" eval="ref('account_accountant.menu_accounting')"/> | ||
</record> | ||
|
||
</odoo> |