[12.0][FIX] excel_import_export, use sudo() to get param
parent
dd57ad8529
commit
c3a4609805
|
@ -236,7 +236,7 @@ class XLSXExport(models.AbstractModel):
|
|||
return (out_file, out_name)
|
||||
# Prepare temp file (from now, only xlsx file works for openpyxl)
|
||||
decoded_data = base64.decodestring(template.datas)
|
||||
ConfParam = self.env['ir.config_parameter']
|
||||
ConfParam = self.env['ir.config_parameter'].sudo()
|
||||
ptemp = ConfParam.get_param('path_temp_file') or '/tmp'
|
||||
stamp = dt.utcnow().strftime('%H%M%S%f')[:-3]
|
||||
ftemp = '%s/temp%s.xlsx' % (ptemp, stamp)
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
12.0.1.0.2 (2019-08-07)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Small fix, to ensure that system parameter 'path_temp_file' (ir.config_parameter) is readable
|
||||
|
||||
12.0.1.0.1 (2019-06-24)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Fix wizard on v12 can't download sample template file - https://github.com/OCA/server-tools/issues/1574
|
||||
|
||||
12.0.1.0.0 (2019-02-24)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Start of the history
|
||||
|
||||
12.0.1.0.2 (2019-06-24)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Fix wizard on v12 can't download sample template file - https://github.com/OCA/server-tools/issues/1574
|
||||
|
|
Loading…
Reference in New Issue