fix: Se corrige nombre de clase Employee
This commit is contained in:
parent
dd9a3dc460
commit
70562ccac4
@ -10,7 +10,7 @@ __all__ = ['register']
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
company.Emplyee,
|
||||
company.Employee,
|
||||
equipment.OpticalEquipment,
|
||||
equipment.EquipmentParty,
|
||||
contract.Contract,
|
||||
|
@ -2,7 +2,7 @@ from trytond.pool import PoolMeta
|
||||
from trytond.model import fields
|
||||
|
||||
|
||||
class Emplyee(metaclass=PoolMeta):
|
||||
class Employee(metaclass=PoolMeta):
|
||||
'Company'
|
||||
__name__ = 'company.employee'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user