Skip to content
Snippets Groups Projects
Commit 1249ae6e authored by Carlos Roca's avatar Carlos Roca
Browse files

[IMP] event_sale: export classes of model and record of event configurator


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: default avatarThibault Delavallee (tde) <tde@openerp.com>
parent 1f266381
Branches
Tags
No related merge requests found
......@@ -12,9 +12,9 @@ import { Record, RelationalModel } from "@web/views/relational_model";
* those 2 fields ('event_id' + 'event_ticket_id')
*/
class EventConfiguratorRelationalModel extends RelationalModel {}
export class EventConfiguratorRelationalModel extends RelationalModel {}
class EventConfiguratorRecord extends Record {
export class EventConfiguratorRecord extends Record {
/**
* We let the regular process take place to allow the validation of the required fields
* to happen.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment