-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-3592 | Rename jss_data_import module as openerp7_data_import (#50)
- Loading branch information
Showing
14 changed files
with
87 additions
and
171 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
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,37 @@ | ||
{ | ||
'name': "OpenERP 7 Data Import", | ||
|
||
'summary': """ | ||
This model is specifically designed to migrate the OpenERP 7(Bahmni) database data to the Odoo 16 database""", | ||
|
||
'description': """ | ||
Overall, this module is intended to migrate data from one database to the current module's running database, | ||
with the option to configure the database settings directly from the configuration | ||
Use the environment variables for database connection:\n | ||
OPENERP_DB_HOST = "127.0.0.1" | ||
OPENERP_DB_PORT = "5432" | ||
OPENERP_DB_NAME = "database_name" | ||
OPENERP_DB_USER = "user_name" | ||
OPENERP_DB_PASSWORD = "password" | ||
""", | ||
|
||
'author': "Hari", | ||
'website': "https://bahmni.org", | ||
'category': 'Customizations', | ||
'version': '0.1', | ||
'depends': ['base'], | ||
'external_dependencies': { | ||
'python': ['python-decouple'] | ||
}, | ||
'data': [ | ||
'data/ir_cron_data.xml', | ||
], | ||
'demo': [ | ||
'demo/demo.xml', | ||
], | ||
'installable': True, | ||
'license': 'LGPL-3', | ||
'post_init_hook': '_create_demo_config_param', | ||
} |
55 changes: 32 additions & 23 deletions
55
jss_data_import/data/ir_cron_data.xml → openerp7_data_import/data/ir_cron_data.xml
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
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,4 @@ | ||
<odoo> | ||
<data> | ||
</data> | ||
</odoo> |
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
jss_data_import/security/ir.model.access.csv → ..._data_import/security/ir.model.access.csv
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||
access_jss_data_import_jss_data_import,jss_data_import.jss_data_import,model_jss_data_import_jss_data_import,base.group_user,1,1,1,1a | ||
access_openerp7_data_import_openerp7_data_import,openerp7_data_import.openerp7_data_import,model_openerp7_data_import_openerp7_data_import,base.group_user,1,1,1,1a | ||
# Allow access to module.button_immediate_install | ||
access_module_button_install,access_module_button_install,model_module_button_install,base.group_user,1,1,0,0,admin |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
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,4 @@ | ||
<odoo> | ||
<data> | ||
</data> | ||
</odoo> |