This question has been flagged

I'm trying to update the discount of every SaleOrderLine on a SaleOrder after the discount of another SaleOrderLine with the same product_id has been changed.
So far I can update the discount field by searching the affected lines on the database, write the new discount and return the id's fo the affected lines to update the UI, but with the changes can't be discarded, as they were written to the database.
I've tried to make the discount field depend on the discount of the other SaleOrderLines, but the execution of this gets all messy as there isn't a clean way to check which line has the new discount.

Avatar
Discard