From beb139ebf890968d2fb045e418e7dfe9831cf1a3 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Fri, 2 Apr 2010 16:21:52 +0000 Subject: [PATCH 1/3] Mise en production du 02/04/2010 From 137b58fa3a27cd51ca514e5f52816386ee02787f Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Fri, 2 Apr 2010 17:02:32 +0000 Subject: [PATCH 2/3] Correction surveillance privilege --- www/pages/piecescmd.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/pages/piecescmd.php b/www/pages/piecescmd.php index 231ca35fa..ae9822049 100644 --- a/www/pages/piecescmd.php +++ b/www/pages/piecescmd.php @@ -108,7 +108,7 @@ if(isset($_REQUEST['action'])) $privilegesLog = join('-', $_REQUEST['privileges']['type']); $firephp->log($privileges, 'privileges'); - if (in_array('privSurv',$_REQUEST['privileges']['type'])){ + if (in_array('SprivSurv',$_REQUEST['privileges']['type'])){ try { $O = $client->setSurveillance( $_REQUEST['siret'],$_REQUEST['email'], @@ -405,7 +405,7 @@ if($disponible) { if( hasPerm('survpriv') ){ ?> -/>Privilèges de la sécurité sociale et des régimes complémentaires et Trésor Public
(avec surveillance, retour sous 48 à 72h)

+/>Privilèges de la sécurité sociale et des régimes complémentaires et Trésor Public
(avec surveillance, retour sous 48 à 72h)


/>Privilèges de la sécurité sociale et des régimes complémentaires (mail sous 12h ouvrées)
From cda8915f40e98b2f1c4e486bc384dda297450efa Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Fri, 2 Apr 2010 17:11:47 +0000 Subject: [PATCH 3/3] Pas de mail pour SprivSurv --- www/pages/piecescmd.php | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/www/pages/piecescmd.php b/www/pages/piecescmd.php index ae9822049..d2a810127 100644 --- a/www/pages/piecescmd.php +++ b/www/pages/piecescmd.php @@ -104,10 +104,6 @@ if(isset($_REQUEST['action'])) case 'privileges': if(!empty($_REQUEST['email'])) { - $privileges = join(', ', $_REQUEST['privileges']['type']); - $privilegesLog = join('-', $_REQUEST['privileges']['type']); - $firephp->log($privileges, 'privileges'); - if (in_array('SprivSurv',$_REQUEST['privileges']['type'])){ try { $O = $client->setSurveillance( @@ -117,15 +113,23 @@ if(isset($_REQUEST['action'])) require_once 'soaperror.php'; processSoapFault($client,$fault,$_SESSION['tabInfo']); } + $privilegesLog = join('-', $_REQUEST['privileges']['type']); + } + $key = array_search('SprivSurv', $_REQUEST['privileges']['type']); + if ($key!==FALSE) unset($_REQUEST['privileges']['type'][$key]); + FB::log($_REQUEST['privileges']['type'], 'type'); + if (count($_REQUEST['privileges']['type'])>0){ + $privileges = join(', ', $_REQUEST['privileges']['type']); + $privilegesLog = join('-', $_REQUEST['privileges']['type']); + sendCmdMail("[COMMANDE PIECES] - PRIVILEGES par email", + 'COMMANDE DE PRIVILEGES - par email
'.EOL. + 'Demande pour recevoir ('.$privileges.') pour SIREN : '. + ''. + $_REQUEST['siret'].'
'.EOL. + 'pour login '.$_SESSION['tabInfo']['login'].'('.$_REQUEST['email'].')
'.EOL. + 'Référence : '.$_REQUEST['ref'] + ); } - sendCmdMail("[COMMANDE PIECES] - PRIVILEGES par email", - 'COMMANDE DE PRIVILEGES - par email
'.EOL. - 'Demande pour recevoir ('.$privileges.') pour SIREN : '. - ''. - $_REQUEST['siret'].'
'.EOL. - 'pour login '.$_SESSION['tabInfo']['login'].'('.$_REQUEST['email'].')
'.EOL. - 'Référence : '.$_REQUEST['ref'] - ); $message = 'Votre commande a bien été prise en compte, vous recevrez ces documents sur votre e-mail.'; $client->setLog('privileges', $_REQUEST['siret'], 0, 'mail:'.$privilegesLog); unset($_REQUEST['privileges']['type']);