Skip to Content
Menu
This question has been flagged

Hello,

I use OpenERP 6.1. My issue is in a one2many wizard(sale.order.line) is that when you created a new line and saved this line with button in wizard, there is no create or write action, due to the code in web client, there is just a temporary id created prefixed as one2many_v_id_xxx (see file data.js in web), changes are really saved only when I push button save of the form, and not when I push button save of the wizard, then in this case operations I want to do can not be done immediately.

So I use the onchange function on the one2many field, this my function :

    def onchange_sale_lines(self, cr, uid, ids, lines,context=None):
        val = {}

        if context.get('order_id',False):
            order  = self.browse(cr,uid,context.get('order_id'))
            if len(lines)>0:
                i = 0
                for l in lines:
                    if l[0] == 0:
                        (l[2]).update({'order_id':context.get('order_id')})
                        self.pool.get('sale.order.line').create(cr,uid,l[2])
        return {'value':val}

It works, but when I push the button save of the form, OpenERP create twice the line. How to get it creates only one line and that is created in the onchange?

Thanks

Avatar
Discard
Related Posts Replies Views Activity
1
Jun 22
2644
0
Aug 17
5512
1
Jun 17
4805
0
Sep 20
2816
2
Apr 20
4105