QWeb异常:评估时"coercing to Unicode: need string or buffer, int found"



我的代码中有一个问题:

def exam_day_date (self,day_id_date):
        id_date= []
        self._cr.execute(
            """select week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids from fci_exam_time_table_line, fci_subject s ,rel_sa t,lgna_teacher y  where exam_id = %d group by week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids order by exam_date  """ % (
            day_id_date))
        res = self._cr.dictfetchall()
        self._cr.execute(
            """select week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids from fci_exam_time_table_line, fci_subject s ,rel_sa t,lgna_teacher y  where exam_id = %d group by week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids order by exam_date   """ % (
            day_id_date))
        time_data = self._cr.dictfetchall()
        for time_detail in time_data:
            for data in res:
               time_detail[data['week_day']] = '('+data['week_day']+')n'+data['exam_date']+'n('+data['name']+')'+data['sasa_zozo']+data['teacher_ids']
            id_date.append(time_detail)
        print (id_date)
        return id_date

其中week_day、name是chars,exam_date是date,但sasa_zozo和teacher_ids是intgers

当我尝试打印报告时,它会给我错误

将整数转换为字符串并将其传递给打印的报告模板

def exam_day_date (self,day_id_date):
        id_date= []
        self._cr.execute(
            """select week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids from fci_exam_time_table_line, fci_subject s ,rel_sa t,lgna_teacher y  where exam_id = %d group by week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids order by exam_date  """ % (
            day_id_date))
        res = self._cr.dictfetchall()
        self._cr.execute(
            """select week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids from fci_exam_time_table_line, fci_subject s ,rel_sa t,lgna_teacher y  where exam_id = %d group by week_day,exam_date ,s.name,t.sasa_zozo,y.teacher_ids order by exam_date   """ % (
            day_id_date))
        time_data = self._cr.dictfetchall()
        for time_detail in time_data:
            for data in res:
               time_detail[data['week_day']] = '('+data['week_day']+')n'+data['exam_date']+'n('+data['name']+')'+str(data['sasa_zozo'])+str(data['teacher_ids'])
            id_date.append(time_detail)
        print (id_date)
        return id_date

您试图将一个整数附加到字符串中,这就是错误

的原因

相关内容

最新更新