Commit 31f0926e authored by Florian Joriot's avatar Florian Joriot
Browse files

Merge remote-tracking branch 'origin/master'

parents 8b05a22f 798f37d4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -365,7 +365,7 @@ return [
            'scale'       => NULL,
            'precision'   => NULL,
            'nullable'    => FALSE,
            'default'     => '1',
            'default'     => '0',
            'position'    => 65,
            'commentaire' => '1 = arrondisseur en mode complet, 0 en mode minimal (juste sur les volumes horaires/services',
        ],
+2 −2
Original line number Diff line number Diff line
@@ -226,8 +226,8 @@ FROM (
			ROUND(p.montant,2)  								  	 			  									montant,
            p.taux_conges_payes																			   			taux_conges_payes,
            COALESCE(p.unite_budgetaire, '') || ' ' ||
            LPAD(TO_CHAR(TO_NUMBER(TO_CHAR(date_mise_en_paiement, 'YY'))), 2, '0')	 || '-' ||
            LPAD(TO_CHAR(TO_NUMBER(TO_CHAR(date_mise_en_paiement, 'YY')) + 1), 2, '0')						 		libelle,
            SUBSTR(TO_CHAR(TO_NUMBER(i.annee_id)), -2) || '-' ||
            SUBSTR(TO_CHAR(TO_NUMBER(i.annee_id) + 1), -2)						 		libelle,
            si.code_indemnite																				   		code_indemnite,
            si.type_paie																					   		type_paie,
            si.code_indemnite_prime																			   		code_indemnite_prime,
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

/**
 * @var $this \Application\View\Renderer\PhpRenderer
 * @var $form \Application\Form\Intervenant\ContratRetourForm
 * @var $form \Contrat\Form\ContratRetourForm
 * @var $done boolean
 */

+6 −5
Original line number Diff line number Diff line
@@ -210,9 +210,9 @@ class SihamConnecteur implements ConnecteurRhInterface
            /*Recherche de la date d'effet à passer selon enseignement ou mission, si mission on prend la première mission de l'année universitaire
            sinon on prend les dates de début et de fin de l'année universitaire*/
            $firstMission = $this->getServiceContrat()->getFirstContratMission($intervenant);
            $dateMission = ($this->siham->getConfig()['contrat']['missionDate'])??'MISSION';


            if (!empty($firstMission)) {
            if (!empty($firstMission) && $dateMission == 'MISSION') {
                $dateEffet = $firstMission->getDateDebut()->format('Y-m-d');
                $dateFin   = $firstMission->getDateFin()->format('Y-m-d');
            } else {
@@ -237,6 +237,7 @@ class SihamConnecteur implements ConnecteurRhInterface
                 'temoinValidite'    => 1,
                ];


            /*CONTRAT*/
            //On récupére le nombre d'heures du contrat et le taux horaire appliqué
            $infos = $this->getInfosContrat($intervenant, $firstMission);
@@ -524,7 +525,9 @@ class SihamConnecteur implements ConnecteurRhInterface
            sinon on prend les dates de début et de fin de l'année universitaire*/

            $firstMission = $this->getServiceContrat()->getFirstContratMission($intervenant);
            if (!empty($firstMission)) {
            $dateMission = ($this->siham->getConfig()['contrat']['missionDate'])??'MISSION';

            if (!empty($firstMission) && $dateMission == 'MISSION') {
                $dateEffet = $firstMission->getDateDebut()->format('Y-m-d');
                $dateFin   = $firstMission->getDateFin()->format('Y-m-d');
            } else {
@@ -534,8 +537,6 @@ class SihamConnecteur implements ConnecteurRhInterface
            }

            /*Formatage du matricule*/

            $matricule = '';
            //On récupére le code RH par le INSEE
            $matricule = $this->trouverCodeRhByInsee($intervenant);

+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ class IntervenantController extends AbstractController
     *
     * @param \Intervenant\Entity\Db\Intervenant $intervenant
     *
     * @return \Application\Controller\IntervenantController
     * @return IntervenantController
     */
    protected function addIntervenantRecent(Intervenant $intervenant)
    {
Loading