In odooV8, I don't understand the "file" field in the xml <report declaration (where report is the shortcut for ir.action.report).
For instance, with:
[code]<report
id="contract_fibra_30 "
string="Contract fibra 30 Mb/s"
name="contract_fibra_print.contract_f_30"
model="res.partner"
report_type="qweb-pdf"
file="contract_fib_30"
/>[/code]
id is the unique name of the action.report declaration
string is the human readable name of the action.report declaration
name is the template name is used for the report
model is the model used to get the data
report_type is the pdf or html type
file ???
Is not the name of the downloaded file.
Andrea