Test 4
This commit is contained in:
parent
6541e7532d
commit
37842afdeb
@ -17,12 +17,12 @@ public class Medicament {
|
|||||||
* contreindication = les contreindications du médicament
|
* contreindication = les contreindications du médicament
|
||||||
* prix = le prix en unité du médicament
|
* prix = le prix en unité du médicament
|
||||||
*/
|
*/
|
||||||
private int id;
|
private String id;
|
||||||
private String nom;
|
private String nom;
|
||||||
private String composition;
|
private String composition;
|
||||||
private String effet;
|
private String effet;
|
||||||
private String contreindication;
|
private String contreindication;
|
||||||
private float prix;
|
private String img;
|
||||||
|
|
||||||
|
|
||||||
/** LE CONSTRUCTEUR DEFAULT
|
/** LE CONSTRUCTEUR DEFAULT
|
||||||
@ -32,24 +32,22 @@ public class Medicament {
|
|||||||
* @param composition
|
* @param composition
|
||||||
* @param effet
|
* @param effet
|
||||||
* @param contreindication
|
* @param contreindication
|
||||||
* @param prix
|
|
||||||
*/
|
*/
|
||||||
public Medicament(int id, String nom, String composition, String effet, String contreindication, float prix) {
|
public Medicament(String id, String nom, String composition, String effet, String contreindication, String img) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.nom = nom;
|
this.nom = nom;
|
||||||
this.composition = composition;
|
this.composition = composition;
|
||||||
this.effet = effet;
|
this.effet = effet;
|
||||||
this.contreindication = contreindication;
|
this.contreindication = contreindication;
|
||||||
this.prix = prix;
|
this.img = img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** LES GUETTEUR
|
/** LES GUETTEUR
|
||||||
* @return the id
|
* @return the id
|
||||||
*/
|
*/
|
||||||
public int getId() {
|
public String getId(){
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -81,17 +79,15 @@ public class Medicament {
|
|||||||
return contreindication;
|
return contreindication;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public String getImg() {
|
||||||
* @return the prix
|
return img;
|
||||||
*/
|
|
||||||
public float getPrix() {
|
|
||||||
return prix;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Medicament{" + "id=" + id + ", nom=" + nom + ", composition=" + composition + ", effet=" + effet + ", contreindication=" + contreindication + ", prix=" + prix + '}';
|
return "Medicament{" + "id=" + id + ", nom=" + nom + ", composition=" + composition + ", effet=" + effet + ", contreindication=" + contreindication + ",img=" + img + '}';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,11 +4,6 @@
|
|||||||
*/
|
*/
|
||||||
package TEST;
|
package TEST;
|
||||||
|
|
||||||
import acces_aux_donnes.ConnexionSQL;
|
|
||||||
import acces_aux_donnes.PraticienSQL;
|
|
||||||
import acces_aux_donnes.MedicamentSQL;
|
|
||||||
import java.sql.Connection;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author medhi.rodrigues
|
* @author medhi.rodrigues
|
||||||
|
@ -19,7 +19,7 @@ public class MedicamentSQL {
|
|||||||
private ResultSet result = null;
|
private ResultSet result = null;
|
||||||
|
|
||||||
public MedicamentSQL() {
|
public MedicamentSQL() {
|
||||||
connexionTest = ConnexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB");
|
connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB");
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<String> rechercherMedicament (String nomCo){
|
public ArrayList<String> rechercherMedicament (String nomCo){
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*/
|
*/
|
||||||
package presentation;
|
package presentation;
|
||||||
|
|
||||||
import acces_aux_donnes.ObservationSQL;
|
import acces_aux_donnes.observationSQL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -94,7 +94,7 @@ public class jffAjoutObservation extends javax.swing.JFrame {
|
|||||||
}// </editor-fold>//GEN-END:initComponents
|
}// </editor-fold>//GEN-END:initComponents
|
||||||
|
|
||||||
private void jBsoumettreActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBsoumettreActionPerformed
|
private void jBsoumettreActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBsoumettreActionPerformed
|
||||||
ObservationSQL observ = new ObservationSQL();
|
observationSQL observ = new observationSQL();
|
||||||
observ.ajouterObservation(this.idMedoc, this.idPraticien, jTAobservation.getText());
|
observ.ajouterObservation(this.idMedoc, this.idPraticien, jTAobservation.getText());
|
||||||
}//GEN-LAST:event_jBsoumettreActionPerformed
|
}//GEN-LAST:event_jBsoumettreActionPerformed
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*/
|
*/
|
||||||
package presentation;
|
package presentation;
|
||||||
|
|
||||||
import acces_aux_donnes.PraticienSQL;
|
import acces_aux_donnes.praticienSQL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -158,7 +158,7 @@ public class jffConnexion extends javax.swing.JFrame {
|
|||||||
private void jBValiderActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBValiderActionPerformed
|
private void jBValiderActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBValiderActionPerformed
|
||||||
String identifiant = jTFIdentifiant.getText();
|
String identifiant = jTFIdentifiant.getText();
|
||||||
String mdp = String.valueOf(jPFmdp.getPassword());
|
String mdp = String.valueOf(jPFmdp.getPassword());
|
||||||
PraticienSQL testPraticien = new PraticienSQL();
|
praticienSQL testPraticien = new praticienSQL();
|
||||||
String [] lePraticien = testPraticien.rechercherPraticien(identifiant,mdp);
|
String [] lePraticien = testPraticien.rechercherPraticien(identifiant,mdp);
|
||||||
if (lePraticien[0] != null){
|
if (lePraticien[0] != null){
|
||||||
System.out.print("TEST REUSSIE");
|
System.out.print("TEST REUSSIE");
|
||||||
|
@ -102,9 +102,8 @@ public class jffFamilleMedoc extends javax.swing.JFrame {
|
|||||||
String compositionTrouve = rechercheMedoc.get(2);
|
String compositionTrouve = rechercheMedoc.get(2);
|
||||||
String effetTrouve = rechercheMedoc.get(3);
|
String effetTrouve = rechercheMedoc.get(3);
|
||||||
String contreIndicationTrouve = rechercheMedoc.get(4);
|
String contreIndicationTrouve = rechercheMedoc.get(4);
|
||||||
String imgTrouve = "../img/"+ idTrouve +".jpg";
|
String imgTrouve = "/img/"+ idTrouve +".jpg";
|
||||||
Medicament medocTrouve = new Medicament(idTrouve, nomTrouve , compositionTrouve, effetTrouve
|
Medicament medocTrouve = new Medicament(idTrouve, nomTrouve , compositionTrouve, effetTrouve, contreIndicationTrouve,imgTrouve);
|
||||||
, contreIndicationTrouve,imgTrouve);
|
|
||||||
new jffInfoMedoc(medocTrouve).setVisible(true);
|
new jffInfoMedoc(medocTrouve).setVisible(true);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user