コード例 #1
0
ファイル: RBMenu.py プロジェクト: dio4/vista_1
 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
コード例 #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
コード例 #3
0
ファイル: RBThesaurus.py プロジェクト: dio4/vista_1
 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
コード例 #4
0
 def checkDataEntered(self):
     result = CItemEditorBaseDialog.checkDataEntered(self)
     result = result and self.checkCmbGroup()
     return result
コード例 #5
0
ファイル: RBLaboratory.py プロジェクト: dio4/vista_1
 def checkDataEntered(self):
     result = CItemEditorBaseDialog.checkDataEntered(self)
     return result
コード例 #6
0
ファイル: KLADRMilitaryUnits.py プロジェクト: dio4/vista_1
 def checkDataEntered(self):
     chkCode = self.checkUniqueCode()
     result = CItemEditorBaseDialog.checkDataEntered(self)
     return result and chkCode