14 lines
476 B
Python
14 lines
476 B
Python
# Copyright 2018-Today datenpol gmbh (<http://www.datenpol.at>)
|
|
# License OPL-1 or later (https://www.odoo.com/documentation/user/11.0/legal/licenses/licenses.html#licenses).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class CommissionAccount(models.Model):
|
|
_name = 'commission.account'
|
|
_description = 'Provisionsempfänger Objekt'
|
|
_order = "sequence, name"
|
|
|
|
name = fields.Char(string="Bezeichnung", required=True)
|
|
sequence = fields.Integer(string="Sequenznummer")
|