10 lines
188 B
Python
10 lines
188 B
Python
from trytond.pool import PoolMeta
|
|
from trytond.model import fields
|
|
|
|
|
|
class Emplyee(metaclass=PoolMeta):
|
|
'Company'
|
|
__name__ = 'company.employee'
|
|
|
|
invima = fields.Char('Invima')
|