Skip to content
Snippets Groups Projects
Commit 285964b7 authored by Nicolas Martinelli's avatar Nicolas Martinelli
Browse files

[FIX] event_sale: ticket price currency conversion

When adding a ticket to a SO, the currency of the SO is not taken into
account in order to convert the ticket price.

opw-702683
parent 634fb9f3
No related branches found
No related tags found
No related merge requests found
......@@ -61,4 +61,4 @@ class SaleOrderLine(models.Model):
@api.onchange('event_ticket_id')
def _onchange_event_ticket_id(self):
self.price_unit = self.event_ticket_id.price
self.price_unit = (self.event_id.company_id or self.env.user.company_id).currency_id.compute(self.event_ticket_id.price, self.order_id.currency_id)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment