def on_btnSelectRelegateOrg_clicked(self): orgId = selectOrganisation(self, self.cmbRelegateOrg.value(), False, filter=CPolyclinicComboBox._filter) self.cmbRelegateOrg.update() if orgId: self.cmbRelegateOrg.setValue(orgId)
def on_btnSelectArmyOrg_clicked(self): orgId = selectOrganisation(self, self.cmbArmyOrg.value(), False, filter=CArmyOrgComboBox._filter) self.cmbArmyOrg.update() if orgId: self.cmbArmyOrg.setValue(orgId)
def on_btnSelectWorkOrganisation_clicked(self): orgId = selectOrganisation(self, self.cmbWorkOrganisation.value(), False) self.cmbWorkOrganisation.update() if orgId: self.cmbWorkOrganisation.setValue(orgId)
def on_btnSelectOrg_clicked(self): orgId = selectOrganisation(self, self.cmbOrg.value(), False, self.cmbOrg.filter()) self.cmbOrg.update() if orgId: self.cmbOrg.setValue(orgId)