From a7b7911f568e468cf90a2442b0fe221502ad793c Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Tue, 30 Mar 2010 16:04:50 +0000 Subject: [PATCH 1/6] =?UTF-8?q?Version=202.0=20:=20Gestion=20module=20et?= =?UTF-8?q?=20r=C3=A8gles=20de=20rewriting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From 3291ce743ba92eecdee1cad6c4739a8b9fe37544 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Mon, 12 Apr 2010 12:11:20 +0000 Subject: [PATCH 2/6] =?UTF-8?q?Correction=20gestion=20des=20caract=C3=A8re?= =?UTF-8?q?s=20de=20ponctuation=20et=20abbr=C3=A9viation,=20issue=20#00002?= =?UTF-8?q?43?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/identite/infogeo.php | 7 ++++--- includes/scoresws/identite.php | 19 +++++++++++-------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/includes/identite/infogeo.php b/includes/identite/infogeo.php index 645649b4b..076c4daca 100644 --- a/includes/identite/infogeo.php +++ b/includes/identite/infogeo.php @@ -2,10 +2,11 @@
0) { diff --git a/includes/scoresws/identite.php b/includes/scoresws/identite.php index 4050a1abc..6a3ed8350 100644 --- a/includes/scoresws/identite.php +++ b/includes/scoresws/identite.php @@ -728,14 +728,17 @@ function identite_statutsmodif($StatutsModif,$StatutsModifDepot) } function normaliseVoie($voie) { - switch (strtoupper($voie)) { - case 'BD': case 'BVD': return 'BOULEVARD'; break; - case 'AV': case 'AVE': return 'AVENUE'; break; - case 'PL': case 'PLA': return 'PLACE'; break; - case 'ESP': return 'ESPLANADE'; break; - //- 8E__ARRONDISSEMENT - default; return strtoupper($voie); break; - } + switch (strtoupper($voie)) { + case 'BD': + case 'BVD': return 'BOULEVARD'; break; + case 'AV': + case 'AVE': return 'AVENUE'; break; + case 'PL': + case 'PLA': return 'PLACE'; break; + case 'ESP': return 'ESPLANADE'; break; + case 'CRS': return 'COURS'; break; + default: return strtoupper($voie); break; + } } function identite_autresiren($liste) From 68523b874be2793138b19ff7de84c165f908c346 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Mon, 12 Apr 2010 12:47:54 +0000 Subject: [PATCH 3/6] =?UTF-8?q?R=C3=A9organisation=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/prepend.php | 2 + www/index.fct.php | 116 ++++++++++++++++----------------------------- www/index.php | 34 +------------ www/pages/main.php | 2 +- 4 files changed, 46 insertions(+), 108 deletions(-) diff --git a/config/prepend.php b/config/prepend.php index 168f1f933..1b6b6c915 100644 --- a/config/prepend.php +++ b/config/prepend.php @@ -39,6 +39,8 @@ elseif(ENVIRONNEMENT == 'DEV' || ENVIRONNEMENT == 'REC') { $firephp->setEnabled(true); //Debuggage activé par defaut //ini_set('error_reporting', E_ALL ^ E_NOTICE); + // Pas de mise en cache WSDL pour SOAP + ini_set('soap.wsdl_cache_enabled', 0); } /** On ne prend l'heure qu'une seule fois par script PHP et on initialise des constantes. diff --git a/www/index.fct.php b/www/index.fct.php index a29ead625..387c38e05 100644 --- a/www/index.fct.php +++ b/www/index.fct.php @@ -1,81 +1,23 @@ TailleFichierTemporaire( ) )); - */ - //header('Location: http://extranet"'.$NomFichier.'"'); - } +function afficheErreur($message, $refresh=5) { + include('./pages/erreur.php'); +} function redimage($img_src,$dst_w,$dst_h) { // Lit les dimensions de l'image @@ -125,4 +67,30 @@ function etabSession($siret, $idEntreprise = 0){ return $raisonSociale; } +// --------------------------------------------------------------------------- // +// titreAvecSiren +// --------------------------------------------------------------------------- // +function titreAvecSiren($titre) +{ + return $titre.' - Siren '. + substr($_REQUEST['siret'], 0, 3).' '. + substr($_REQUEST['siret'], 3, 3).' '. + substr($_REQUEST['siret'], 6, 3); +} + +// --------------------------------------------------------------------------- // +// implode_r +// --------------------------------------------------------------------------- // +function implode_r($glue, $pieces) +{ + $ret = ''; + foreach ($pieces as $piece) { + if (is_array($piece)) { + $ret .= implode_r($glue, $piece); + } else { + $ret .= $glue . $piece; + } + } + return $ret; +} ?> \ No newline at end of file diff --git a/www/index.php b/www/index.php index 0df4b230e..700d5e263 100644 --- a/www/index.php +++ b/www/index.php @@ -8,38 +8,8 @@ require_once 'index.fct.php'; require_once 'fwk.php'; require_once 'default/_includes/mysql.php'; +require_once 'index_auth.php'; -// --------------------------------------------------------------------------- // -// titreAvecSiren -// --------------------------------------------------------------------------- // -function titreAvecSiren($titre) -{ - return $titre.' - Siren '. - substr($_REQUEST['siret'], 0, 3).' '. - substr($_REQUEST['siret'], 3, 3).' '. - substr($_REQUEST['siret'], 6, 3); -} - -// --------------------------------------------------------------------------- // -// implode_r -// --------------------------------------------------------------------------- // -function implode_r($glue, $pieces) -{ - $ret = ''; - foreach ($pieces as $piece) { - if (is_array($piece)) { - $ret .= implode_r($glue, $piece); - } else { - $ret .= $glue . $piece; - } - } - return $ret; -} - -if (ENV != 'PRD') { - // Pas de mise en cache WSDL pour SOAP - ini_set('soap.wsdl_cache_enabled', 0); -} if (!isset($_REQUEST['page'])) { $page = 'main'; } else { @@ -52,8 +22,6 @@ if (!isset($_REQUEST['sortie'])) { $sortie = $_REQUEST['sortie']; } -require_once 'index_auth.php'; - if ($sortie == 'pdf') { require_once 'print/print.php'; print_capture(); diff --git a/www/pages/main.php b/www/pages/main.php index 9494bd430..c4817a5bc 100644 --- a/www/pages/main.php +++ b/www/pages/main.php @@ -25,7 +25,7 @@ require_once 'siren.php';
- +
From befeafc959f286189a1b4f3a076742676c970937 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Mon, 12 Apr 2010 14:49:55 +0000 Subject: [PATCH 4/6] fixed issue #0000239 --- includes/cgu/cgu.php | 33 +++++++++++++++++++++++++++++++++ www/css/main.css | 2 ++ www/css/rsynthese.css | 1 - www/pages/annonces.php | 8 ++++++++ www/pages/banque.php | 10 ++++++++-- www/pages/bilans.php | 6 ++++++ www/pages/bourse.php | 7 +++++++ www/pages/competences.php | 6 ++++++ www/pages/conventions.php | 9 +++++++++ www/pages/dirigeants.php | 8 ++++++++ www/pages/etablissements.php | 8 ++++++++ www/pages/evenements.php | 6 ++++++ www/pages/greffes2.php | 7 +++++++ www/pages/identite.php | 27 +++++++++++++++++---------- www/pages/identite_60.php | 8 ++++++++ www/pages/identite_procol.php | 7 +++++++ www/pages/indiscore.php | 6 ++++++ www/pages/infosreg.php | 8 ++++++++ www/pages/liasse.php | 4 ++++ www/pages/liens.php | 6 ++++++ www/pages/marques.php | 8 +++++++- www/pages/ratios.php | 6 ++++++ www/pages/rsynthese.php | 10 ++++------ www/pages/rsynthesemin.php | 12 +++++------- www/pages/scorescf.php | 6 ++++++ www/pages/synthese.php | 6 ++++++ 26 files changed, 198 insertions(+), 27 deletions(-) create mode 100644 includes/cgu/cgu.php diff --git a/includes/cgu/cgu.php b/includes/cgu/cgu.php new file mode 100644 index 000000000..67ca9713d --- /dev/null +++ b/includes/cgu/cgu.php @@ -0,0 +1,33 @@ + 'La consultation ou la réception de documents n\'entraîne aucun '. + 'transfert de droit de propriété intellectuelle en faveur du Client. '. + 'Ce dernier s\'engage à ne pas rediffuser ou reproduire les données '. + 'fournies autrement que pour son usage dans le cadre de la relation '. + 'contractuelle établie entre Scores & Decisions SAS et "le Client".', + + 1 => 'Les données transmises sont indicatives et traitées en conformité '. + 'avec les usages en vigueur. Scores & Decisions SAS agrège et fournit '. + 'l\'information en l\'état et ne saurait accorder une garantie '. + 'quelconque notamment pour la fiabilité, l\'actualité, l\'exhaustivité'. + ' des données. La responsabilité de Scores & Decisions SAS ne pourra '. + 'être engagée pour tout dommage indirect et notamment pour manque à '. + 'gagner, préjudice commercial ou financier, recours de tiers, cette '. + 'liste n’étant pas limitative. "Le Client" recherche, sélectionne et '. + 'interprète les données sous sa propre responsabilité.', +); + +$assocPageCgu = array( + 'liens' => 1, +); + +function afficheCgu(){ + global $assocPageCgu, $tabCgu, $page; + + $index = 0; + if (array_key_exists($page, $assocPageCgu)){ + $index = $assocPageCgu[$page]; + } + return $tabCgu[$index]; +} \ No newline at end of file diff --git a/www/css/main.css b/www/css/main.css index 017e46441..8a86a1014 100644 --- a/www/css/main.css +++ b/www/css/main.css @@ -439,6 +439,8 @@ table.greffe td.type { vertical-align: middle; } +.confidentiel {border-top:1px solid; padding-top:5px; font-style:italic; font-size:9px;} + .ui-dialog-content { text-align:left; } diff --git a/www/css/rsynthese.css b/www/css/rsynthese.css index 8dddb345f..732a0bb35 100644 --- a/www/css/rsynthese.css +++ b/www/css/rsynthese.css @@ -1,4 +1,3 @@ -.confidentiel {font-style:italic; font-size:9px;} #rsynthese { margin :10px; fonst-weight:bold; } .blockh2{ margin:5px; } .page { page-break-before:always; } diff --git a/www/pages/annonces.php b/www/pages/annonces.php index 2b23d0f7f..bd9c1a564 100644 --- a/www/pages/annonces.php +++ b/www/pages/annonces.php @@ -434,4 +434,12 @@ if (!$idan) + +

+ +

+
\ No newline at end of file diff --git a/www/pages/banque.php b/www/pages/banque.php index f1c786216..0f1fc47c6 100644 --- a/www/pages/banque.php +++ b/www/pages/banque.php @@ -154,6 +154,12 @@ foreach($rbanque as $relation) $array2xml->records = $rbanque; $array2xml->writeXML($fileName); } -?>
+?> +

+ +

+ +

+ +

diff --git a/www/pages/bourse.php b/www/pages/bourse.php index ceceb7c35..9c81e69b4 100644 --- a/www/pages/bourse.php +++ b/www/pages/bourse.php @@ -366,4 +366,11 @@ else } ?> + +

