好吧,我正在使用通用视图来显示定义我的方法字段的选定字段,它可以工作,但我正在尝试做的事情如下,在我的一个自定义字段中,我想检索“代理”的名称值在我的班级'Tareas'中与他的'idagente'相匹配,
class Tareas(models.Model):
fechatarea = models.DateTimeField(null=True, db_column='fechaTarea', blank=True) # Field name made lowercase.
horainicio = models.DateTimeField(null=True, db_column='horaInicio', blank=True) # Field name made lowercase.
horafin = models.DateTimeField(null=True, db_column='horaFin', blank=True) # Field name made lowercase.
observaciones = models.TextField(blank=True)
unidades = models.BigIntegerField(null=True, blank=True)
validar = models.IntegerField()
idtipotarea = models.ForeignKey(Tipotarea, db_column='idtipotarea')
idtarea = models.IntegerField(primary_key=True, db_column='idTarea')
idagente = models.ForeignKey(Agentes, db_column='idagente',blank=True, null=True)
def __fields__(self,profile):
fields=[]
fields.append( ('idagente'), _('Tipo de Agente')) )
fields.append( ('fechatarea', _('Fecha de Tarea') ) )
fields.append( ('horainicio', _('Inicio') ) )
fields.append( ('horafin', _('Fin') ) )
fields.append( ('unidades', _('Unidades') ) )
return fields
在我的模型类 por Agentes 中,我定义了一个unicode方法,它返回我的员工姓名但总是打印他的 ID,当我与我的领域建立关系时我忘记了什么?