Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
6861 Переглядів

I have an onchange function that creates an order line on the sales order, which fires when I put a discount value in the global_discount_rate field. The function is:

@api.onchange('global_discount_rate', 'global_discount_type')
def calculate_discount(self):

I need to call this onchange function from a function that I am attaching to a button in the same view. But I don't know the correct way to do it. I tried the following:
Attemp 1:

def create_line(self):
...
    self.calculate_discount()

Attemp 2:

def create_line(self):
...
linevals = {
'global_discount_rate': disc,
'global_discount_type': self.global_discount_type
}
line = self.env['sale.order'].new(self)
line.calculate_discount()
linevals = line._convert_to_write(line._cache)

Neither creates the line I need in the sales order











Аватар
Відмінити
Найкраща відповідь

Hi,
You can call the function from anywhere using it’s object. The onchange function calculate_discount() is defined in ‘sale.order’, then you can call it with a sale.order object. In your code, if the self is contain an object of sale.order then you can call it like this:
self.calculate_discount()

And if there's an another field order_id which is stored sale order object then
self.order_id.calculate_discount()

Regards

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
серп. 20
7735
3
січ. 18
5630
1
лип. 25
2534
2
груд. 24
21164
0
вер. 24
1039