+ +

diff --git a/www/pages/competences.php b/www/pages/competences.php index 9c37cd4f1..d24133842 100644 --- a/www/pages/competences.php +++ b/www/pages/competences.php @@ -344,6 +344,12 @@ elseif ($comp['Type']=='M') echo 'Mandataire judiciaire
'; } ?>
+

+ +

0)   + + +

+ +

+ \ No newline at end of file diff --git a/www/pages/dirigeants.php b/www/pages/dirigeants.php index 458f96b72..adce0d3e8 100644 --- a/www/pages/dirigeants.php +++ b/www/pages/dirigeants.php @@ -155,6 +155,14 @@ if (isset($_REQUEST['vue']) && $_REQUEST['vue']=='histo') + +

+ +

+ + +

+ +

+ +

+ +

\ No newline at end of file diff --git a/www/pages/greffes2.php b/www/pages/greffes2.php index 5d5075f0b..59b6a30eb 100644 --- a/www/pages/greffes2.php +++ b/www/pages/greffes2.php @@ -822,4 +822,11 @@ else } // } // Fin test connecté ?> + +

+ +

\ No newline at end of file diff --git a/www/pages/identite.php b/www/pages/identite.php index 2d7ec9764..c65fa376d 100644 --- a/www/pages/identite.php +++ b/www/pages/identite.php @@ -4,21 +4,21 @@ require_once 'recherche/session.php'; $parametres = recherche_element(0); if( isset($parametres) && $parametres['info']['page']=='recherche' ) { - recherche_saveinfo( array('page' => $page) ); - recherche_saveinfo( array('siret' => $siret) ); - recherche_saveinfo( array('idEntreprise' => $idEntreprise) ); + recherche_saveinfo( array('page' => $page) ); + recherche_saveinfo( array('siret' => $siret) ); + recherche_saveinfo( array('idEntreprise' => $idEntreprise) ); } function dRow($lib, $data, $title = '') { - $html = ''."\n"; - $html.= '  '."\n"; - $html.= ' '.$lib.''."\n"; + $html = ''."\n"; + $html.= '  '."\n"; + $html.= ' '.$lib.''."\n"; - if($title!='') $title = ' title="'.$title.'"'; - $html.= ' '.$data.''."\n"; - $html.= ''."\n"; - return $html; + if($title!='') $title = ' title="'.$title.'"'; + $html.= ' '.$data.''."\n"; + $html.= ''."\n"; + return $html; } ?> @@ -270,4 +270,11 @@ $array2xml->defaultTagName = $page; $array2xml->records = $tabForExport; $array2xml->writeXML($fileName); ?> + +

