Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1693 Rev 1695
Line 109... Line 109...
109
	public void setStockageParametre(String type, Object valeur) {
109
	public void setStockageParametre(String type, Object valeur) {
110
		remplacerTypeDansChaineDenormalise("truk_stockage_parametre", type, valeur);
110
		remplacerTypeDansChaineDenormalise("truk_stockage_parametre", type, valeur);
111
	}
111
	}
Line 112... Line 112...
112
	
112
	
113
	// COLLECTION COMMUNE
113
	// COLLECTION COMMUNE
-
 
114
	public Integer getCollectionCommune() {
-
 
115
		if (renvoyerValeurCorrecte("mark_collection_commune").equals("")) {
-
 
116
			return null;
114
	public String getCollectionCommune() {
117
		}
115
		return renvoyerValeurCorrecte("mark_collection_commune");
118
		return Integer.parseInt(renvoyerValeurCorrecte("mark_collection_commune"));
116
	}
119
	}
117
	public void setCollectionCommune(String ccm) {
120
	public void setCollectionCommune(String ccm) {
118
		this.set("mark_collection_commune", ccm);
121
		this.set("mark_collection_commune", ccm != null ? Integer.parseInt(ccm) : null);
Line 119... Line 122...
119
	}
122
	}
120
	
123
	
121
	// COLLECTION AUTRE
124
	// COLLECTION AUTRE
Line 128... Line 131...
128
	public void setCollectionAutre(String type, Object valeur) {
131
	public void setCollectionAutre(String type, Object valeur) {
129
		remplacerTypeDansChaineDenormalise("truk_collection_autre", type, valeur);
132
		remplacerTypeDansChaineDenormalise("truk_collection_autre", type, valeur);
130
	}
133
	}
Line 131... Line 134...
131
	
134
	
132
	// ACCÈS CONTROLÉ
135
	// ACCÈS CONTROLÉ
-
 
136
	public Integer getAccesControle() {
-
 
137
		if (renvoyerValeurCorrecte("mark_acces_controle").equals("")) {
-
 
138
			return null;
133
	public String getAccesControle() {
139
		}
134
		return renvoyerValeurCorrecte("mark_acces_controle");
140
		return Integer.parseInt(renvoyerValeurCorrecte("mark_acces_controle"));
135
	}
141
	}
136
	public void setAccesControle(String ac) {
142
	public void setAccesControle(String ac) {
137
		this.set("mark_acces_controle", ac);
143
		this.set("mark_acces_controle", ac != null ? Integer.parseInt(ac) : null);
Line 138... Line 144...
138
	}
144
	}
139
	
145
	
-
 
146
	// RESTAURATION
-
 
147
	public Integer getRestauration() {
-
 
148
		if (renvoyerValeurCorrecte("mark_restauration").equals("")) {
140
	// RESTAURATION
149
			return null;
141
	public String getRestauration() {
150
		}
142
		return renvoyerValeurCorrecte("mark_restauration");
151
		return Integer.parseInt(renvoyerValeurCorrecte("mark_restauration"));
143
	}
152
	}
144
	public void setRestauration(String ccm) {
153
	public void setRestauration(String ccm) {
Line 145... Line 154...
145
		this.set("mark_restauration", ccm);
154
		this.set("mark_restauration", ccm != null ? Integer.parseInt(ccm) : null);
146
	}
155
	}
147
	
156
	
Line 174... Line 183...
174
	public void setMaterielAutre(String type, Object valeur) {
183
	public void setMaterielAutre(String type, Object valeur) {
175
		ajouterChaineDenormaliseAvecType("truk_materiel_autre", type, valeur);
184
		ajouterChaineDenormaliseAvecType("truk_materiel_autre", type, valeur);
176
	}
185
	}
Line 177... Line 186...
177
	
186
	
178
	// TRAITEMENT
187
	// TRAITEMENT
-
 
188
	public Integer getTraitement() {
-
 
189
		if (renvoyerValeurCorrecte("mark_traitement").equals("")) {
-
 
190
			return null;
179
	public String getTraitement() {
191
		}
180
		return renvoyerValeurCorrecte("mark_traitement");
192
		return Integer.parseInt(renvoyerValeurCorrecte("mark_traitement"));
181
	}
193
	}
182
	public void setTraitement(String t) {
194
	public void setTraitement(String t) {
183
		this.set("mark_traitement", t);
195
		this.set("mark_traitement", t != null ? Integer.parseInt(t) : null);
Line 184... Line 196...
184
	}
196
	}
185
	
197
	
186
	// TRAITEMENTS
198
	// TRAITEMENTS
Line 193... Line 205...
193
	public void setTraitements(String type, Object valeur) {
205
	public void setTraitements(String type, Object valeur) {
194
		ajouterChaineDenormaliseAvecType("truk_traitement", type, valeur);
206
		ajouterChaineDenormaliseAvecType("truk_traitement", type, valeur);
195
	}
207
	}
Line 196... Line 208...
196
	
208
	
197
	// ACQUISITION COLLECTION
209
	// ACQUISITION COLLECTION
-
 
210
	public Integer getAcquisitionCollection() {
-
 
211
		if (renvoyerValeurCorrecte("mark_acquisition_collection").equals("")) {
-
 
212
			return null;
198
	public String getAcquisitionCollection() {
213
		}
199
		return renvoyerValeurCorrecte("mark_acquisition_collection");
214
		return Integer.parseInt(renvoyerValeurCorrecte("mark_acquisition_collection"));
200
	}
215
	}
201
	public void setAcquisitionCollection(String ac) {
216
	public void setAcquisitionCollection(String ac) {
202
		this.set("mark_acquisition_collection", ac);
217
		this.set("mark_acquisition_collection", ac != null ? Integer.parseInt(ac) : null);
Line 203... Line 218...
203
	}
218
	}
204
	
219
	
-
 
220
	// ACQUISITION ECHANTILLON
-
 
221
	public Integer getAcquisitionEchantillon() {
-
 
222
		if (renvoyerValeurCorrecte("mark_acquisition_echantillon").equals("")) {
205
	// ACQUISITION ECHANTILLON
223
			return null;
206
	public String getAcquisitionEchantillon() {
224
		}
207
		return renvoyerValeurCorrecte("mark_acquisition_echantillon");
225
		return Integer.parseInt(renvoyerValeurCorrecte("mark_acquisition_echantillon"));
208
	}
226
	}
209
	public void setAcquisitionEchantillon(String ae) {
227
	public void setAcquisitionEchantillon(String ae) {
Line 210... Line 228...
210
		this.set("mark_acquisition_echantillon", ae);
228
		this.set("mark_acquisition_echantillon", ae != null ? Integer.parseInt(ae) : null);
211
	}
229
	}
212
	
230