Ejemplo n.º 1
0
 def checkDataEntered(self):
     if not CItemEditorBaseDialog.checkDataEntered(self):
         return False
     for row, record in enumerate(self.modelMenuContent.items()):
         if not self.checkMenuContentEntered(row, record):
             return False
     return True
Ejemplo n.º 2
0
 def checkDataEntered(self):
     result = CItemEditorBaseDialog.checkDataEntered(self)
     if result:
         existsTestIdList = []
         for row, record in enumerate(self.modelSuiteReagentTests.items()):
             result = self.checkTestDataEntered(row, record, existsTestIdList)
             if not result:
                 break
     return result
Ejemplo n.º 3
0
 def checkDataEntered(self):
     result = CItemEditorBaseDialog.checkDataEntered(self)
     #        result = result and (self.checkRecursion(self.cmbGroup.value()) or self.checkValueMessage(u'попытка создания циклической группировки', False, self.cmbGroup))
     #        result = result and (self.cmbPurpose.value() or self.checkInputMessage(u'назначение', False, self.cmbPurpose))
     return result
Ejemplo n.º 4
0
 def checkDataEntered(self):
     result = CItemEditorBaseDialog.checkDataEntered(self)
     result = result and self.checkCmbGroup()
     return result
Ejemplo n.º 5
0
 def checkDataEntered(self):
     result = CItemEditorBaseDialog.checkDataEntered(self)
     return result
Ejemplo n.º 6
0
 def checkDataEntered(self):
     chkCode = self.checkUniqueCode()
     result = CItemEditorBaseDialog.checkDataEntered(self)
     return result and chkCode