+ +

\ No newline at end of file diff --git a/www/pages/identite_60.php b/www/pages/identite_60.php index db55296f9..eeb900a07 100644 --- a/www/pages/identite_60.php +++ b/www/pages/identite_60.php @@ -738,4 +738,12 @@ else echo '

Néant

'; if(count($annonceSelect)>0) echo dAnnonces($annonceSelect, $siret); else echo '

Néant

'; ?> + +

+ +

+ \ No newline at end of file diff --git a/www/pages/identite_procol.php b/www/pages/identite_procol.php index 3c26e715d..13d3dd246 100644 --- a/www/pages/identite_procol.php +++ b/www/pages/identite_procol.php @@ -743,5 +743,12 @@ else echo '

Néant

'; if(count($annonceSelect)>0) echo dAnnonces($annonceSelect, $siret); else echo '

Néant

'; ?> + +

+ +

diff --git a/www/pages/indiscore.php b/www/pages/indiscore.php index 64610398f..0849bb55c 100644 --- a/www/pages/indiscore.php +++ b/www/pages/indiscore.php @@ -245,6 +245,12 @@ if ($etab['NbBilansScore']>0 && $etab['Bilans'][0]['Millesime']>=$millesimeMax) +

+ +

  + +

+ +

+ \ No newline at end of file diff --git a/www/pages/liasse.php b/www/pages/liasse.php index a344dfbaa..8a545b177 100644 --- a/www/pages/liasse.php +++ b/www/pages/liasse.php @@ -217,7 +217,11 @@ if(isset($_REQUEST['mil']) == true) { +

+

diff --git a/www/pages/liens.php b/www/pages/liens.php index f8e990965..c72c95b48 100644 --- a/www/pages/liens.php +++ b/www/pages/liens.php @@ -179,6 +179,12 @@ $liens = scoresws_liens($siret, $siren, $idEntreprise); +

+ +

  - Aucune marque n'a été déposée par cette entreprise depuis 1982. + Aucune marque n'a été déposée par cette entreprise depuis 1982. +

+ +

diff --git a/www/pages/ratios.php b/www/pages/ratios.php index 3156b404a..d035bd95e 100644 --- a/www/pages/ratios.php +++ b/www/pages/ratios.php @@ -228,4 +228,10 @@ if($ratio!=''){ } } ?> +

