Esempio 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
Esempio n. 2
0
 def confirm(cls, tests):
     Planification = Pool().get('lims.planification')
     super().confirm(tests)
     Planification.automatic_plan(tests=tests)
Esempio n. 3
0
 def confirm(cls, entries):
     Planification = Pool().get('lims.planification')
     super().confirm(entries)
     Planification.automatic_plan(entries=entries)