mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-23 07:52:00 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
20
odoo-bringout-oca-ocb-loyalty/loyalty/models/loyalty_mail.py
Normal file
20
odoo-bringout-oca-ocb-loyalty/loyalty/models/loyalty_mail.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
# Allow promo programs to send mails upon certain triggers
|
||||
# Like : 'At creation' and 'When reaching X points'
|
||||
|
||||
class LoyaltyMail(models.Model):
|
||||
_name = 'loyalty.mail'
|
||||
_description = 'Loyalty Communication'
|
||||
|
||||
active = fields.Boolean(default=True)
|
||||
program_id = fields.Many2one('loyalty.program', required=True, ondelete='cascade')
|
||||
trigger = fields.Selection([
|
||||
('create', 'At Creation'),
|
||||
('points_reach', 'When Reaching')], string='When', required=True
|
||||
)
|
||||
points = fields.Float()
|
||||
mail_template_id = fields.Many2one('mail.template', string="Email Template", required=True, domain=[('model', '=', 'loyalty.card')])
|
||||
Loading…
Add table
Add a link
Reference in a new issue