blob: 79b938e289e589e3d6163cfd6c3c969b4ab34f60 (
plain)
1
2
3
4
5
6
7
8
|
from odoo import fields, models
class PromotionProgramKeyword(models.Model):
_name = "promotion.program.keyword"
name = fields.Char(string="Keyword")
program_id = fields.Many2one(comodel_name="promotion.program")
|