mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
[IMP] base_external_dbsource: Refactor & Split by source
* Heavily refactor code for reusability * Split all sources into independent modules * Add more test coverage * Add CRUD methods * Add iterator execute return to roadmap [UPD] Update base_external_dbsource_sqlite.pot
This commit is contained in:
committed by
Víctor Martínez
parent
6f7d257962
commit
a718447ee0
28
base_external_dbsource_sqlite/__manifest__.py
Normal file
28
base_external_dbsource_sqlite/__manifest__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright <2011> <Daniel Reis, Maxime Chambreuil, Savoir-faire Linux>
|
||||
# Copyright 2016 LasLabs Inc.
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
{
|
||||
'name': 'External Database Source - SQLite',
|
||||
'version': '10.0.1.0.0',
|
||||
'category': 'Tools',
|
||||
'author': "Daniel Reis, "
|
||||
"LasLabs, "
|
||||
"Odoo Community Association (OCA)",
|
||||
'website': 'https://github.com/OCA/server-tools',
|
||||
'license': 'LGPL-3',
|
||||
'depends': [
|
||||
'base_external_dbsource',
|
||||
],
|
||||
# Uncomment this for v11
|
||||
# 'external_dependencies': [
|
||||
# 'python': [
|
||||
# 'sqlalchemy',
|
||||
# ]
|
||||
# ],
|
||||
'demo': [
|
||||
'demo/base_external_dbsource.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True, # Remove this key for v11
|
||||
}
|
||||
Reference in New Issue
Block a user