You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
403 B
12 lines
403 B
from odoo import api, fields, models, _
|
|
|
|
|
|
class EventQuestionAnswer(models.Model):
|
|
_inherit = "event.question.answer"
|
|
|
|
extra_product_ids = fields.One2many(
|
|
comodel_name="event.question.answer.product",
|
|
inverse_name="answer_id",
|
|
string="Extra Products",
|
|
help="These producs will be added to the sale order of the booking with the given quantity and price.",
|
|
)
|