I have a form view. I entered a value in a field. How can i retrieve that value and have it assigned to some variable in .py for making operations

For Example: I have ActiveFrom field.I entered value 23-11-2011 to field in form view. I want to get that value dynamically in openerp. How can I do that?

link|improve this question

0% accept rate
3  
Could you be more specific about this Form you're working on? – dex19dt Nov 23 '11 at 11:31
what could be considered for "dynamically in openerp", "field onchange", "save event" or any other event ? could you give some more details, so one could help with correct solution. – Yajushi Nov 23 '11 at 12:08
feedback

1 Answer

I suspect you want the on_change event. It lets you trigger server-side code when the user changes a field's value. You can then change the value of other fields, or pop up a warning message.

Here's an example of how to pop up a warning from the warning module (slightly edited):

def onchange_partner_id(self, cr, uid, ids, part):
    warning = {}
    title = False
    message = False
    partner = self.pool.get('res.partner').browse(cr, uid, part)
    if partner.sale_warn != 'no-message':
        title =  _("Warning for %s") % partner.name
        message = partner.sale_warn_msg
        warning = {
                'title': title,
                'message': message,
        }

    result =  super(sale_order, self).onchange_partner_id(cr, uid, ids, part)
    return {'value': result.get('value',{}), 'warning':warning}
link|improve this answer
Thanks for reply Don.How to return warning message from on_change.Can explain me with code please – Santu Srinu Nov 24 '11 at 4:59
There you go, @SantuSrinu, also read the documentation I linked to. – Don Kirkby Nov 24 '11 at 17:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.