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