13/05/2025 - 17h

recette2
cherif 2025-05-13 17:36:13 +02:00
parent ebbcc401d2
commit e65b98ac6a
11 changed files with 5582 additions and 91 deletions

View File

@ -3320,7 +3320,7 @@ const Groupe_Apprenant = (props) => {
{selected_id && String(selected_id).length > 5 && <div className="div_row">
<Button variant="outlined" onClick={submenu_detail} className="detail_class_submenu" id='detail_groupe' name='detail_groupe'>Détail Evaluation</Button>
<Button variant="outlined" onClick={submenu_apprenant} className="detail_class_submenu" id='apprenant' name='apprenant'>Membres </Button>
<Button variant="outlined" onClick={submenu_selection} className="detail_class_submenu" id='selection' name='selection'>Selection </Button>
<Button variant="outlined" onClick={submenu_selection} className="detail_class_submenu" id='selection' name='selection'>Sélection </Button>
<Button variant="outlined" onClick={submenu_piece_jointe} className="detail_class_submenu" id='piece_jointe' name='piece_jointe'>Pièces Jointes </Button>
</div>}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -291,6 +291,8 @@ const Module_Selection_Apprenants = (props) => {
}
}
const [Record_Membres_To_Groupe_Inscrit_api, setRecord_Membres_To_Groupe_Inscrit_api] = useState();
const [Record_Membres_To_Groupe_Inscrit_message, setRecord_Membres_To_Groupe_Inscrit_message] = useState();
const [Record_Membres_To_Groupe_Inscrit_result, setRecord_Membres_To_Groupe_Inscrit_result] = useState();
@ -656,7 +658,7 @@ const Module_Selection_Apprenants = (props) => {
const [ueChanged, setueChanged] = useState("");
return (
<div className="moduleselectionevaluationapprenants">

View File

@ -67,7 +67,7 @@ const useStyles = makeStyles((theme) => ({
const Module_Session_Notes_Classement = (props) => {
const classes = useStyles();
const history = useHistory();
const [jury_cell_editable, setjury_cell_editable] = useState(props.jury_cell_editable);
@ -188,7 +188,7 @@ const Module_Session_Notes_Classement = (props) => {
{ field: 'session_id', headerName: 'session_id', hide: true },
{ field: 'class_id', headerName: 'class_id', hide: true },
{ field: 'nom', headerName: 'Nom', minwidth: 200, flex: 1, hide: false, editable: false, renderCell: (params) => <ExpandableCell_50 {...params} />, },
{ field: 'prenom', headerName: 'Prenom', minwidth: 200, flex: 1, hide: false, editable: false, renderCell: (params) => <ExpandableCell_50 {...params} />, },
@ -341,6 +341,12 @@ const Module_Session_Notes_Classement = (props) => {
form.append("token", stored_cookie);
form.append("tab_session_id", props.related_collection_recid);
if (props.jury_seance_agenda_id)
form.append("jury_apprenant_agenda_id", props.jury_seance_agenda_id);
if (props.jury_seance_ue_id)
form.append("tab_ue_id", props.jury_seance_ue_id);
// Recuperation des parametres
var filtre1 = p_filtre1;
var filtre2 = p_filtre2;
@ -548,7 +554,11 @@ const Module_Session_Notes_Classement = (props) => {
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("tab_session_id", props.related_collection_recid);
if (props.jury_seance_agenda_id)
form.append("jury_apprenant_agenda_id", props.jury_seance_agenda_id);
if (props.jury_seance_ue_id)
form.append("tab_ue_id", props.jury_seance_ue_id);
// Recuperation des parametres
var filtre1 = p_filtre1;
@ -724,8 +734,6 @@ const Module_Session_Notes_Classement = (props) => {
form.append("session_id", props.related_collection_recid);
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter";
axios.post(myurl, form).then(res => {
@ -831,13 +839,6 @@ const Module_Session_Notes_Classement = (props) => {
useEffect(() => {
/*
if (props.jury_cell_editable) {
setjury_cell_editable(props.jury_cell_editable)
} else {
setjury_cell_editable(false);
}
*/
Getall_Session_Detail_Final_Note_Classement();
Getall_Session_UE_Final_Note_Classement();

View File

@ -4516,7 +4516,7 @@ const Notes_Evaluation = (props) => {
/>}
</div>
<div className="session_caract"> <b>Unite D'enseignement </b> <br />
{New_Getall_Partner_List_UE_result && New_Getall_Partner_List_UE_result.length > 0 && <TextField
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}

View File

@ -2795,7 +2795,10 @@
// end media
.datagridclass {
font-size: small !important;
font-family: "DM Sans";
}
.separator {
display: flex;
@ -3080,7 +3083,7 @@
}
.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root {
font-family: DM Sans !important;
font-family: DM Sans !important;
height: 3.5rem !important;
}

View File

@ -1729,7 +1729,7 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: gray;
font-weight: normal;
@ -2324,7 +2324,7 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: gray;
font-weight: normal;

File diff suppressed because it is too large Load Diff

View File

@ -1666,7 +1666,7 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: gray;
font-weight: normal;
@ -2271,7 +2271,7 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: gray;
font-weight: normal;

View File

@ -198,7 +198,7 @@
@import "./components/equipe_team";
@import "./components/module_session_note_classement";
@import "./components/jurys";
@import "./components/module_jury_selection_apprenants";
// New Design 2025
@import "./components/new_s_sign_in_2025";