Line 45... |
Line 45... |
45 |
* @param motcle
|
45 |
* @param motcle
|
46 |
* le mots clés à ajouter avec son parent et son identifiant
|
46 |
* le mots clés à ajouter avec son parent et son identifiant
|
47 |
*/
|
47 |
*/
|
Line 48... |
Line 48... |
48 |
|
48 |
|
49 |
public void ajouter(final Rafraichissable r, String utilisateur, final Observation obs) {
|
- |
|
50 |
|
- |
|
51 |
|
- |
|
52 |
// private void addElement(String nom_sel, String num_nom_sel, String nom_ret,
|
- |
|
Line 53... |
Line 49... |
53 |
// String num_nom_ret, String num_taxon, String famille,final String loc, String id_location,String dat, String lieu, String sta, String mil, String comment) {
|
49 |
public void ajouter(final Rafraichissable r, String utilisateur, final Observation obs) {
|
Line 54... |
Line 50... |
54 |
|
50 |
|
55 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST,Configuration.getServiceBaseUrl()+ "/Inventory/") ;
|
51 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST,Configuration.getServiceBaseUrl()+ "/Inventory/") ;
|
56 |
|
52 |
|
57 |
String postData = "identifiant="
|
53 |
String postData = "ce_utilisateur="
|
58 |
+ utilisateur
|
54 |
+ utilisateur
|
59 |
+"&nom_sel="+URL.encodeComponent(obs.getNomSaisi())
|
55 |
+"&nom_sel="+URL.encodeComponent(obs.getNomSaisi())
|
60 |
+"&num_nom_sel="+obs.getNumeroNomenclaturalSaisi()
|
56 |
+"&nom_sel_nn="+obs.getNumeroNomenclaturalSaisi()
|
61 |
+"&location="+URL.encodeComponent(obs.getLocalite())
|
57 |
+"&zone_geo="+URL.encodeComponent(obs.getLocalite())
|
62 |
+"&id_location="+obs.getIdentifiantLocalite()
|
58 |
+"&ce_zone_geo="+obs.getIdentifiantLocalite()
|
63 |
+"&date_observation=" + obs.getDate()
|
59 |
+"&date_observation=" + obs.getDate()
|
64 |
+"&lieudit="+ URL.encodeComponent(obs.getLieudit())
|
60 |
+"&lieudit="+ URL.encodeComponent(obs.getLieudit())
|
65 |
+"&station="+URL.encodeComponent(obs.getStation())
|
61 |
+"&station="+URL.encodeComponent(obs.getStation())
|
66 |
+"&milieu="+URL.encodeComponent(obs.getMilieu())
|
62 |
+"&milieu="+URL.encodeComponent(obs.getMilieu())
|
Line 67... |
Line 63... |
67 |
+"&commentaire="+obs.getCommentaire()
|
63 |
+"&commentaire="+obs.getCommentaire()
|
Line 68... |
Line 64... |
68 |
+"&coord_x="+URL.encodeComponent(""+obs.getCoordonneeX())
|
64 |
+"&latitude="+URL.encodeComponent(""+obs.getLatitude())
|
Line 105... |
Line 101... |
105 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST,Configuration.getServiceBaseUrl()+ "/Inventory/" + utilisateur + "/" + obs.getNumeroOrdre()+ "/") ;
|
101 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST,Configuration.getServiceBaseUrl()+ "/Inventory/" + utilisateur + "/" + obs.getNumeroOrdre()+ "/") ;
|
Line 106... |
Line 102... |
106 |
|
102 |
|
107 |
String postData = "identifiant="
|
103 |
String postData = "identifiant="
|
108 |
+ utilisateur
|
104 |
+ utilisateur
|
109 |
+ "&nom_sel=" + URL.encodeComponent(obs.getNomSaisi())
|
105 |
+ "&nom_sel=" + URL.encodeComponent(obs.getNomSaisi())
|
110 |
+ "&num_nom_sel=" + obs.getNumeroNomenclaturalSaisi()
|
106 |
+ "&nom_sel_nn=" + obs.getNumeroNomenclaturalSaisi()
|
111 |
+ "&location=" + URL.encodeComponent(obs.getLocalite())
|
107 |
+ "&zone_geo=" + URL.encodeComponent(obs.getLocalite())
|
112 |
+ "&id_location=" + obs.getIdentifiantLocalite()
|
108 |
+ "&ce_zone_geo=" + obs.getIdentifiantLocalite()
|
113 |
+ "&date_observation=" + obs.getDate()
|
109 |
+ "&date_observation=" + obs.getDate()
|
114 |
+ "&lieudit="+ URL.encodeComponent(obs.getLieudit())
|
110 |
+ "&lieudit="+ URL.encodeComponent(obs.getLieudit())
|
115 |
+ "&station="+ URL.encodeComponent(obs.getStation())
|
111 |
+ "&station="+ URL.encodeComponent(obs.getStation())
|
116 |
+"&milieu="+ URL.encodeComponent(obs.getMilieu())
|
112 |
+"&milieu="+ URL.encodeComponent(obs.getMilieu())
|
117 |
+"&commentaire="+obs.getCommentaire()
|
113 |
+"&commentaire="+obs.getCommentaire()
|
118 |
+"&mots_cles="+URL.encodeComponent(""+obs.getMotsCles())
|
114 |
+"&mots_cles="+URL.encodeComponent(""+obs.getMotsCles())
|
119 |
+"&coord_x="+URL.encodeComponent(""+obs.getCoordonneeX())
|
115 |
+"&latitude="+URL.encodeComponent(""+obs.getLatitude())
|
Line 120... |
Line 116... |
120 |
+"&coord_y="+URL.encodeComponent(""+obs.getCoordonneeY());
|
116 |
+"&longitude="+URL.encodeComponent(""+obs.getLongitude());
|
Line 121... |
Line 117... |
121 |
|
117 |
|