diff --git a/GSBapplication/src/TEST/testMain.java b/GSBapplication/src/TEST/testMain.java index 5e09b06..1209e29 100644 --- a/GSBapplication/src/TEST/testMain.java +++ b/GSBapplication/src/TEST/testMain.java @@ -29,8 +29,14 @@ public class testMain { //praticienSQL a =new praticienSQL(); //a.rechercherPraticien("Didier", "1234"); - MedicamentSQL b = new MedicamentSQL(); - b.rechercherMedicament("3MYC7"); + //MedicamentSQL b = new MedicamentSQL(); + //b.rechercherMedicament("3MYC7"); + + + + String id= "3MYC7"; + String imgTrouve = "../img/"+ id +".jpg"; + System.out.print(imgTrouve); } diff --git a/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java b/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java index 7c698b7..baa8764 100644 --- a/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java +++ b/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java @@ -22,13 +22,13 @@ public class MedicamentSQL { connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB"); } - public ArrayList rechercherMedicament (String idMedoc){ + public ArrayList rechercherMedicament (String nomCo){ ArrayList infoMedoc = new ArrayList(); try { stmt = connexionTest.createStatement(); // Accès à la table - result = stmt.executeQuery("SELECT * FROM MEDICAMENT WHERE mDepotLegal ='"+idMedoc+"';"); + result = stmt.executeQuery("SELECT * FROM MEDICAMENT WHERE mNomCommercial ='"+nomCo+"';"); if(result.next()){ infoMedoc.add(result.getString(1)); infoMedoc.add(result.getString(2)); diff --git a/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java b/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java index e27a6a5..f56f009 100644 --- a/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java +++ b/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java @@ -7,6 +7,7 @@ package acces_aux_donnes; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; +import java.util.ArrayList; /** * diff --git a/GSBapplication/src/presentation/jffFamilleMedoc.form b/GSBapplication/src/presentation/jffFamilleMedoc.form index efe1c22..519dfbf 100644 --- a/GSBapplication/src/presentation/jffFamilleMedoc.form +++ b/GSBapplication/src/presentation/jffFamilleMedoc.form @@ -28,6 +28,15 @@ + + + + + + + + + @@ -35,7 +44,13 @@ - + + + + + + + @@ -48,5 +63,23 @@ + + + + + + + + + + + + + + + + + + diff --git a/GSBapplication/src/presentation/jffFamilleMedoc.java b/GSBapplication/src/presentation/jffFamilleMedoc.java index 061a7be..a668c0a 100644 --- a/GSBapplication/src/presentation/jffFamilleMedoc.java +++ b/GSBapplication/src/presentation/jffFamilleMedoc.java @@ -4,6 +4,10 @@ */ package presentation; +import Metier.medicament; +import acces_aux_donnes.MedicamentSQL; +import java.util.ArrayList; + /** * * @author emile.lalorcey @@ -27,11 +31,29 @@ public class jffFamilleMedoc extends javax.swing.JFrame { private void initComponents() { jLabel1 = new javax.swing.JLabel(); + jLRecherche = new javax.swing.JLabel(); + jTFRecherche = new javax.swing.JTextField(); + jBRechercheValide = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/img/logodetoure.gif"))); // NOI18N + jLRecherche.setText("Recherche médicament : "); + + jTFRecherche.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + jTFRechercheActionPerformed(evt); + } + }); + + jBRechercheValide.setText("Rechercher"); + jBRechercheValide.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + jBRechercheValideActionPerformed(evt); + } + }); + javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( @@ -40,18 +62,57 @@ public class jffFamilleMedoc extends javax.swing.JFrame { .addContainerGap(344, Short.MAX_VALUE) .addComponent(jLabel1) .addContainerGap()) + .addGroup(layout.createSequentialGroup() + .addGap(20, 20, 20) + .addComponent(jLRecherche) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) + .addComponent(jTFRecherche, javax.swing.GroupLayout.PREFERRED_SIZE, 80, javax.swing.GroupLayout.PREFERRED_SIZE) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addComponent(jBRechercheValide) + .addGap(27, 27, 27)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel1) - .addContainerGap(262, Short.MAX_VALUE)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) + .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(jLRecherche) + .addComponent(jTFRecherche, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(jBRechercheValide)) + .addContainerGap(227, Short.MAX_VALUE)) ); pack(); }// //GEN-END:initComponents + private void jTFRechercheActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTFRechercheActionPerformed + + }//GEN-LAST:event_jTFRechercheActionPerformed + + private void jBRechercheValideActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBRechercheValideActionPerformed + String medocRechercher = jTFRecherche.getText(); + MedicamentSQL medocTest = new MedicamentSQL(); + ArrayList rechercheMedoc = new ArrayList(); + rechercheMedoc = medocTest.rechercherMedicament(medocRechercher); + if (rechercheMedoc.get(0) != null) { + String idTrouve = rechercheMedoc.get(0); + String nomTrouve = rechercheMedoc.get(1); + String compositionTrouve = rechercheMedoc.get(2); + String effetTrouve = rechercheMedoc.get(3); + String contreIndicationTrouve = rechercheMedoc.get(4); + String imgTrouve = "../img/"+ idTrouve +".jpg"; + medicament medocTrouve = new medicament(idTrouve, nomTrouve , compositionTrouve, effetTrouve + , contreIndicationTrouve,imgTrouve); + new jffInfoMedoc(medocTrouve).setVisible(true); + + + }else { + //ajout d'un JoptionPane + } + }//GEN-LAST:event_jBRechercheValideActionPerformed + /** * @param args the command line arguments */ @@ -88,6 +149,9 @@ public class jffFamilleMedoc extends javax.swing.JFrame { } // Variables declaration - do not modify//GEN-BEGIN:variables + private javax.swing.JButton jBRechercheValide; + private javax.swing.JLabel jLRecherche; private javax.swing.JLabel jLabel1; + private javax.swing.JTextField jTFRecherche; // End of variables declaration//GEN-END:variables } diff --git a/GSBapplication/src/presentation/jffInfoMedoc.form b/GSBapplication/src/presentation/jffInfoMedoc.form index d5d700d..a72bf53 100644 --- a/GSBapplication/src/presentation/jffInfoMedoc.form +++ b/GSBapplication/src/presentation/jffInfoMedoc.form @@ -49,15 +49,14 @@ + - - diff --git a/GSBapplication/src/presentation/jffInfoMedoc.java b/GSBapplication/src/presentation/jffInfoMedoc.java index ec24e12..807e801 100644 --- a/GSBapplication/src/presentation/jffInfoMedoc.java +++ b/GSBapplication/src/presentation/jffInfoMedoc.java @@ -4,6 +4,8 @@ */ package presentation; +import Metier.medicament; + /** * * @author emile.lalorcey @@ -13,7 +15,7 @@ public class jffInfoMedoc extends javax.swing.JFrame { /** * Creates new form jffInfoMedoc */ - public jffInfoMedoc() { + public jffInfoMedoc(medicament medocTrouve) { initComponents(); } @@ -152,7 +154,6 @@ public class jffInfoMedoc extends javax.swing.JFrame { /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { - new jffInfoMedoc().setVisible(true); } }); }