Hello everyone !
Here it is, I have a product and i would like to trigger a method (so with api.depends) when the price of this product is changed in a pricelist.
For example, if i have an item on this product in the pricelist that says there is a discount of 10% from the 20th of July : the method would be called at midnight the 20th when the price is changed.
Actually, i use
'product.pricelist_item_ids.price',
'product.pricelist_item_ids.percent_price',
'product.pricelist_item_ids.fixed_price' but this trigger when an element is added in the pricelist and this trigger for every product (even the one that are not concerned by the new item)
Thank you in advance ;)