Subversion Repositories eFlore/Applications.del

Rev

Rev 1006 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1006 Rev 1101
Line 53... Line 53...
53
 
53
 
54
	private Vue vue;
54
	private Vue vue;
55
	private ObservationService serviceObs;
55
	private ObservationService serviceObs;
56
	private ModeTri triCourantDate = ModeTri.TRI_DESCENDANT;
56
	private ModeTri triCourantDate = ModeTri.TRI_DESCENDANT;
-
 
57
	private CacheClient cache = CacheClient.getInstance();
Line 57... Line 58...
57
	private CacheClient cache = CacheClient.getInstance();
58
	private String statut;
58
 
59
 
59
	/**
60
	/**
60
	 * Constructeur de la classe
61
	 * Constructeur de la classe
61
	 * 
62
	 * 
62
	 * @param ObservationService
63
	 * @param ObservationService
63
	 *            serviceObs le service pour récupérer les observations
64
	 *            serviceObs le service pour récupérer les observations
64
	 * @Vue Vue l'objet implémentant l'interface
65
	 * @Vue Vue l'objet implémentant l'interface
65
	 * */
66
	 * */
66
	public ResultatsRechercheObservationsPresenteur(ObservationService serviceObs, Vue vue) {
67
	public ResultatsRechercheObservationsPresenteur(ObservationService serviceObs, Vue vue, String statut) {
67
		this.vue = vue;
68
		this.vue = vue;
-
 
69
		vue.setModeTri(triCourantDate);
68
		vue.setModeTri(triCourantDate);
70
		this.serviceObs = serviceObs;
Line 69... Line 71...
69
		this.serviceObs = serviceObs;
71
		this.statut = statut;
70
	}
72
	}
71
 
73
 
Line 104... Line 106...
104
				Window.alert(messageErreur);
106
				Window.alert(messageErreur);
Line 105... Line 107...
105
 
107
 
106
			}
108
			}
Line 107... Line 109...
107
		};
109
		};
108
 
110
 
Line 109... Line 111...
109
		serviceObs.getObservations(cache.getInformationsRechercheObservation(), debut, fin, callback);
111
		serviceObs.getObservations(cache.getInformationsRechercheObservation(), debut, fin, statut, callback);
110
	}
112
	}
111
 
113
 
Line 219... Line 221...
219
			public void surErreur(String messageErreur) {
221
			public void surErreur(String messageErreur) {
220
				Window.alert(messageErreur);
222
				Window.alert(messageErreur);
Line 221... Line 223...
221
 
223
 
222
			}
224
			}
223
		};
225
		};
224
		serviceObs.getObservations(cache.getInformationsRechercheObservation(), debut, fin, surReceptionObservation);
226
		serviceObs.getObservations(cache.getInformationsRechercheObservation(), debut, fin, statut, surReceptionObservation);
Line 225... Line 227...
225
	}
227
	}
226
 
228
 
227
	/**
229
	/**