Exemplo n.º 1
0
 def onChangeSelect(self, index):
     combo = self.sender()
     if index > 0:
         self.targetCategory = combo.currentText()
         self.targetCategoryId = str(getCategoryId(combo.currentText()))
     else:
         self.targetCategory = ""
         self.targetCategoryId = ""
Exemplo n.º 2
0
def getCategoryId(catalog, categoryname):
    """
    Retorna el 'id' de una categoría por su nombre
    """
    return model.getCategoryId(catalog, categoryname)
Exemplo n.º 3
0
def getCategoryId(catalog, category_name):
    return model.getCategoryId(catalog, category_name)
Exemplo n.º 4
0
def getCategoryId(catalog, category):
    """
    Retorna el Id asociado a una categoria
    """
    return model.getCategoryId(catalog, category)