update all kept modules to OCA 19.0 versions

bi_sql_editor 19.0.1.0.1, report_csv 19.0.1.0.0,
report_qweb_element_page_visibility 19.0.1.0.0,
report_xlsx_helper 19.0.1.0.0, report_xml 19.0.1.0.0,
sql_request_abstract 19.0.1.0.0

🤖 assisted by claude
This commit is contained in:
Ernad Husremovic 2026-03-09 22:24:48 +01:00
parent 05df50b41d
commit c18e7fd4c7
258 changed files with 8677 additions and 6341 deletions

View file

@ -7,9 +7,31 @@ from lxml import etree
from odoo import http
from odoo.tests import common
from odoo.tools import convert_file
class TestXmlReport(common.HttpCase):
@classmethod
def setUpClass(cls):
result = super().setUpClass()
convert_file(
cls.env,
module="report_xml",
filename="demo/report.xml",
idref={},
mode="init",
noupdate=True,
)
convert_file(
cls.env,
module="report_xml",
filename="demo/demo_report.xml",
idref={},
mode="init",
noupdate=True,
)
return result
def test_xml(self):
report_object = self.env["ir.actions.report"]
report_name = "report_xml.demo_report_xml_view"