+ +

\ No newline at end of file diff --git a/www/pages/rsynthese.php b/www/pages/rsynthese.php index 555f946c9..6fe11c351 100644 --- a/www/pages/rsynthese.php +++ b/www/pages/rsynthese.php @@ -1934,12 +1934,10 @@ if ($etab['NbBilansScore']>0 && $etab['Bilans'][0]['Millesime']>=$millesimeMax) ?>

-* Informations confidentielles, ne pas divulguer. -
-La reproduction, la rediffusion ou l'extraction automatique par tout moyen d'informations figurant sur les bases de Scores & Decisions est interdite. L'emploi de robots, programmes permettant l'extraction directe de données est rigoureusement interdit sans accord préalable écrit de Scores & Decisions SAS. -La consultation ou la réception de documents n'entraîne aucun transfert de droit de propriété intellectuelle en faveur de l'utilisateur. Ce dernier s'engage à ne pas rediffuser ou à reproduire les données fournies autrement que pour son usage propre. Les données transmises sont traitées en conformité avec les usages en vigueur. L'utilisateur recherche, sélectionne et interprète les données sous sa propre responsabilité. -
-L'extranet Scores & Decisions est un service privé distinct des Journaux Officiels, de l'INPI et de l'INSEE et est édité par SCORES & DECISIONS SAS, RCS VERSAILLES B 494967938, licencié des sources officielles précités. +

diff --git a/www/pages/rsynthesemin.php b/www/pages/rsynthesemin.php index 3eec835ff..e4affa65e 100644 --- a/www/pages/rsynthesemin.php +++ b/www/pages/rsynthesemin.php @@ -712,13 +712,11 @@ if(!empty($indiscore)) -

