I have added a button on wizard "Change Standard Price(stock.change.standard.price)". It is accessible from Products-> Procurement Tab -> "- update" link.
As soon as I click on that button wizard get closed though I don't want to close it. It should be close when I click on "Apply" or "cancel".
Here is the code:
Button:
<button string="New Cost" name="get_price" type="object" class="oe_inline"/>
Method:
def get_price(self, cr, uid, ids, context=None):
cost_price = 100
return {'new_price': cost_price, 'nodestroy': True}
I am returning nodestroy too as I read it will for not destroying wizard.
Am I doing something wrong?
Thanx in advance.
Try to return dictionary like
This will reopen the wizard.if you want to reopen the wizard.