a
This commit is contained in:
parent
1b1308431e
commit
f4304b697e
|
|
@ -30,7 +30,7 @@ class ControleurAjaxmouvementassurevalider extends Controleur {
|
||||||
public function selectionnertout()
|
public function selectionnertout()
|
||||||
{
|
{
|
||||||
$choix = $this->requete->getParametreFormulaire("choix");
|
$choix = $this->requete->getParametreFormulaire("choix");
|
||||||
$this->mouvementassure->selectionner_facture_gc_tout($choix);
|
$this->mouvementassure->selectionner_mouvement_rh_tout($choix);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function validerselection()
|
public function validerselection()
|
||||||
|
|
|
||||||
|
|
@ -45330,25 +45330,7 @@ function liste_mouvemements_rh_valider()
|
||||||
function selectionner_mouvement_rh(idMvtTemp, choix)
|
function selectionner_mouvement_rh(idMvtTemp, choix)
|
||||||
{
|
{
|
||||||
donnees = 'idMvtTemp='+idMvtTemp+'&choix='+choix;
|
donnees = 'idMvtTemp='+idMvtTemp+'&choix='+choix;
|
||||||
|
|
||||||
/*
|
|
||||||
if(choix==0)
|
|
||||||
{
|
|
||||||
// v_url = $("#racineWeb").val()+"Ajaxfacturegcnonsel/deselectionner/";
|
|
||||||
v_url = $("#racineWeb").val()+"Ajaxmouvementassurevalider/deselectionner/";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
v_url = $("#racineWeb").val()+"Ajaxmouvementassurevalider/selectionner/";
|
v_url = $("#racineWeb").val()+"Ajaxmouvementassurevalider/selectionner/";
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
v_url = $("#racineWeb").val()+"Ajaxmouvementassurevalider/selectionner/";
|
|
||||||
/*
|
|
||||||
alert(donnees);
|
|
||||||
alert(v_url);
|
|
||||||
return;
|
|
||||||
*/
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: v_url,
|
url: v_url,
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
|
|
@ -45363,3 +45345,26 @@ function selectionner_mouvement_rh(idMvtTemp, choix)
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function selectionner_mouvement_rh_tout(choix)
|
||||||
|
{
|
||||||
|
alert("selectionner_mouvement_rh_tout");
|
||||||
|
return;
|
||||||
|
|
||||||
|
donnees = 'choix='+choix;
|
||||||
|
|
||||||
|
v_url = $("#racineWeb").val()+"Ajaxmouvementassurevalider/selectionnertout/";
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: v_url,
|
||||||
|
type: 'POST',
|
||||||
|
data: donnees,
|
||||||
|
success: function(data) {
|
||||||
|
},
|
||||||
|
error: function(data) {
|
||||||
|
},
|
||||||
|
complete: function() {
|
||||||
|
liste_mouvemements_rh_valider();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -65,15 +65,15 @@ class Mouvementassure extends Modele {
|
||||||
$this->executerRequete($sql, array($idPolice, $user));
|
$this->executerRequete($sql, array($idPolice, $user));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function selectionner_facture_gc_tout($choix)
|
public function selectionner_mouvement_rh_tout($choix)
|
||||||
{
|
{
|
||||||
$idGcReglement = $_SESSION['idGcReglement'];
|
$idGcReglement = $_SESSION['idGcReglement'];
|
||||||
$idSaisie = $_SESSION['idSaisie'];
|
$idSaisie = $_SESSION['idSaisie'];
|
||||||
$user = $_SESSION['login'];
|
$user = $_SESSION['login'];
|
||||||
|
|
||||||
$sql = 'call sp_r_selectionner_facture_gc_tout(?, ?, ?, ?)';
|
$sql = 'call sp_r_selectionner_mouvement_rh_tout(?, ?, ?, ?, ?, ?)';
|
||||||
|
|
||||||
$this->executerRequete($sql, array($idGcReglement, $idSaisie, $user, $choix));
|
$this->executerRequete($sql, array($idPolice, $codeSensMouvement, $debut, $fin, $user, $choix));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function selectionner_mouvements_rh($idMvtTemp, $choix)
|
public function selectionner_mouvements_rh($idMvtTemp, $choix)
|
||||||
|
|
|
||||||
|
|
@ -261,7 +261,7 @@ controlerPlafondBeneficiaire : <?= $_SESSION['controlerPlafondBeneficiaire'] ?>
|
||||||
<script src="Js/datepicker-fr.js"></script>
|
<script src="Js/datepicker-fr.js"></script>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<script src="Js/fonctions.js?ver=2026.01.20.07"></script>
|
<script src="Js/fonctions.js?ver=2026.01.20.08"></script>
|
||||||
|
|
||||||
<script src="<?= $_SESSION['dossierSociete'].'/Js/societe.js' ?>" > </script>
|
<script src="<?= $_SESSION['dossierSociete'].'/Js/societe.js' ?>" > </script>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user