Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
8687 Näkymät

When I run this code I get the error : "global name 'context' is not defined"

Can someone tell me what I am doing wrong?

    def get_attendance(self, cr, uid, ids, bt_no, st_name, att_sheet_no, context=None):
        attend_obj = self.pool.get('intrac.attend')
        for records in attend_obj.search(cr, uid, [('batch_number', '=', bt_no),('student_name', '=', st_name),('attend_sheet','=', att_sheet_no)], context=context):
            get_att_record = attend_obj.browse(cr, uid, records)
            get_att = get_att_record.attend_present.id
            _res = get_att
            return _res

Avatar
Hylkää

It is best if you check the traceback log first. The error may not be caused by this piece of code.

Tekijä

@Ivan I checked the traceback log and it is pointing to the third line of the code above. I am not an expert and I am learning on my own. Can you help?

Tekijä Paras vastaus

I figured it out. I modified the code in line 3 like this:

for records in attend_obj.search(cr, uid, [('batch_number', '=', bt_no),('student_name', '=', st_name),('attend_sheet','=', att_sheet_no)], context=None):

Avatar
Hylkää

You should use context=context instead, not context=None.