This question has been flagged
2 Replies
3209 Views

How can I put subtotal result into untaxed result when I changed the item fields?

For example I add a item (100$), subtotal is 100$, so the untaxed amount it will be 100$

and if I change the quantity for two items the amounts change to 200$.

Avatar
Discard
Best Answer

Does it not already do so? Or do you mean literally after every change on the object? If so, you might want to consider calling the "update" button from your on_change methods.

Avatar
Discard
Author

yes its that! I only have to call it like self.button_dummy(self, cr, uid, ids) ?

Should be enough yes. Give it a try.

Best Answer

You can also try this one...

In Order object: write an onchange which takes "order_lines" as parameter... and also in xml view, specify the onchange on the "order_lines" [o2m field]

So now in the onchange method, you can evaluate the lines,

by using orm method "resolve_o2m_commands_to_record_dicts" , which will help you to retrive the values of One2many lines in either case (i.e, saved or unsaved records)

Even I had the same requirement, and this works just perfect....

 

Avatar
Discard