Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
3622 Visualizzazioni

I'm working on update the sale order lines with discount value, and there is some product has an option no discount, that means ignoring then while distributing the discount values on the lines

here is the method


@api.onchange('discount_type', 'discount_rate', 'order_line', 'discount_durar')
def set_lines_discount(self):
total = discount = 0.0
for line in self.order_line:
if self.discount_type == 'percentage':
if line.no_discount_field:
line.discount_durar = 0
else:
line.discount_durar = self.discount_rate
else:
if line.no_discount_field == True:
line.discount_durar = 0
else:
total += (line.product_uom_qty * line.price_unit)
if self.discount_rate != 0:
discount = (self.discount_rate / total) * 100
else:
discount = self.discount_rate
for line in self.order_line.search([('no_discount_field', '=', False)]):
line.discount_durar = discount

it's worked well in all conditions except the last one which I used search on it, it needs the order to be saved to be calculated and to loop over the lines.

how can in loop over the lines with a condition before I save the order?

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
1
mar 20
4738
0
mar 22
2443
0
apr 20
3083
1
gen 20
2972
2
dic 19
3545