我可以使用以下代码保存 Excel 文件:
f = cStringIO.StringIO() # This is a buffer to Store the above values
wb.save(f) # This will save the buffer
output_data=base64.encodestring(f.getvalue())
res = self.write(cr, uid, ids, {'state':'get','data':output_data, 'name':'kpi.xls'}, context=context)
return res
但我无法使用另存为向导保存 CSV 文件。