15 lines
408 B
Python
15 lines
408 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class ResPartnerActivation(models.Model):
|
||
|
_name = 'res.partner.activation'
|
||
|
_order = 'sequence'
|
||
|
_description = 'Partner Activation'
|
||
|
|
||
|
sequence = fields.Integer('Sequence')
|
||
|
name = fields.Char('Name', required=True)
|
||
|
active = fields.Boolean(default=True)
|