Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. def ajax_dediche(req,order="dataInserimento"):
  2.     try:
  3.         logging.debug("Chiamato ajax_dediche")
  4.         dedicadao = DedicaDao()
  5.         dediche = dedicadao.findAll(order);
  6.         dedicheJson=[]
  7.         if dediche:            
  8.             for dedica in dediche:
  9.                 dedicheJson.append(dedica.toDict())
  10.         return  json.dumps(dedicheJson)
  11.     except Exception as e:
  12.         logging.error(e)
  13.         raise e