can not already tested it.
e.g.
def __onvalidate_receipt(form):
    if request.vars.receipt_type == 'Purchase Order':
        db.receipt_header.purchase_order_no.notnull = True
        db.receipt_header.purchase_order_no.required = True
    elif request.vars.receipt_type == 'Purchase Return':
        db.receipt_header.purchase_return_no.notnull = True
        db.receipt_header.purchase_return_no.required = True
    elif request.vars.receipt_type == 'Sale Return':
        db.receipt_header.sale_return_no.notnull = True
        db.receipt_header.sale_return_no.required = True

def receipt_form():
    form = SQLFORM(db.receipt_header)
    #if form.process(onvalidation = __onvalidate_receipt).accepted:
    if form.process(onvalidate = __onvalidate_receipt).accepted:
        response.js =  "jQuery('#receipt_checkout').get(0).reload()"
    return dict(form = form)

best regards,
stifan

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