diff --git a/src/components/Apprenant.js b/src/components/Apprenant.js
index f1fbb8e..f127687 100644
--- a/src/components/Apprenant.js
+++ b/src/components/Apprenant.js
@@ -4545,7 +4545,7 @@ const Apprenant = (props) => {
setgridline_id(newSelectionModel.row.id);
setselected_apprenant_id(newSelectionModel.row._id);
setselected_apprenant_row_id(newSelectionModel.row.id);
- setselected_apprenant_email(newSelectionModel.row.email);
+ setselected_apprenant_email(setselected_row_data_json_agenewSelectionModel.row.email);
Get_Apprenant_Images(newSelectionModel.row._id);
diff --git a/src/components/Employes.js b/src/components/Employes.js
index 8e65f9f..86f41ae 100644
--- a/src/components/Employes.js
+++ b/src/components/Employes.js
@@ -105,6 +105,13 @@ const Employes = (props) => {
},
{ field: 'telephone_mobile', headerName: 'Mobile', width: 150, hide: false, },
+ { field: 'adr_adresse', headerName: 'Adresse', width: 100, hide: true, editable: false, minWidth: 50, maxWidth: 70, flex: 1 },
+ { field: 'adr_code_postal', headerName: 'Code Postal', width: 100, hide: false, editable: false, minWidth: 50, maxWidth: 70, flex: 1 },
+ { field: 'adr_ville', headerName: 'Ville', width: 100, hide: false, editable: false, minWidth: 50, maxWidth: 70, flex: 1 },
+ { field: 'adr_pays', headerName: 'Pays', width: 100, hide: true, editable: false, minWidth: 50, maxWidth: 70, flex: 1 },
+
+
+
{ field: 'profil', headerName: 'profil', width: 150, hide: false, },
{ field: 'fonction', headerName: 'Fonction', width: 150, hide: false, },
@@ -4167,6 +4174,36 @@ const Employes = (props) => {
const myRef_contrat = useRef(null)
const [type_contrat_qte, settype_contrat_qte] = useState();
+
+ const [selected_row_data_json_age, setselected_row_data_json_age] = useState("");
+ const [Dialog_employe_message, setDialog_employe_message] = React.useState(false);
+ const [Dialog_employe_open, setDialog_employe_open] = React.useState(false);
+ function Dialog_employe_handle_change_participant_session(message) {
+ setDialog_employe_message(message);
+ setDialog_employe_open(true);
+ }
+
+ const Dialog_employe_handleClose = () => {
+
+ };
+
+ const Dialog_employe_handleClose_buton = () => {
+
+ setuserimgclassprofil("");
+ setselected_row_data_json_age("");
+ //setgridline_id('');
+ setDialog_employe_open(false);
+
+ };
+
+ function Show_Detailled_employe_Data(){
+
+ setselected_row_data_json_age("");
+ setDialog_employe_open(false);
+ handleClick_edit_employee_From_Line(gridline_id);
+ }
+
+
return (
@@ -4175,6 +4212,115 @@ const Employes = (props) => {
}
+
+
+