Exemplo n.º 1
0
 def create_service(self, service, fraction):
     Planification = Pool().get('lims.planification')
     new_service = super().create_service(service, fraction)
     Planification.automatic_plan(entries=[new_service.entry])
     return new_service
Exemplo n.º 2
0
 def confirm(cls, tests):
     Planification = Pool().get('lims.planification')
     super().confirm(tests)
     Planification.automatic_plan(tests=tests)
Exemplo n.º 3
0
 def confirm(cls, entries):
     Planification = Pool().get('lims.planification')
     super().confirm(entries)
     Planification.automatic_plan(entries=entries)