mirror of
https://github.com/bringout/oca-ocb-crm.git
synced 2026-04-25 00:32:05 +02:00
Initial commit: Crm packages
This commit is contained in:
commit
21a345b5b9
654 changed files with 418312 additions and 0 deletions
19
odoo-bringout-oca-ocb-crm/crm/models/crm_recurring_plan.py
Normal file
19
odoo-bringout-oca-ocb-crm/crm/models/crm_recurring_plan.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class RecurringPlan(models.Model):
|
||||
_name = "crm.recurring.plan"
|
||||
_description = "CRM Recurring revenue plans"
|
||||
_order = "sequence"
|
||||
|
||||
name = fields.Char('Plan Name', required=True, translate=True)
|
||||
number_of_months = fields.Integer('# Months', required=True)
|
||||
active = fields.Boolean('Active', default=True)
|
||||
sequence = fields.Integer('Sequence', default=10)
|
||||
|
||||
_sql_constraints = [
|
||||
('check_number_of_months', 'CHECK(number_of_months >= 0)', 'The number of month can\'t be negative.'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue