- Sep 17, 2023
-
-
Odoo Translation Bot authored
-
- Sep 10, 2023
-
-
Odoo Translation Bot authored
-
- Sep 03, 2023
-
-
Odoo Translation Bot authored
-
- Aug 27, 2023
-
-
Odoo Translation Bot authored
-
- Aug 16, 2023
-
-
Abdelouahab (abla) authored
To reproduce ============ - create event with ticket that can be sold on website - make company field empty in event form - buy ticket from website and go back to the event form > Error raised Problem ======== - the method `_compute_sale_price_subtotal` is using `company_id`, but as it's not required in Form View we give it a null value Solution ======== - make `company_id` required from view - if `company_id` is not set, use the current company from `env` - Define constraint on `website_id` as the user should choose website from same company of the event opw-3395108 closes odoo/odoo#128091 Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com>
-
- Aug 13, 2023
-
-
Odoo Translation Bot authored
-
- Aug 06, 2023
-
-
Odoo Translation Bot authored
-
- Jul 30, 2023
-
-
Odoo Translation Bot authored
-
- Jul 25, 2023
-
-
Carlos Roca authored
Exporting the EventConfiguratorRelationalModel and EventConfiguratorRecord classes allows us to easily extend them into other modules. This will allow us to add functionality to the event wizard of the sales lines without doing tricks. closes odoo/odoo#129541 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
- Jul 23, 2023
-
-
Odoo Translation Bot authored
-
- Jul 17, 2023
-
-
Carlos Roca authored
Before this change, if you tried to extend the event configurator to add new fields, it was not possible because only the two defined fields (event_id and event_ticket_id) were updated. After this change, all fields that are returned in the closeInfo.eventConfiguration will be updated. This is useful to avoid redefining the _openEventConfigurator function again and to make this functionality more extensible. closes odoo/odoo#128437 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
- Jul 16, 2023
-
-
Odoo Translation Bot authored
-
- Jul 11, 2023
-
-
Thibault Delavallée authored
ISSUE SMS reminders are not always correctly sent, as people fill form using local numbers. When scheduler run the number is not always recognized to be formatted using E164 format. We should try to normalize numbers when possible. SPECIFICATIONS Try a sanitize: format number based on event country (or partner if set). If formatting it works, use the given number, otherwise use the original number. Do it at registration creation, as classic flow is the frontend where customers give numbers used to create registrations. When the number is coming from the partner through the compute, do not do anything and keep current behavior which copies partner number if not given directly on the registration. Add an onchange to try to format the number in the form view, like what is done on leads. Do not automatically do it at write as it is not really required currently from business point of view, it is more an helper for frontend registration. Task-3342820 closes odoo/odoo#123658 Signed-off-by:
Warnon Aurélien (awa) <awa@odoo.com>
-
- Jul 09, 2023
-
-
Odoo Translation Bot authored
-
- Jul 02, 2023
-
-
Odoo Translation Bot authored
-
- Jun 25, 2023
-
-
Odoo Translation Bot authored
-
- Jun 18, 2023
-
-
Odoo Translation Bot authored
-
- Jun 11, 2023
-
-
Odoo Translation Bot authored
-
- Jun 04, 2023
-
-
Odoo Translation Bot authored
-
- May 28, 2023
-
-
Odoo Translation Bot authored
-
- May 14, 2023
-
-
Odoo Translation Bot authored
-
- May 07, 2023
-
-
Odoo Translation Bot authored
-
- Apr 30, 2023
-
-
Odoo Translation Bot authored
-
- Apr 26, 2023
-
-
Odoo Translation Bot authored
-
- Apr 16, 2023
-
-
Odoo Translation Bot authored
-
- Apr 14, 2023
-
-
Martin Trigaux authored
closes odoo/odoo#118563 Related: odoo/enterprise#39760 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Apr 09, 2023
-
-
Odoo Translation Bot authored
-
- Apr 02, 2023
-
-
Odoo Translation Bot authored
-
- Mar 30, 2023
-
-
Tommy (tong) authored
Steps to reproduce: - Install any localization account module - Install event_sale - Run the unit test :TestEventSale.test_ticket_price_with_currency_conversion Current behaviour: The unit test will fail in line 341 Expected behaviour: The unit test should not fail Explanation: The unit test used self.env.company which will populate demo invoices after installing the localization account module. Therefore we can't change the currency on the company any more in event_sale/tests/test_event_sale.py line 341. It is better to create a new company in the unit test to prevent side effect like this. closes odoo/odoo#116777 X-original-commit: 105b48b5 Signed-off-by:
William André (wan) <wan@odoo.com>
-
- Mar 26, 2023
-
-
Odoo Translation Bot authored
-
- Mar 20, 2023
-
-
Martin Trigaux authored
They dates from < 2027 and are quite outdated. Favour the nl translation instead. n_BE is not on Transifex so it was not possible to correct bad translations. closes odoo/odoo#115798 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Mar 19, 2023
-
-
Odoo Translation Bot authored
-
- Mar 12, 2023
-
-
Odoo Translation Bot authored
-
- Mar 05, 2023
-
-
Odoo Translation Bot authored
-
- Feb 27, 2023
-
-
Nasreddin Boulif (bon) authored
Current behavior: In a sale order: a wizard pops up to complete the link with the event and attendee when we add an event product (same issue with event booth). In quotation template: the wizard doesn't pop up when we add an event as optional product. When we create a sales order with the quotation template, the event is added as product but the wizard still does not pop up, and therefore, the SO is not linked to the event. After this commit: Don't allow adding event (or event booth) as optional product to a quotation template. A same fix was already done on products (not optional) here: https://github.com/odoo/odoo/pull/100499 opw-3081853 closes odoo/odoo#113720 X-original-commit: a6bc38598f695ead9d9816b6858823b28b4ba95d Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com> Signed-off-by:
Nasreddin Boulif (bon) <bon@odoo.com>
-
- Feb 26, 2023
-
-
Odoo Translation Bot authored
-
- Feb 20, 2023
-
-
Odoo Translation Bot authored
-
- Feb 13, 2023
-
-
Odoo Translation Bot authored
-
- Feb 05, 2023
-
-
Odoo Translation Bot authored
-
- Jan 29, 2023
-
-
Odoo Translation Bot authored
-