Good afternoon, everyone.
My query is:
I query the database controllers/default.py, is specifically
left=db.clientes.on(db.accountcode.id_clientes==db.clientes.id)
rows=db().select(db.accountcode.ani, db.clientes.rsocial,
left=left, orderby=db.clientes.rsocial)
If I
print rows
the result is the following:
accountcode.ani, clientes.rsocial
0, Boomerangip S.A.
1002, Boomerangip S.A.
1001, Boomerangip S.A.
122073, Centro de Telecomunicaciones Ricardo Gonzalez
EIRL
122074, Centro de Telecomunicaciones Ricardo Gonzalez
EIRL
but my problem is when I do in view/default/lineas.html
{{=rows}}
record here shows me this way
accountcode.ani clientes.rsocial
0 Boomerangip S.A.
1002 Boomerangip S.A.
1001 Boomerangip S.A.
122073 Centro de Tel...
122074 Centro de Tel...
What I need is to show me full information of the column
clientes.rsocial
So my question would be how to solve this problem?
I hope I can help, of course thank you very much.