diff --git a/Controleur/ControleurAjaxprixacte_copy.php b/Controleur/ControleurAjaxprixacte_copy.php deleted file mode 100755 index 133f6862..00000000 --- a/Controleur/ControleurAjaxprixacte_copy.php +++ /dev/null @@ -1,155 +0,0 @@ -acte = new Detailtarifacte(); - } - - public function index() { - $codeActe = $this->requete->getParametreFormulaire("codeActe"); - - - $tm = ($_SESSION['p_tm_TP']>"0") ? $_SESSION['p_tm_TP'] : $_SESSION['p_tm_C']; - - $referencementpolice = $this->acte->getReferencementPolice($_SESSION['p_idPolice_C']); - - $avecReferencement = $referencementpolice['avecReferencement']; - $tauxAvecReferencement = $referencementpolice['tauxAvecReferencement']; - $tauxSansReferencement = $referencementpolice['tauxSansReferencement']; - - $dateFinDelaiCarenceActe = $this->acte->getDateFinDelaiCarenceActe($codeActe); - - //var_dump($dateFinDelaiCarenceActe); - //die(); - - $situation = $this->acte->getSituationActeBeneficiaire($codeActe); - - - $plafondActe = $this->acte->getplafondacte($codeActe); - $prixActeTarifPolice = $this->acte->getprixactetarifpolice($codeActe); - $prixActeTarifPrestataire = $this->acte->getprixactetarifprestataire($codeActe); - $prixActeTarifCollege = $this->acte->getprixactetarifcollege($codeActe); - $prixActeTarifPolicePrestataire = $this->acte->getprixactetarifpoliceprestataire($codeActe); - - if (($plafondActe > "0") && ($plafondActe !="9999999999")) { - if ($prixActeTarifPolicePrestataire > "0") { - $prixActe = min($plafondActe,$prixActeTarifPolicePrestataire); - }else{ - if ($prixActeTarifPolice > "0") { - if ($prixActeTarifPrestataire > "0") { - $prixActe = min($plafondActe,$prixActeTarifPrestataire); - }else{ - $prixActe = min($plafondActe,$prixActeTarifCollege); - } - }else{ - if ($prixActeTarifPrestataire > "0") { - $prixActe = min($plafondActe,$prixActeTarifPrestataire); - }else{ - if($prixActeTarifCollege > "0"){ - $prixActe = min($plafondActe,$prixActeTarifCollege); - }else{ - $prixActe = $plafondActe; - } - } - } - } - }else{ - if ($prixActeTarifPolicePrestataire > "0") { - $prixActe = $prixActeTarifPolicePrestataire; - }else{ - if ($prixActeTarifPolice > "0") { - if ($prixActeTarifPrestataire > "0") { - $prixActe = $prixActeTarifPrestataire; - }else{ - $prixActe = $prixActeTarifCollege; - } - }else{ - if ($prixActeTarifPrestataire > "0") { - $prixActe = $prixActeTarifPrestataire; - }else{ - $prixActe = $prixActeTarifCollege; - } - } - } - } - - - if($prixActeTarifPolice > "0"){ - $prixBase = $prixActeTarifPolice; - if($prixActeTarifCollege > "0" && $prixActeTarifPrestataire > "0"){ - $depassement = min($prixActeTarifCollege,$prixActeTarifPrestataire)-$prixBase; - }else{ - $depassement = $prixActe-$prixBase; - } - - $_SESSION['prixBase'] = $prixBase; - $_SESSION['depassement'] = $depassement; - }else{ - $prixBase = $prixActe; - - $depassement = 0; - $_SESSION['prixBase'] = 0; - $_SESSION['depassement'] = 0; - } - - //$montantTm = round(($prixBase*$tm)/100); - //$aRembourser = $prixBase-$montantTm; - - //var_dump($dateFinDelaiCarenceActe); - //die(); - - if ($situation['soldeConsommation'] <= "0" || $dateFinDelaiCarenceActe!="1970-01-01") - { - if($prixBase > $situation['soldeConsommation']) - { - $montantTm = $prixBase-$situation['soldeConsommation']; - $aRembourser = $situation['soldeConsommation']; - } - else - { - $montantTm = $prixBase; - $aRembourser = "0"; - } - - } - else - { - if($situation['nbreTransaction'] > "0") - { - if($situation['soldeNbreTransaction'] <= "0") - { - if($prixBase > $situation['soldeConsommation']) - { - $montantTm = $prixBase-$situation['soldeConsommation']; - $aRembourser = $situation['soldeConsommation']; - } - else - { - $montantTm = $prixBase; - $aRembourser = "0"; - } - }else - { - $montantTm = round(($prixBase*$tm)/100); - $aRembourser = $prixBase-$montantTm; - } - } - else - { - $montantTm = round(($prixBase*$tm)/100); - $aRembourser = $prixBase-$montantTm; - } - } - - - $delaiCarenceActe = $this->acte->getdelaicarenceacte($codeActe) ; - - $this->genererVueAjax(array('prixActe' => $prixActe, 'montantTm' => $montantTm, 'aRembourser' => $aRembourser, - 'delaiCarenceActe' => $delaiCarenceActe, 'prixBase' => $prixBase, 'depassement' => $depassement, 'situation' => $situation, - 'dateFinDelaiCarenceActe' => $dateFinDelaiCarenceActe)); - } -} \ No newline at end of file diff --git a/Societes/ebene/Logos/logo_belife.png b/Societes/ebene/Logos/logo_belife.png new file mode 100755 index 00000000..3c9d535f Binary files /dev/null and b/Societes/ebene/Logos/logo_belife.png differ diff --git a/Societes/ebene/Logos/logo_societe_mu2s.png b/Societes/ebene/Logos/logo_societe_mu2s.png new file mode 100644 index 00000000..ba9cd7ee Binary files /dev/null and b/Societes/ebene/Logos/logo_societe_mu2s.png differ diff --git a/Vue/Accepterententeprealables_copy/index.php b/Vue/Accepterententeprealables_copy/index.php deleted file mode 100755 index d79b8c81..00000000 --- a/Vue/Accepterententeprealables_copy/index.php +++ /dev/null @@ -1,367 +0,0 @@ -titre = "INTER-SANTE - Autoriser un acte"; - -$codeActe = $this->nettoyer($ententeprealable['codeActe']); -$libelleActe = $this->nettoyer($ententeprealable['libelleActe']); -$numeroBonExamen = $this->nettoyer($ententeprealable['numeroBonExamen']); -$fraisReelExamen = $this->nettoyer($ententeprealable['fraisReelExamen']); - -$quantiteHospit = $this->nettoyer($ententeprealable['quantiteHospit']); - -$quantiteModifieeHospit = $this->nettoyer($ententeprealable['quantiteModifieeHospit']); - -$numeroBon = $this->nettoyer($ententeprealable['numeroBon']); - -if ($codeActe=="EXAM"){ - if (est_anglophone()){ - $libelleActe = "DISPLAY THE LIST OF VOUCHER ACTS: ".$numeroBonExamen; - }else{ - $libelleActe = "AFFICHER LA LISTE DES ACTES DU BON: ".$numeroBonExamen; - } -} -?> - -
-- - = _("NB: La validation entrainera un accord pour tous les actes du bon.") ?> - -
- -| = _("Plafond College") ?> | -- - | = _("Consommations") ?> | -- - | = _("Solde") ?> | -- |
| = _("Plafond Police") ?> | -- - | = _("Consommations") ?> | -- - | = _("Solde") ?> | -- |
| = _("Garantie "); ?> | -= _("Actes "); ?> | -= _("Taux") ?> | -= _("Carence") ?> | -= _("Plafond") ?> | -= _("Nbre Sinistre") ?> | -= _("Consommations") ?> | -|||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| = _("Valeur") ?> | -= _("Transaction") ?> | -= _("Périodicité") ?> | -= _("Observation") ?> | -= _("Famille") ?> | -= _("Bénéficiaire") ?> | -= _("Famille") ?> | -= _("Bénéficiaire") ?> | -||||
| = $codeGarantie ?> | -= $libelle ?> | -= $this->nettoyer($v['tauxPlafond'])?> | -= $this->nettoyer($v['delaiCarenceActe'])?> | -= format_N($this->nettoyer($v['forfaitPlafond']))?> | -= $this->nettoyer($v['nbreTransaction'])?> | -= $periodicite; ?> | -= $observation; ?> | -= format_N($this->nettoyer($v['comptePrestationFamille'])) ?> | -= format_N($this->nettoyer($v['comptePrestation'])) ?> | -= format_N($this->nettoyer($v['consommationFamille'])) ?> | -= format_N($this->nettoyer($v['consommation'])) ?> | -
| = _("Plafond Individuel") ?> | -- - | = _("Consommation Individuelle") ?> | -- - | = _("Solde") ?> | -- |
| = _("Plafond Famille") ?> | -- - | = _("Consommation Famille") ?> | -- - | = _("Solde Famille") ?> | -- |
- - = _("NB: La validation entrainera un accord pour tous les actes du bon.") ?> - -
- -| Niveau de consommation: | -- | Supérieur ou égal à 50% | -- | - | - | Supérieur ou égal à 80% | -- | - | - | Egal à 100% ou Nbre Transaction atteint | -- | - |
| = _("Garantie "); ?> | -= _("Actes "); ?> | -= _("Taux") ?> | -= _("Carence") ?> | -= _("Plafond") ?> | -= _("Nbre Sinistre") ?> | -= _("Consommations") ?> | -= _("Soldes") ?> | -||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| = _("Valeur") ?> | -= _("Transaction") ?> | -= _("Périodicité") ?> | -= _("Observation") ?> | -= _("Famille") ?> | -= _("Bénéficiaire") ?> | -= _("Famille") ?> | -= _("Bénéficiaire") ?> | -= _("Famille") ?> | -= _("Bénéficiaire") ?> | -||||
| = $codeGarantie ?> | -= $libelle ?> | -= $this->nettoyer($v['tauxPlafond'])?> | -= $this->nettoyer($v['delaiCarenceActe'])?> | -= format_N($this->nettoyer($v['forfaitPlafond']))?> | -= $this->nettoyer($v['nbreTransaction'])?> | -= $periodicite; ?> | -= $observation; ?> | -= format_N($this->nettoyer($v['comptePrestationFamille'])) ?> | -= format_N($this->nettoyer($v['comptePrestation'])) ?> | -= format_N($this->nettoyer($v['consommationFamille'])) ?> | -= format_N($this->nettoyer($v['consommation'])) ?> | -= format_N($this->nettoyer($v['soldeActeFamille'])) ?> | -= format_N($this->nettoyer($v['soldeActe'])) ?> | -
| No | -Date | -= _("Acte") ?> | -= _("Prestataire (Motif Médical)") ?> | -= _("Bénéficiaire") ?> | -= _("Répondue le") ?> | -= _("Répondue par") ?> | -= _("Situation") ?> | -= _("Motif Réponse") ?> | -= _("Facturé") ?> | -|||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| = _("Réel") ?> | -= _("A l'assuré") ?> | -|||||||||||||||
| - - | -= dateheureLang($this->nettoyer($ententeprealable['dateSysteme'])) ?> | -- - - - = $libelleActe ?> - - - - = $libelleActe ?> - - | -- ' '): ?> - - - = $this->nettoyer($ententeprealable['prestataire']) ?> - - - - = $this->nettoyer($ententeprealable['prestataire']) ?> - - | - - - -- ");'> - = $this->nettoyer($ententeprealable['numeroBeneficiaire']) ?> - - - | -= $this->nettoyer($ententeprealable['beneficiaire']) ?> | - -= dateheureLang($this->nettoyer($ententeprealable['dateReponse'])) ?> | -= $this->nettoyer($ententeprealable['responsableAccord']) ?> | -= $this->nettoyer($ententeprealable['reponsentEnteprealable']) ?> | - - -- " - onClick="javascript:accepter_ententeprealable_2(= $idDemandeententeprealable ?>, = $facture ?>);"> - | - -- " - onClick="javascript:refuser_ententeprealable_2(= $idDemandeententeprealable ?>, = $facture ?>);"> - | - -= $this->nettoyer($ententeprealable['motifReel']) ?> | - -= $this->nettoyer($ententeprealable['motifReel']) ?> | -= $this->nettoyer($ententeprealable['motifRefusAssure']) ?> | - - - -- - | - - - - | |
| No | -Date | -= _("Acte") ?> | -= _("Prestataire (Motif Médical)") ?> | -= _("Bénéficiaire") ?> | -= _("Répondue le") ?> | -= _("Répondue par") ?> | -= _("Situation") ?> | -= _("Motif Réponse") ?> | -= _("Facturé") ?> | -|||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| = _("Réel") ?> | -= _("A l'assuré") ?> | -|||||||||||||||
| - - | -= dateheureLang($this->nettoyer($ententeprealable['dateSysteme'])) ?> | -- - - - = $libelleActe ?> - - - - = $libelleActe ?> - - | -- ' '): ?> - - - - - = $this->nettoyer($ententeprealable['prestataire']) ?> - - | - - - -- ");'> - = $this->nettoyer($ententeprealable['numeroBeneficiaire']) ?> - - - | -= $this->nettoyer($ententeprealable['beneficiaire']) ?> | - -= dateheureLang($this->nettoyer($ententeprealable['dateReponse'])) ?> | -= $this->nettoyer($ententeprealable['responsableAccord']) ?> | -= $this->nettoyer($ententeprealable['reponsentEnteprealable']) ?> | - - -- " - onClick="javascript:accepter_ententeprealable_2(= $idDemandeententeprealable ?>, = $facture ?>);"> - | - -- " - onClick="javascript:refuser_ententeprealable_2(= $idDemandeententeprealable ?>, = $facture ?>);"> - | - -= $this->nettoyer($ententeprealable['motifReel']) ?> | - -= $this->nettoyer($ententeprealable['motifReel']) ?> | -= $this->nettoyer($ententeprealable['motifRefusAssure']) ?> | - - - -- - | - - - - | |
| - - | - | - - | - | - |
| = _("Exercice") ?> | -= _("Mois") ?> | -= _("No Demande") ?> | -= _("Prestataire") ?> | -= _("A régler") ?> | -= _("Date Demande") ?> | -Type | -= _("Choix") ?> | -|||
|---|---|---|---|---|---|---|---|---|---|---|
| - | - | |||||||||
| = $this->nettoyer($decompte['codeExercice']) ?> | -= $this->nettoyer($decompte['codeMois']) ?> | - -- - - - - - - - | - -= $this->nettoyer($decompte['prestataire']) ?> | -= format_N($this->nettoyer($decompte['montantApayer'])) ?> | - -= dateheureLang($this->nettoyer($decompte['dateDemandeReglement'])) ?> | -= $this->nettoyer($decompte['typedecompte']) ?> | - -- - | - - | ||
| - - | - | - - | - | - |
| = _("Exercice") ?> | -= _("Mois") ?> | -= _("No Demande") ?> | -= _("Prestataire") ?> | -= _("A régler") ?> | -= _("Date Demande") ?> | -Type | -= _("Choix") ?> | -|||
|---|---|---|---|---|---|---|---|---|---|---|
| - | - | |||||||||
| = $this->nettoyer($decompte['codeExercice']) ?> | -= $this->nettoyer($decompte['codeMois']) ?> | - -- - - - - - - - | - -= $this->nettoyer($decompte['prestataire']) ?> | -= format_N($this->nettoyer($decompte['montantApayer'])) ?> | - -= dateheureLang($this->nettoyer($decompte['dateDemandeReglement'])) ?> | -= $this->nettoyer($decompte['typedecompte']) ?> | - -- - | - - | ||
| = _("No Règlement") ?> | -- - | Date Init | -- - | = _("Initiateur") ?> | -- | = _("Nb Décomptes") ?> | -- - | = _("Cumul à Payer") ?> | -- - | = _("Composante") ?> | -- - | - - - -
| - - | - | - - | - | - |
| = _("Exercice") ?> | -= _("Mois") ?> | -= _("No Demande") ?> | -= _("Prestataire") ?> | -= _("A régler") ?> | -= _("Date Demande") ?> | -Type | -= _("Choix") ?> | -|||
|---|---|---|---|---|---|---|---|---|---|---|
| - | - | |||||||||
| = $this->nettoyer($decompte['codeExercice']) ?> | -= $this->nettoyer($decompte['codeMois']) ?> | - -- - - - - - - - | - -= $this->nettoyer($decompte['prestataire']) ?> | -= format_N($this->nettoyer($decompte['montantApayer'])) ?> | - -= dateheureLang($this->nettoyer($decompte['dateDemandeReglement'])) ?> | -= $this->nettoyer($decompte['typedecompte']) ?> | - -- - | - - | ||
| - - | - | - - | - | - |
| = _("Exercice") ?> | -= _("Mois") ?> | -= _("No Demande") ?> | -= _("Prestataire") ?> | -= _("A régler") ?> | -= _("Date Demande") ?> | -Type | -= _("Choix") ?> | -|||
|---|---|---|---|---|---|---|---|---|---|---|
| - | - | |||||||||
| = $this->nettoyer($decompte['codeExercice']) ?> | -= $this->nettoyer($decompte['codeMois']) ?> | - -- - - - - - - - | - -= $this->nettoyer($decompte['prestataire']) ?> | -= format_N($this->nettoyer($decompte['montantApayer'])) ?> | - -= dateheureLang($this->nettoyer($decompte['dateDemandeReglement'])) ?> | -= $this->nettoyer($decompte['typedecompte']) ?> | - -- - | - - | ||
| = _("No Règlement") ?> | -- - | Date Init | -- - | = _("Initiateur") ?> | -- | = _("Nb Décomptes") ?> | -- - | = _("Cumul à Payer") ?> | -- - | = _("Composante") ?> | -- - | - - - -