Subversion Repositories eFlore/Applications.del

Rev

Rev 1469 | Rev 1496 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1469 Rev 1471
Line 387... Line 387...
387
			java.util.Iterator<String> itVotes = votesPourCeProtocoles.keySet().iterator();
387
			java.util.Iterator<String> itVotes = votesPourCeProtocoles.keySet().iterator();
388
			while (itVotes.hasNext()) {
388
			while (itVotes.hasNext()) {
389
				JSONObject voteEnCours = votesPourCeProtocoles.get(itVotes.next()).isObject();
389
				JSONObject voteEnCours = votesPourCeProtocoles.get(itVotes.next()).isObject();
390
				VoteProtocole vd = new VoteProtocole();
390
				VoteProtocole vd = new VoteProtocole();
391
				vd.setContributeur(voteEnCours.get("auteur.id").isString().stringValue());
391
				vd.setContributeur(voteEnCours.get("auteur.id").isString().stringValue());
-
 
392
				vd.setId(voteEnCours.get("vote.id").isString().stringValue());
392
				// TODO récupérer la date du vote et la parser
393
				// TODO récupérer la date du vote et la parser
393
				vd.setDate(parserDateObservation(getValeurOuVide(voteEnCours, "date")));
394
				vd.setDate(parserDateObservation(getValeurOuVide(voteEnCours, "date")));
394
				int valeurVote = Integer.parseInt(voteEnCours.get("vote").isString().stringValue());
395
				int valeurVote = Integer.parseInt(voteEnCours.get("vote").isString().stringValue());
395
				vd.setVote(valeurVote);
396
				vd.setVote(valeurVote);
396
				if (!votesProtocoles.containsKey(idProtocoleVote)) {
397
				if (!votesProtocoles.containsKey(idProtocoleVote)) {
Line 667... Line 668...
667
				motsCles.add(motCle);
668
				motsCles.add(motCle);
668
			}
669
			}
669
		}
670
		}
670
		return motsCles;
671
		return motsCles;
671
	}
672
	}
-
 
673
 
-
 
674
	public static String parserRetourAjoutVoteProtocole(JSONObject retour) {
-
 
675
		String id = "";
-
 
676
		if (retour != null) {
-
 
677
			id = getValeurOuVide(retour, "id_vote");
-
 
678
		}
-
 
679
		return id;
-
 
680
	}
672
}
681
}