Skip to content

Commit

Permalink
Migration from 10.0 to 15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flachica committed Aug 2, 2022
1 parent d148a1c commit 9d3636c
Show file tree
Hide file tree
Showing 18 changed files with 304 additions and 244 deletions.
2 changes: 0 additions & 2 deletions base_external_dbsource/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# -*- coding: utf-8 -*-

from . import models
35 changes: 16 additions & 19 deletions base_external_dbsource/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
# -*- coding: utf-8 -*-
# Copyright <2011> <Daniel Reis, Maxime Chambreuil, Savoir-faire Linux>
# Copyright <2016> <Henry Zhou MAXodoo>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'External Database Sources',
'version': '10.0.2.0.0',
'category': 'Tools',
'author': "Daniel Reis, "
"LasLabs, "
"Odoo Community Association (OCA)",
'website': 'https:/OCA/server-tools',
'license': 'LGPL-3',
'images': [
'images/screenshot01.png',
"name": "External Database Sources",
"version": "15.0.1.0.0",
"category": "Tools",
"author": "Daniel Reis, " "LasLabs, " "Odoo Community Association (OCA)",
"website": "https:/OCA/server-tools",
"license": "LGPL-3",
"images": [
"images/screenshot01.png",
],
'depends': [
'base',
"depends": [
"base",
],
'data': [
'views/base_external_dbsource.xml',
'security/ir.model.access.csv',
"data": [
"views/base_external_dbsource.xml",
"security/ir.model.access.csv",
],
'demo': [
'demo/base_external_dbsource.xml',
"demo": [
"demo/base_external_dbsource.xml",
],
'installable': True,
"installable": True,
}
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?xml version="1.0"?>
<openerp>
<data>
<?xml version="1.0" ?>
<odoo>

<record model="base.external.dbsource" id="demo_postgre">
<field name="name">PostgreSQL local</field>
<field name="conn_string">dbname='postgres' password=%s</field>
<field name="password">postgresql</field>
<field name="connector">postgresql</field>
</record>

</data>
</openerp>


</odoo>
1 change: 0 additions & 1 deletion base_external_dbsource/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

Expand Down
2 changes: 0 additions & 2 deletions base_external_dbsource/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# -*- coding: utf-8 -*-

from . import base_external_dbsource
Loading

0 comments on commit 9d3636c

Please sign in to comment.