def query_table2():
   table1_inv_record = None
   table2_records = []
   if request.args:
      try:
         session.table1_id = int(request.args(0))
      except:
         pass
   row = db(db.table1.id==session.table1_id).select()
   for line in row:
      joined_records = line.inv_id
   query=db.table1.id.belongs(joined_records)
   db.table1.id.default = session.table1_id
   grid=SQLFORM.grid(query, user_signature=False)
   return dict(grid=grid)


2014-06-09 17:09 GMT-03:00 LoveWeb2py <atayloru...@gmail.com>:

> Hi Fabiano,
>
> I'm still trying to get this
>
> For your Objeto.almoxarifado_id.default = session.almoxarifado
>
> Shouldn't there be a db.Objeto.almoxarifado_id ? If I try to just put
> table2.id I get an error saying table2 isn't defined.
>
> Here is what I have so far
>
> def query_table2():
>    table1_inv_record = None
>
>    table2_records = []
>    table1_inv_record = request.args(0)
>    row = db(db.table1.id==table1_inv_record).select()
>    for line in row:
>       joined_records = line.inv_id
>    if table1_inv_record:
>      inv1_record = int(table1_inv_record)
>      session.table1_id = inv1_record
>    query=db.table1.id.belongs(joined_records)
>    db.table1.id.default = session.table1.id
>    grid=SQLFORM.grid(query, user_signature=False)
>    return dict(grid=grid)
>
> Still getting the same error though
>
> My db.model is like this: db.define_table('table2',
> Field('table1_inv_record', 'list:integer')
>
>  --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to