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
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
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
def checkDataEntered(self): result = CItemEditorBaseDialog.checkDataEntered(self) result = result and self.checkCmbGroup() return result
def checkDataEntered(self): result = CItemEditorBaseDialog.checkDataEntered(self) return result
def checkDataEntered(self): chkCode = self.checkUniqueCode() result = CItemEditorBaseDialog.checkDataEntered(self) return result and chkCode