bi_sql_editor: Migration to 14.0
parent
7536779f26
commit
24ae610f8c
|
@ -5,7 +5,7 @@
|
||||||
{
|
{
|
||||||
"name": "BI SQL Editor",
|
"name": "BI SQL Editor",
|
||||||
"summary": "BI Views builder, based on Materialized or Normal SQL Views",
|
"summary": "BI Views builder, based on Materialized or Normal SQL Views",
|
||||||
"version": "13.0.1.0.1",
|
"version": "14.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"category": "Reporting",
|
"category": "Reporting",
|
||||||
"author": "GRAP,Odoo Community Association (OCA)",
|
"author": "GRAP,Odoo Community Association (OCA)",
|
||||||
|
|
|
@ -9,7 +9,8 @@ from psycopg2 import ProgrammingError
|
||||||
|
|
||||||
from odoo import SUPERUSER_ID, _, api, fields, models
|
from odoo import SUPERUSER_ID, _, api, fields, models
|
||||||
from odoo.exceptions import UserError
|
from odoo.exceptions import UserError
|
||||||
from odoo.tools import pycompat, safe_eval, sql
|
from odoo.tools import pycompat, sql
|
||||||
|
from odoo.tools.safe_eval import safe_eval
|
||||||
|
|
||||||
from odoo.addons.base.models.ir_model import IrModel
|
from odoo.addons.base.models.ir_model import IrModel
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from odoo.exceptions import AccessError, UserError
|
from odoo.exceptions import AccessError, UserError
|
||||||
from odoo.tests.common import SingleTransactionCase, at_install, post_install
|
from odoo.tests import tagged
|
||||||
|
from odoo.tests.common import SingleTransactionCase
|
||||||
|
|
||||||
|
|
||||||
@at_install(False)
|
@tagged("-at_install", "post_install")
|
||||||
@post_install(True)
|
|
||||||
class TestBiSqlViewEditor(SingleTransactionCase):
|
class TestBiSqlViewEditor(SingleTransactionCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
|
|
Loading…
Reference in New Issue