-* Informations confidentielles, ne pas divulguer. -
-La reproduction, la rediffusion ou l'extraction automatique par tout moyen d'informations figurant sur les bases de Scores & Decisions est interdite. L'emploi de robots, programmes permettant l'extraction directe de données est rigoureusement interdit sans accord préalable écrit de Scores & Decisions SAS. -La consultation ou la réception de documents n'entraîne aucun transfert de droit de propriété intellectuelle en faveur de l'utilisateur. Ce dernier s'engage à ne pas rediffuser ou à reproduire les données fournies autrement que pour son usage propre. Les données transmises sont traitées en conformité avec les usages en vigueur. L'utilisateur recherche, sélectionne et interprète les données sous sa propre responsabilité. -
-L'extranet Scores & Decisions est un service privé distinct des Journaux Officiels, de l'INPI et de l'INSEE et est édité par SCORES & DECISIONS SAS, RCS VERSAILLES B 494967938, licencié des sources officielles précités. +

+

\ No newline at end of file diff --git a/www/pages/scorescf.php b/www/pages/scorescf.php index b0639fe22..d498ee881 100644 --- a/www/pages/scorescf.php +++ b/www/pages/scorescf.php @@ -228,4 +228,10 @@ if ($action<>'commande') { } ?> +

+ +

\ No newline at end of file diff --git a/www/pages/synthese.php b/www/pages/synthese.php index 3d0624cd6..5b7113a22 100644 --- a/www/pages/synthese.php +++ b/www/pages/synthese.php @@ -142,4 +142,10 @@ if(!empty($ratio)) +

+ +

From b44cb8d4eff94b10fba6dc66245b24ef9af4b0e0 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Tue, 13 Apr 2010 07:22:56 +0000 Subject: [PATCH 5/6] Modification de l'encours client depuis la page portefeuille, issue #0000064 --- www/css/surveillance.css | 14 ++++++++++-- www/pages/portefeuille.php | 44 ++++++++++++++++++++++++++------------ 2 files changed, 42 insertions(+), 16 deletions(-) diff --git a/www/css/surveillance.css b/www/css/surveillance.css index a92998dc0..c7c4fd504 100644 --- a/www/css/surveillance.css +++ b/www/css/surveillance.css @@ -12,9 +12,19 @@ #surveillance #type {width:120px;} #info {margin:5px 5px 5px 30px; font:normal 1em Arial, Verdana, Sans-serif; letter-spacing:1px; line-height: 1em;} #info td {padding-right:10px;} -table.tablesorter thead tr .header { background-image:url(../img/bg.gif); background-repeat:no-repeat; background-position:center right; cursor:pointer; } +table.tablesorter thead tr .header { background:url(../img/bg.gif) no-repeat center right; cursor:pointer; } table.tablesorter thead tr .headerSortUp { background-image: url(../img/asc.gif); } table.tablesorter thead tr .headerSortDown { background-image: url(../img/desc.gif); } #tri li {list-syle:none; margin-left:10px; display:inline; font-size:11px; } p.options { margin-left:10px; margin-top:5px; font-size:11px; } -#getSurveillanceMsg { margin-left:10px; margin-top:5px; } \ No newline at end of file +#getSurveillanceMsg { margin-left:10px; margin-top:5px; } +.align_image img, .align_image span { + vertical-align: middle; + display: inline-block; +} +.align_image span { + width:50%; +} +#surveillance td.encours { text-align:right; } +#surveillance th.score { width:60px; } +#surveillance td a.editencours { display:none; } \ No newline at end of file diff --git a/www/pages/portefeuille.php b/www/pages/portefeuille.php index 1a1965522..4d32c82e6 100644 --- a/www/pages/portefeuille.php +++ b/www/pages/portefeuille.php @@ -57,22 +57,16 @@ $maxIndiscore = empty($_SESSION['tabInfo']['typeScore']) ? $typeScore = ($_SESSION['tabInfo']['typeScore'] == '100') ? '' : '20'; ?> - - @@ -280,11 +286,19 @@ if(count($listSurveillance)>0) ?> - + +
+ + + + + @@ -293,6 +307,8 @@ if(count($listSurveillance)>0) }else{ ?> - - + +
Date: Tue, 13 Apr 2010 07:24:02 +0000 Subject: [PATCH 6/6] =?UTF-8?q?Sp=C3=A9cification=20unit=C3=A9=20mon=C3=A9?= =?UTF-8?q?taire?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/surveillance/surveillance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/surveillance/surveillance.php b/includes/surveillance/surveillance.php index 62f3f9537..b05aa7fdf 100644 --- a/includes/surveillance/surveillance.php +++ b/includes/surveillance/surveillance.php @@ -101,7 +101,7 @@ function formSurveillance($source, $siret, $notEmail, $inDialog = false) if ($source=='score'){ $output.= '
'."\n"; $output.= '
'."\n"; - $output.= ''; + $output.= ''; $output.= '
'; $output.= '
'."\n";