[12.0][FIX] excel_import_export, use sudo() to get param

pull/2505/head
Kitti U 2019-08-07 16:11:51 +07:00 committed by Aungkokolin1997
parent dd57ad8529
commit c3a4609805
2 changed files with 11 additions and 6 deletions

View File

@ -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)

View File

@ -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