Anthony,

What I want would be to insert the same value(integer) from one Field to 
another Field on other table. 
Ex.:

db.define_table('product',
    Field('name', 'string'),
    Field('qtd', 'integer', default=1, readable=False, writable=False),
    Field('stock_id', db.stock)
)

db.define_table('stock',
    Field('max', 'integer'),
    Field('min', 'integer'),
    Field('amount', 'integer') //This field i want equal the same 'qtd' 
field (product)
)


Do you know another way to do this??

-- 
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