Hello every one,
i want check a lead type is 'lead' or 'opportunity'? from crm_lead table.
here is my code,
def _check_lead(self, cr, uid, ids, fields, args, context=None):
for lead in self.browse(cr, uid, ids, type, context=context):if lead.type == 'lead':
print "type is lead"
else:
print "type is opportunity"
please correct my code,
thanks in advance,