我在openerp 7中使用aeroo报告生成xls报告,我创建了包含数据作为输入文件的ods文件,xls作为输出
我用python函数返回阿拉伯字符串,
def _test(self, data):
res=[]
for item in data :
month_move=datetime.strptime(str(item.date), '%Y-%m-%d %H:%M:%S').year
if month_move == date.today().year:
res.append(item)
return res,'الاتبللا'
我有一些日期是阿拉伯字母,当我试图打印报告时,我收到了这个错误消息:
Aeroo Reports: Error while generating the report. ascii
如果我使用该功能,我会收到该错误,但如果我没有使用它,报告会正确生成,
我使用的是Genshi包版本6.0,libreoffice版本5.1和openerp版本7以及python版本2.7
答案 0 :(得分:1)