mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
Update roadmap for v15 and make some usability improvements
Improve usability about variable creation and choice by hiding base wizard base fields and display simplified view Add a description on paramter fields to help the user to use parameters If not parameter are used for the query, display the wizard with the generated file directly
This commit is contained in:
committed by
Sander Lienaerts
parent
94dc7c0887
commit
81fb4080cd
@@ -27,7 +27,22 @@ class SqlExport(models.Model):
|
||||
"sql_id",
|
||||
"field_id",
|
||||
"Parameters",
|
||||
domain=[("model", "=", "sql.file.wizard")],
|
||||
domain=[("model", "=", "sql.file.wizard"), ("state", "=", "manual")],
|
||||
help="Before adding parameters, make sure you have created one that fill your "
|
||||
"need in the dedicated menu with the right type and label. \n"
|
||||
"Then, when you add a parameter here, you have to include it in the SQL "
|
||||
"query in order to have dynamic values depending on the user choice.\n"
|
||||
"The format of the parameters in the SQL query must be like this :"
|
||||
" %(parameter_field_name)s. \n"
|
||||
"Example : from the variable menu, create an variable with type 'char', "
|
||||
"having field name 'x_name' and field label : 'Name' \n"
|
||||
"Then, you can create a SQL query like this : "
|
||||
"SELECT * FROM res_partner WHERE name = %(x_name)s the variable "
|
||||
"can be used in any number of different SQL queries. \n"
|
||||
"In the SQL query, you can also include these 2 special parameters "
|
||||
"%(user_id)s and %(company_id)s which will be replaced respectively by "
|
||||
"the user executing the query and the company of the user executing the"
|
||||
" query.",
|
||||
)
|
||||
|
||||
encoding = fields.Selection(
|
||||
@@ -51,15 +66,19 @@ class SqlExport(models.Model):
|
||||
def export_sql_query(self):
|
||||
self.ensure_one()
|
||||
wiz = self.env["sql.file.wizard"].create({"sql_export_id": self.id})
|
||||
return {
|
||||
"view_mode": "form",
|
||||
"res_model": "sql.file.wizard",
|
||||
"res_id": wiz.id,
|
||||
"type": "ir.actions.act_window",
|
||||
"target": "new",
|
||||
"context": self.env.context,
|
||||
"nodestroy": True,
|
||||
}
|
||||
# no variable input, we can return the file directly
|
||||
if not self.field_ids:
|
||||
return wiz.export_sql()
|
||||
else:
|
||||
return {
|
||||
"view_mode": "form",
|
||||
"res_model": "sql.file.wizard",
|
||||
"res_id": wiz.id,
|
||||
"type": "ir.actions.act_window",
|
||||
"target": "new",
|
||||
"context": self.env.context,
|
||||
"nodestroy": True,
|
||||
}
|
||||
|
||||
def _get_file_extension(self):
|
||||
self.ensure_one()
|
||||
|
||||
Reference in New Issue
Block a user