trytonpsk-sale_pos_frontend.../agent.py

11 lines
367 B
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from __future__ import unicode_literals
from trytond.pool import PoolMeta
from trytond.model import fields
class Agent(metaclass=PoolMeta):
__name__ = 'commission.agent'
user = fields.Many2One('res.user', 'user')