Merge from branch 2.4
This commit is contained in:
parent
43d2addc09
commit
c9b083ceb8
@ -35,6 +35,8 @@ class AideController extends Zend_Controller_Action
|
||||
*/
|
||||
public function newlisteAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend('Nouveautés');
|
||||
|
||||
$request = $this->getRequest();
|
||||
|
||||
//Selection
|
||||
@ -66,7 +68,7 @@ class AideController extends Zend_Controller_Action
|
||||
$identity->acceptationCGU = date('Y-m-d H:i:s');
|
||||
$auth->getStorage()->write($identity);
|
||||
//Redirect
|
||||
$this->_redirect('/');
|
||||
$this->redirect('/');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?php
|
||||
class BdfController extends Zend_Controller_Action
|
||||
{
|
||||
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
|
||||
|
||||
//Type de module
|
||||
$module = $request->getParam('module', '');
|
||||
$siret = $request->getParam('siret', '');
|
||||
@ -16,18 +16,18 @@ class BdfController extends Zend_Controller_Action
|
||||
$rechet = $request->getParam('rechet', '');
|
||||
$ape = $request->getParam('ape', '');
|
||||
$service = $request->getParam('service', '');
|
||||
|
||||
|
||||
if ($siret != '' && $req != '' && substr($siret, 0, 9) != $req) {
|
||||
$siret = '';
|
||||
} else if (substr($siret, 0, 9) == $req || empty($req)) {
|
||||
$req = substr($siret, 0, 9);
|
||||
}
|
||||
|
||||
|
||||
if (is_array($module)){
|
||||
$session = new Zend_Session_Namespace('BDF');
|
||||
$session->module = $module;
|
||||
}
|
||||
|
||||
|
||||
//Titre
|
||||
$title = 'Banque De France - '.strtoupper($service);
|
||||
if ($siret == '') {
|
||||
@ -35,30 +35,30 @@ class BdfController extends Zend_Controller_Action
|
||||
} else {
|
||||
$title .= substr($siren,0,9);
|
||||
}
|
||||
$this->view->headTitle()->append('Banque de France - '.$titre);
|
||||
|
||||
|
||||
$this->view->headTitle()->prepend('Banque de France - '.$titre);
|
||||
|
||||
|
||||
require_once 'Scores/Bdf.php';
|
||||
$bdf = new BDF();
|
||||
|
||||
|
||||
$this->view->assign('siret', $siret);
|
||||
$this->view->assign('req', $req);
|
||||
$this->view->assign('module', $session->module);
|
||||
|
||||
|
||||
//Liste module FIBEN
|
||||
$listModulesFiben = $bdf->bdf_modules_fiben();
|
||||
$this->view->assign('listModulesFiben', $listModulesFiben);
|
||||
|
||||
|
||||
//Liste module FCC
|
||||
$listModulesFcc = $bdf->bdf_modules_fcc();
|
||||
$this->view->assign('listModulesFcc', $listModulesFcc);
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function moduleAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
|
||||
|
||||
//Type de module
|
||||
$module = $request->getParam('bdfmodule', '');
|
||||
$siret = $request->getParam('siret', '');
|
||||
@ -69,20 +69,20 @@ class BdfController extends Zend_Controller_Action
|
||||
$rechet = $request->getParam('rechet', '');
|
||||
$ape = $request->getParam('ape', '');
|
||||
$service = $request->getParam('service', '');
|
||||
|
||||
|
||||
if ($siret != '' && $req != '' && substr($siret, 0, 9) != $req) {
|
||||
$siret = '';
|
||||
} else if (substr($siret, 0, 9) == $req || empty($req)) {
|
||||
$req = substr($siret, 0, 9);
|
||||
}
|
||||
|
||||
|
||||
Zend_Registry::get('firebug')->info($module);
|
||||
|
||||
|
||||
$content = array();
|
||||
|
||||
|
||||
require_once 'Scores/Bdf.php';
|
||||
$bdf = new BDF();
|
||||
|
||||
|
||||
//Mode multi module
|
||||
if ($type=='u') {
|
||||
if (is_array($module)) {
|
||||
@ -136,7 +136,7 @@ class BdfController extends Zend_Controller_Action
|
||||
}
|
||||
$this->view->assign('content', $content);
|
||||
}
|
||||
|
||||
|
||||
public function module27Action()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
@ -144,7 +144,7 @@ class BdfController extends Zend_Controller_Action
|
||||
$params['bdfmodule'] = array(27);
|
||||
$this->_forward('module', null, null, $params);
|
||||
}
|
||||
|
||||
|
||||
public function module28Action()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
@ -152,7 +152,7 @@ class BdfController extends Zend_Controller_Action
|
||||
$params['bdfmodule'] = array(28);
|
||||
$this->_forward('module', null, null, $params);
|
||||
}
|
||||
|
||||
|
||||
public function module29Action()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
@ -160,7 +160,7 @@ class BdfController extends Zend_Controller_Action
|
||||
$params['bdfmodule'] = array(29);
|
||||
$this->_forward('module', null, null, $params);
|
||||
}
|
||||
|
||||
|
||||
public function module40Action()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
@ -168,7 +168,7 @@ class BdfController extends Zend_Controller_Action
|
||||
$params['bdfmodule'] = array(40);
|
||||
$this->_forward('module', null, null, $params);
|
||||
}
|
||||
|
||||
|
||||
public function module51Action()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
@ -176,6 +176,6 @@ class BdfController extends Zend_Controller_Action
|
||||
$params['bdfmodule'] = array(51);
|
||||
$this->_forward('module', null, null, $params);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -521,7 +521,7 @@ class DashboardController extends Zend_Controller_Action
|
||||
}
|
||||
|
||||
/**
|
||||
* Affichage de la raison sociale à partir du siren
|
||||
* Affichage de la dénomination sociale à partir du siren
|
||||
*/
|
||||
public function rsAction()
|
||||
{
|
||||
|
@ -20,8 +20,8 @@ class DirigeantController extends Zend_Controller_Action
|
||||
{
|
||||
$siren = substr($this->siret, 0, 9);
|
||||
|
||||
$this->view->headTitle()->append('Liste des dirigeants');
|
||||
$this->view->headTitle()->append('Siret '.$this->siret);
|
||||
$this->view->headTitle()->prepend('Liste des dirigeants');
|
||||
$this->view->headTitle()->prepend('Siret '.$this->siret);
|
||||
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getDirigeants($siren);
|
||||
@ -60,8 +60,8 @@ class DirigeantController extends Zend_Controller_Action
|
||||
{
|
||||
$siren = substr($this->siret, 0, 9);
|
||||
|
||||
$this->view->headTitle()->append('Historique des dirigeants');
|
||||
$this->view->headTitle()->append('Siret '.$this->siret);
|
||||
$this->view->headTitle()->prepend('Historique des dirigeants');
|
||||
$this->view->headTitle()->prepend('Siret '.$this->siret);
|
||||
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getDirigeants($siren, true);
|
||||
@ -89,8 +89,8 @@ class DirigeantController extends Zend_Controller_Action
|
||||
{
|
||||
$siren = substr($this->siret, 0, 9);
|
||||
|
||||
$this->view->headTitle()->append('Liste des dirigeants opérationnels');
|
||||
$this->view->headTitle()->append('Siret '.$this->siret);
|
||||
$this->view->headTitle()->prepend('Liste des dirigeants opérationnels');
|
||||
$this->view->headTitle()->prepend('Siret '.$this->siret);
|
||||
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getDirigeantsOp($siren);
|
||||
|
@ -16,7 +16,7 @@ class EvaluationController extends Zend_Controller_Action
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
$this->_forward('entreprise', 'recherche');
|
||||
$this->forward('entreprise', 'recherche');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -61,10 +61,9 @@ class EvaluationController extends Zend_Controller_Action
|
||||
*/
|
||||
public function indiscoreAction()
|
||||
{
|
||||
$user = new Scores_Utilisateur();
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
if(!$user->checkPerm('INDISCORE') && !$user->checkPerm('INDISCOREP'))
|
||||
$this->_forward('perms', 'error');
|
||||
$this->forward('perms', 'error');
|
||||
|
||||
$this->view->assign('edition', $user->checkModeEdition());
|
||||
|
||||
@ -73,6 +72,8 @@ class EvaluationController extends Zend_Controller_Action
|
||||
|
||||
//Récupération des informations
|
||||
if (empty($autrePage)) {
|
||||
$this->view->headTitle()->prepend('IndiScore');
|
||||
$this->view->headTitle()->prepend('Siret '.$this->siret);
|
||||
$plus = false;
|
||||
if ($user->checkPerm('indiscorep')){
|
||||
$plus = true;
|
||||
@ -83,7 +84,7 @@ class EvaluationController extends Zend_Controller_Action
|
||||
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getIndiScore(substr($this->siret, 0,9), 0, 1, $plus, $ref, $encours, $email);
|
||||
if ($infos === false) $this->_forward('soap', 'error');
|
||||
if ($infos === false) $this->forward('soap', 'error');
|
||||
} else {
|
||||
$infos = $this->getRequest()->getParam('infos');
|
||||
}
|
||||
@ -103,11 +104,12 @@ class EvaluationController extends Zend_Controller_Action
|
||||
public function indiscore2Action()
|
||||
{
|
||||
$this->view->headScript()->appendFile('/themes/default/scripts/finance.js', 'text/javascript');
|
||||
$this->view->headTitle()->prepend("Rapport de synthèse");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
|
||||
if(!$user->checkPerm('INDISCORE2') && !$user->checkPerm('INDISCORE2P'))
|
||||
$this->_forward('perms', 'error');
|
||||
$this->forward('perms', 'error');
|
||||
|
||||
$siren = substr($this->siret,0,9);
|
||||
|
||||
@ -261,10 +263,12 @@ class EvaluationController extends Zend_Controller_Action
|
||||
public function indiscore3Action()
|
||||
{
|
||||
$this->view->headScript()->appendFile('/themes/default/scripts/evaluation.js', 'text/javascript');
|
||||
$this->view->headTitle()->prepend("Rapport complet");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
if(!$user->checkPerm('INDISCORE3') && !$user->checkPerm('INDISCORE3P'))
|
||||
$this->_forward('perms', 'error');
|
||||
$this->forward('perms', 'error');
|
||||
|
||||
// Lien pour le rapport personnalisé
|
||||
if ($user->getIdClient() == '110' || $user->checkModeEdition()) {
|
||||
@ -488,6 +492,8 @@ class EvaluationController extends Zend_Controller_Action
|
||||
public function enquetecAction()
|
||||
{
|
||||
$this->view->headScript()->appendFile('/themes/default/scripts/enquetec.js', 'text/javascript');
|
||||
$this->view->headTitle()->prepend("Enquete commerciale");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
//isset($_REQUEST['pays']) ? $pays=$_REQUEST['pays'] : $pays='' ;
|
||||
|
||||
@ -591,8 +597,14 @@ class EvaluationController extends Zend_Controller_Action
|
||||
$this->view->assign('commandeEnquete', $commandeEnquete);
|
||||
}
|
||||
|
||||
/**
|
||||
* Demande d'avis de credit
|
||||
*/
|
||||
public function aviscreditAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Avis de crédit");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$commande = false;
|
||||
|
||||
$request = $this->getRequest();
|
||||
@ -695,7 +707,10 @@ class EvaluationController extends Zend_Controller_Action
|
||||
*/
|
||||
public function scoringAction()
|
||||
{
|
||||
$user = new Scores_Utilisateur();
|
||||
$this->view->headTitle()->prepend("Scoring Credit Safe");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
if(!$user->checkModeEdition() or !$user->checkPerm('SCORECSF'))
|
||||
$this->render('error/perms', null, 'error');
|
||||
|
||||
@ -843,6 +858,9 @@ class EvaluationController extends Zend_Controller_Action
|
||||
|
||||
public function valorisationAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Valorisation");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
if(!$user->checkPerm('INDISCORE3') && !$user->checkPerm('INDISCORE3P'))
|
||||
$this->_forward('perms', 'error');
|
||||
|
@ -17,7 +17,7 @@ class FinanceController extends Zend_Controller_Action
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
$this->_forward('index', 'index');
|
||||
$this->forward('index', 'index');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ class FinanceController extends Zend_Controller_Action
|
||||
*/
|
||||
public function syntheseAction()
|
||||
{
|
||||
$user = new Scores_Utilisateur();
|
||||
$user = new Scores_Utilisateur();
|
||||
$session = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
|
||||
$request = $this->getRequest();
|
||||
@ -35,6 +35,8 @@ class FinanceController extends Zend_Controller_Action
|
||||
|
||||
//Récupération des informations
|
||||
if (empty($autrePage)) {
|
||||
$this->view->headTitle()->prepend("Synthese financière");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getRatios(substr($this->siret, 0, 9), 'synthese');
|
||||
if ($infos === false) $this->_forward('soap', 'error');
|
||||
@ -209,6 +211,8 @@ class FinanceController extends Zend_Controller_Action
|
||||
|
||||
//Récupération des informations
|
||||
if (empty($autrePage)) {
|
||||
$this->view->headTitle()->prepend("Bilan, Compte de résultat");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getRatios(substr($this->siret, 0, 9), 'ratios');
|
||||
if ($infos === false) $this->_forward('soap', 'error');
|
||||
@ -452,11 +456,13 @@ class FinanceController extends Zend_Controller_Action
|
||||
*/
|
||||
public function ratiosAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
$request = $this->getRequest();
|
||||
$autrePage = $request->getParam('apage');
|
||||
|
||||
//Récupération des informations
|
||||
if (empty($autrePage)) {
|
||||
$this->view->headTitle()->prepend("Ratios");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getRatios(substr($this->siret, 0, 9), 'ratios');
|
||||
if ($infos === false) $this->_forward('soap', 'error');
|
||||
@ -816,7 +822,10 @@ class FinanceController extends Zend_Controller_Action
|
||||
*/
|
||||
public function liasseAction()
|
||||
{
|
||||
$user = new Scores_Utilisateur();
|
||||
$this->view->headTitle()->prepend("Liasse fiscale");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
$this->view->assign('edition', $user->checkModeEdition());
|
||||
|
||||
/** Les ancres pour les liens **/
|
||||
@ -959,6 +968,9 @@ class FinanceController extends Zend_Controller_Action
|
||||
*/
|
||||
public function bourseAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Bourse & Cotations");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
require_once 'Scores/Logo.php';
|
||||
|
||||
$siren = substr($this->siret, 0, 9);
|
||||
@ -998,6 +1010,8 @@ class FinanceController extends Zend_Controller_Action
|
||||
$autrePage = $this->getRequest()->getParam('apage');
|
||||
//Récupération des informations
|
||||
if (empty($autrePage)) {
|
||||
$this->view->headTitle()->prepend("Relations Banquaires");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getBanques(substr($this->siret, 0, 9));
|
||||
if ($infos === false) $this->_forward('soap', 'error');
|
||||
@ -1017,6 +1031,9 @@ class FinanceController extends Zend_Controller_Action
|
||||
*/
|
||||
public function fluxAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Flux de trésorerie");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$request = $this->getRequest();
|
||||
$typeBilan = $request->getParam('type', 'N');
|
||||
$this->view->assign('typeBilan', $typeBilan);
|
||||
@ -1253,8 +1270,13 @@ class FinanceController extends Zend_Controller_Action
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Subvention accordés, principalement les associations
|
||||
*/
|
||||
public function subventionsAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Subventions");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
$sessionEntreprise = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
$siren = substr($this->siret, 0, 9);
|
||||
$this->view->assign('raisonSociale', $sessionEntreprise->getRaisonSociale());
|
||||
@ -1273,8 +1295,14 @@ class FinanceController extends Zend_Controller_Action
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Détail d'une subvention
|
||||
*/
|
||||
public function subventionAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Subvention");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$sessionEntreprise = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
$siren = substr($this->siret, 0, 9);
|
||||
$this->view->assign('raisonSociale', $sessionEntreprise->getRaisonSociale());
|
||||
|
@ -24,7 +24,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
case 'fiche':
|
||||
case 'fichepc':
|
||||
if (intval($this->siret)==0 && $this->id==0){
|
||||
$this->_forward('params', 'error');
|
||||
$this->forward('params', 'error');
|
||||
}
|
||||
break;
|
||||
}
|
||||
@ -35,7 +35,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
*/
|
||||
public function indexAction()
|
||||
{
|
||||
$this->_forward('index', 'index');
|
||||
$this->forward('index', 'index');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -49,7 +49,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
} else {
|
||||
$titre = 'Siret '.$this->siret;
|
||||
}
|
||||
$this->view->headTitle()->append('Identité - '.$titre);
|
||||
$this->view->headTitle()->prepend('Identité - '.$titre);
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
|
||||
@ -60,7 +60,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
$ws = new WsScores();
|
||||
$infos = $ws->getIdentite($this->siret, $this->id);
|
||||
if ($infos === false) {
|
||||
$this->_forward('soap', 'error');
|
||||
$this->forward('soap', 'error');
|
||||
}
|
||||
} else {
|
||||
$infos = $this->getRequest()->getParam('infos');
|
||||
@ -91,7 +91,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
|
||||
if ( $dateId == 'DateMajID') {
|
||||
$date = new Zend_Date($infos->DateMajID, 'yyyy-MM-dd');
|
||||
$dateDerMaj = ' le '.$date->toString('dd/MM/yyyy');
|
||||
$dateDerMaj = $date->toString('dd/MM/yyyy');
|
||||
}
|
||||
|
||||
if ( $dateId == 'DateMajID' && !$user->checkModeEdition()) {
|
||||
@ -200,7 +200,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
} else {
|
||||
$titre = 'Siret '.$this->siret;
|
||||
}
|
||||
$this->view->headTitle()->append('Fiche procédure collective - '.$titre);
|
||||
$this->view->headTitle()->prepend('Fiche procédure collective - '.$titre);
|
||||
|
||||
//Récupération des informations
|
||||
$ws = new WsScores();
|
||||
@ -311,7 +311,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
{
|
||||
$siren = substr($this->siret,0,9);
|
||||
$actif = $this->getRequest()->getParam('actif', -1);
|
||||
$this->view->headTitle()->append('Liste des établissements - Siren '.$siren);
|
||||
$this->view->headTitle()->prepend('Liste des établissements - Siren '.$siren);
|
||||
|
||||
$session = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
$user = new Scores_Utilisateur();
|
||||
@ -568,7 +568,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
|
||||
$this->view->assign('lienref', $lienRef);
|
||||
|
||||
$this->view->headTitle()->append('Liens inter-entreprises - Id '.$lienRef);
|
||||
$this->view->headTitle()->prepend('Liens inter-entreprises - Id '.$lienRef);
|
||||
|
||||
$identite = $ws->getLienRef($lienRef);
|
||||
$this->view->assign('raisonSociale', $identite->raisonSociale);
|
||||
@ -596,7 +596,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
} else {
|
||||
$siren = substr($this->siret,0,9);
|
||||
|
||||
$this->view->headTitle()->append('Liens inter-entreprises - Siren '.$siren);
|
||||
$this->view->headTitle()->prepend('Liens inter-entreprises - Siren '.$siren);
|
||||
|
||||
$session = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
|
||||
@ -680,6 +680,9 @@ class IdentiteController extends Zend_Controller_Action
|
||||
$this->view->assign('AutrePage', $this->getRequest()->getParam('apage'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Fiche identite d'un lien
|
||||
*/
|
||||
public function lienficheAction()
|
||||
{
|
||||
$this->_helper->layout()->disableLayout();
|
||||
@ -945,6 +948,9 @@ class IdentiteController extends Zend_Controller_Action
|
||||
$this->view->assign('result', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* Documents liées à une fiche lien
|
||||
*/
|
||||
public function liendocAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
@ -967,7 +973,7 @@ class IdentiteController extends Zend_Controller_Action
|
||||
public function evenementsAction()
|
||||
{
|
||||
$siren = substr($this->siret,0,9);
|
||||
$this->view->headTitle()->append('Evènements - Siren '.$siren);
|
||||
$this->view->headTitle()->prepend('Evènements - Siren '.$siren);
|
||||
|
||||
$session = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
|
||||
@ -1066,6 +1072,9 @@ class IdentiteController extends Zend_Controller_Action
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Téléchargement des cartes IRIS
|
||||
*/
|
||||
public function irisAction()
|
||||
{
|
||||
$this->_helper->layout()->disableLayout();
|
||||
@ -1091,13 +1100,14 @@ class IdentiteController extends Zend_Controller_Action
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Informations géographiques
|
||||
*/
|
||||
public function geoAction()
|
||||
{
|
||||
$infos = $this->getRequest()->getParam('infos');
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
$this->view->assign('facade', $user->checkPref('mappy'));
|
||||
|
||||
// Text
|
||||
$google = new Scores_Google_Maps();
|
||||
$decLat = $google->dec2dms($infos->GeoLat);
|
||||
$decLon = $google->dec2dms($infos->GeoLon);
|
||||
@ -1110,27 +1120,25 @@ class IdentiteController extends Zend_Controller_Action
|
||||
$this->view->assign('decLat', $decLat);
|
||||
$this->view->assign('decLon', $decLon);
|
||||
$this->view->assign('infos', $infos);
|
||||
}
|
||||
|
||||
public function facadeAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
|
||||
// Img
|
||||
$user = new Scores_Utilisateur();
|
||||
$this->view->assign('facade', $user->checkPref('mappy'));
|
||||
require_once 'Scores/Mappy.php';
|
||||
|
||||
$infos = $request->getParam('infos');
|
||||
$source = $request->getParam('source');
|
||||
$mappy = new Mappy();
|
||||
if ($mappy->villeCouverte($infos->Ville))
|
||||
{
|
||||
$this->view->assign('source', 'mappy');
|
||||
|
||||
$adresse = '';
|
||||
$adresse.= $infos->AdresseNum;
|
||||
|
||||
//Corriger la voie pour Mappy
|
||||
$adresse.= ' '.strtr($infos->AdresseVoie, array(
|
||||
'R' => 'RUE',
|
||||
'AV' => 'AVENUE',
|
||||
'RLE' => 'RUELLE',
|
||||
'R' => 'RUE',
|
||||
'AV' => 'AVENUE',
|
||||
'RLE' => 'RUELLE',
|
||||
));
|
||||
|
||||
$adresse.= ' '.$infos->AdresseRue;
|
||||
@ -1144,7 +1152,6 @@ class IdentiteController extends Zend_Controller_Action
|
||||
}
|
||||
|
||||
$this->view->assign('adresse', $adresse);
|
||||
$this->view->assign('source', 'mappy');
|
||||
$this->view->assign('lienJs', $mappy->getJs());
|
||||
}
|
||||
else
|
||||
@ -1153,24 +1160,65 @@ class IdentiteController extends Zend_Controller_Action
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Display streetview image
|
||||
*/
|
||||
public function streetviewAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
$siret = $request->getParam('siret');
|
||||
$this->view->assign('siret', $siret);
|
||||
|
||||
if ( $request->isXmlHttpRequest() ) {
|
||||
$this->_helper->layout()->disableLayout();
|
||||
}
|
||||
$this->_helper->layout()->disableLayout();
|
||||
$siret = $request->getParam('siret');
|
||||
$lat = $request->getParam('lat', '');
|
||||
$lon = $request->getParam('lon', '');
|
||||
$address = $request->getParam('address');
|
||||
} else {
|
||||
$infos = $request->getParam('infos');
|
||||
$siret = $infos->Siret;
|
||||
$lat = $infos->GeoLat;
|
||||
$lon = $infos->GeoLon;
|
||||
|
||||
$lat = $request->getParam('lat', '');
|
||||
$this->view->assign('lat', $lat);
|
||||
$lon = $request->getParam('lon', '');
|
||||
$this->view->assign('lon', $lon);
|
||||
$adresse = '';
|
||||
if (intval($infos->AdresseNum)>0) {
|
||||
$adresse.= intval($infos->AdresseNum).' ';
|
||||
}
|
||||
|
||||
//Corriger la voie
|
||||
$adresse.= strtr($infos->AdresseVoie, array(
|
||||
'R' => 'RUE',
|
||||
'AV' => 'AVENUE',
|
||||
'RLE' => 'RUELLE',
|
||||
));
|
||||
|
||||
$adresse.= ' '.$infos->AdresseRue;
|
||||
$adresse.= ', '.$infos->Ville;
|
||||
|
||||
//Définir le pays
|
||||
if ($infos->Pays == '') {
|
||||
$adresse.= ', FRANCE';
|
||||
} else {
|
||||
$adresse.= ', '.$infos->Pays;
|
||||
}
|
||||
}
|
||||
|
||||
$num = $request->getParam('heading', 0);
|
||||
|
||||
if ( intval($siret)>100 && $lat != '' && $lon != '' ) {
|
||||
$this->view->assign('siret', $siret);
|
||||
$this->view->assign('lat', $lat);
|
||||
$this->view->assign('lon', $lon);
|
||||
|
||||
$mode = 'address';
|
||||
$this->view->assign('streetviewMode', $mode);
|
||||
|
||||
if ( $mode == 'address' && $adresse !== null ) {
|
||||
$streetview = new Scores_Google_Streetview($siret);
|
||||
$streetview->setLocationTxt($adresse);
|
||||
$url = $streetview->serveUrl();
|
||||
$this->view->assign('url', $url);
|
||||
}
|
||||
|
||||
if ( $mode == 'GPS' && intval($siret)>100 && $lat != '' && $lon != '' ) {
|
||||
$streetview = new Scores_Google_Streetview($siret);
|
||||
$deg = $streetview->getNumDeg();
|
||||
$nbImg = count($deg);
|
||||
@ -1184,19 +1232,23 @@ class IdentiteController extends Zend_Controller_Action
|
||||
}
|
||||
$this->view->assign('pagePrec', $pagePrec);
|
||||
$this->view->assign('pageSuiv', $pageSuiv);
|
||||
|
||||
$streetview->setLocationGeo( $lat, $lon );
|
||||
$heading = $deg[$num];
|
||||
$streetview->setHeading($heading);
|
||||
//$streetview->setLocationTxt($adresse);
|
||||
$img = $streetview->display();
|
||||
|
||||
$img = $streetview->serveImg();
|
||||
if ( $img!==false ) {
|
||||
$url = '/fichier/streetview/'.$streetview->display();
|
||||
$url = '/fichier/streetview/'.$img;
|
||||
$this->view->assign('url', $url);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Impression capture image arborescence du groupe
|
||||
*/
|
||||
public function groupesarboimgAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
@ -1242,6 +1294,9 @@ class IdentiteController extends Zend_Controller_Action
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Arborescence du groupe
|
||||
*/
|
||||
public function groupesarboAction()
|
||||
{
|
||||
$this->_helper->layout()->disableLayout();
|
||||
@ -1289,6 +1344,12 @@ class IdentiteController extends Zend_Controller_Action
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Récursivité pour l'arborescence du groupe
|
||||
* @param unknown $items
|
||||
* @param string $detectSiren
|
||||
* @return multitype:multitype:string multitype: multitype:multitype:string multitype: NULL
|
||||
*/
|
||||
public function groupesArboChildren($items, $detectSiren = '')
|
||||
{
|
||||
$output = array();
|
||||
@ -1328,8 +1389,14 @@ class IdentiteController extends Zend_Controller_Action
|
||||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
* Groupe
|
||||
*/
|
||||
public function groupeAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Groupe");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$siren = substr($this->siret,0,9);
|
||||
|
||||
$ws = new WsScores();
|
||||
@ -1339,13 +1406,37 @@ class IdentiteController extends Zend_Controller_Action
|
||||
$this->view->assign('siren', $siren);
|
||||
}
|
||||
|
||||
/**
|
||||
* Contact Data
|
||||
*/
|
||||
public function contactsAction()
|
||||
{
|
||||
$session = new Scores_Session_Entreprise($this->siret, $this->id, true);
|
||||
$siren = substr($this->siret,0,9);
|
||||
Zend_Registry::get('firebug')->info($siren);
|
||||
$this->view->headTitle()->prepend("Contacts");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$session = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
$this->view->assign('edition', $user->checkModeEdition());
|
||||
|
||||
$request = $this->getRequest();
|
||||
$this->view->assign('siret', $this->siret);
|
||||
$siren = substr($this->siret, 0, 9);
|
||||
|
||||
$all = $request->getParam('get');
|
||||
if ($all == 'all') {
|
||||
$companyId = substr($this->siret,0,9);
|
||||
$this->view->assign('all', true);
|
||||
} else {
|
||||
$companyId = $this->siret;
|
||||
}
|
||||
|
||||
$filter = $request->getParam('filter');
|
||||
$this->view->assign('filter', $filter);
|
||||
|
||||
$ws = new WsScores();
|
||||
$result = $ws->getContactEt($siren);
|
||||
$result = $ws->getContactEt($companyId, $filter);
|
||||
|
||||
Zend_Registry::get('firebug')->info($result);
|
||||
|
||||
if ($result->nbReponses>0) {
|
||||
|
@ -220,6 +220,9 @@ class JuridiqueController extends Zend_Controller_Action
|
||||
*/
|
||||
public function infosregAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Informations Réglementées");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$request = $this->getRequest();
|
||||
$idAnn = $request->getParam('idann', false);
|
||||
$siren = substr($this->siret, 0,9);
|
||||
@ -232,7 +235,7 @@ class JuridiqueController extends Zend_Controller_Action
|
||||
} else {
|
||||
$infos = $ws->getInfosReg($siren);
|
||||
}
|
||||
if ($infos === false) $this->_forward('soap', 'error');
|
||||
if ($infos === false) $this->forward('soap', 'error');
|
||||
|
||||
if (is_string($infos)){
|
||||
$this->view->assign('message', $infos);
|
||||
@ -267,6 +270,9 @@ class JuridiqueController extends Zend_Controller_Action
|
||||
*/
|
||||
public function competencesAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Compétences Territoriales");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$request = $this->getRequest();
|
||||
$type = $request->getParam('type', '');
|
||||
$siren = substr($this->siret,0,9);
|
||||
@ -310,6 +316,9 @@ class JuridiqueController extends Zend_Controller_Action
|
||||
*/
|
||||
public function conventionsAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Conventions Collectives");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$siren = substr($this->siret, 0,9);
|
||||
$session = new Scores_Session_Entreprise($this->siret, $this->id);
|
||||
$this->view->assign('siren', $siren);
|
||||
@ -328,6 +337,9 @@ class JuridiqueController extends Zend_Controller_Action
|
||||
*/
|
||||
public function marquesAction()
|
||||
{
|
||||
$this->view->headTitle()->prepend("Marques Déposées");
|
||||
$this->view->headTitle()->prepend("Siret ".$this->siret);
|
||||
|
||||
$this->view->headScript()->appendFile('/themes/default/scripts/marques.js', 'text/javascript');
|
||||
|
||||
$request = $this->getRequest();
|
||||
|
@ -204,7 +204,7 @@ class MandataireController extends Zend_Controller_Action
|
||||
$tabEntrep = $ws->getIdentite($siren);
|
||||
if ($tabEntrep!==false){
|
||||
/**
|
||||
* Utiliser la raison sociale la plus longue
|
||||
* Utiliser la dénomination sociale la plus longue
|
||||
* Nom, Nom2, NomLong
|
||||
*/
|
||||
if (!empty($tabEntrep->NomLong) && strlen($tabEntrep->NomLong)>strlen($tabEntrep->Nom)){
|
||||
|
@ -972,15 +972,6 @@ class PiecesController extends Zend_Controller_Action
|
||||
|
||||
break;
|
||||
|
||||
// Téléchargement du fichier sur le serveur
|
||||
case 'fichier':
|
||||
$ws->setLog('greffe_actes', $siren, 0, $ref);
|
||||
$info = unserialize(urldecode($info));
|
||||
$href = '/fichier/pdf/acte-'.$siren.'-'.$ref.'.pdf';
|
||||
echo '<br/><a href="'.$href.'" target="_blank">Ouvrir le fichier '.$info['type_lib'].' </a>';
|
||||
exit;
|
||||
break;
|
||||
|
||||
//Commande courrier infogreffe
|
||||
case 'C':
|
||||
|
||||
@ -1019,16 +1010,31 @@ class PiecesController extends Zend_Controller_Action
|
||||
|
||||
break;
|
||||
|
||||
// Téléchargement du fichier sur le serveur
|
||||
case 'fichier':
|
||||
$ws->setLog('greffe_actes', $siren, 0, $ref);
|
||||
$info = unserialize(urldecode($info));
|
||||
$href = '/fichier/pdf/acte-'.$siren.'-'.$ref.'.pdf';
|
||||
echo '<br/><a href="'.$href.'" target="_blank">Ouvrir le fichier '.$info['type_lib'].' </a>';
|
||||
exit;
|
||||
break;
|
||||
|
||||
//Commande fichier infogreffe
|
||||
case 'T':
|
||||
|
||||
//Vérification que le fichier ne soit pas en erreur
|
||||
//@todo : Suppression du mode fichier
|
||||
/**
|
||||
* Vérifier que le fichier existe dans notre référentiel
|
||||
*/
|
||||
|
||||
/**
|
||||
* Vérification que le fichier ne soit pas en erreur
|
||||
*/
|
||||
$erreur = new Application_Model_CommandesErreur();
|
||||
$sql = $erreur->select()
|
||||
->from($erreur, array('url', 'dateCommande'))
|
||||
->where("siren='$siren' AND type='acte' AND ref='$ref' AND erreur!=''");
|
||||
$repErreur = $erreur->fetchAll($sql)->toArray();
|
||||
|
||||
if (count($repErreur)>0){
|
||||
//Téléchagement
|
||||
$fichier = 'acte-'.$siren.'-'.$ref.'.pdf';
|
||||
@ -1045,7 +1051,11 @@ class PiecesController extends Zend_Controller_Action
|
||||
echo '<br/>Impossible de télécharger le fichier auprès de notre partenaire.';
|
||||
}
|
||||
|
||||
} else {
|
||||
}
|
||||
/**
|
||||
* Get the file at partner InfoGreffe
|
||||
*/
|
||||
else {
|
||||
|
||||
$infogreffe = new Infogreffe();
|
||||
$reponse = $infogreffe->getGreffeActes($siren, $vecteur, $ref);
|
||||
|
@ -17,7 +17,7 @@ class RechercheController extends Zend_Controller_Action
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
$this->_forward('entreprise');
|
||||
$this->forward('entreprise');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -26,7 +26,7 @@ class RechercheController extends Zend_Controller_Action
|
||||
public function entrepriseAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
$this->view->headTitle()->append('Recherche Entreprise');
|
||||
$this->view->headTitle()->prepend('Recherche Entreprise');
|
||||
$form = new Application_Form_RechercheEntreprise();
|
||||
if ( $request->isPost() || $request->isGet() ){
|
||||
$form->populate($request->getParams());
|
||||
@ -45,7 +45,7 @@ class RechercheController extends Zend_Controller_Action
|
||||
public function dirigeantAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
$this->view->headTitle()->append('Recherche Dirigeant');
|
||||
$this->view->headTitle()->prepend('Recherche Dirigeant');
|
||||
$form = new Application_Form_RechercheDirigeant();
|
||||
if ( $request->isPost() || $request->isGet() ){
|
||||
$form->populate($request->getParams());
|
||||
@ -59,7 +59,7 @@ class RechercheController extends Zend_Controller_Action
|
||||
public function worldcheckAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
$this->view->headTitle()->append('Recherche WorldCheck');
|
||||
$this->view->headTitle()->prepend('Recherche WorldCheck');
|
||||
$form = new Application_Form_RechercheWorldcheck();
|
||||
if ( $request->isPost() || $request->isGet() ){
|
||||
$form->populate($request->getParams());
|
||||
@ -87,7 +87,7 @@ class RechercheController extends Zend_Controller_Action
|
||||
*/
|
||||
public function annonceAction()
|
||||
{
|
||||
$this->view->headTitle()->append('Recherche Annonce');
|
||||
$this->view->headTitle()->prepend('Recherche Annonce');
|
||||
|
||||
$session = new Scores_Session_Recherche();
|
||||
$recherche = $session->item(0);
|
||||
@ -604,6 +604,8 @@ class RechercheController extends Zend_Controller_Action
|
||||
$item['siret'] = $etab->Siren.$etab->Nic;
|
||||
$item['InfoSiret'] = $etab->Siren.' '.$etab->Nic;
|
||||
$item['InfoNom'] = $etab->Nom;
|
||||
$item['source'] = $etab->Source;
|
||||
$item['sourceId'] = $etab->SourceId;
|
||||
|
||||
$nomDetail = '';
|
||||
if ($etab->Nom2<>'' || $etab->Enseigne<>'' || $etab->Sigle<>'') {
|
||||
|
@ -1363,6 +1363,7 @@ class SaisieController extends Zend_Controller_Action
|
||||
'T' => 'TUP',
|
||||
'L' => 'Tutelle',
|
||||
'E' => 'Franchise',
|
||||
'M' => 'Membre',
|
||||
);
|
||||
$this->view->assign('detention', $detention);
|
||||
|
||||
@ -1634,9 +1635,10 @@ class SaisieController extends Zend_Controller_Action
|
||||
|
||||
$infos = array(
|
||||
'siren' => $params['siren'],
|
||||
'actif' => 1,
|
||||
'actif' => (array_key_exists('actif', $params) && $params['actif']==0 ) ? 0 : 1,
|
||||
'PpPm' => $params['PpPm'],
|
||||
'RS' => strtoupper(trim($params['RS'])),
|
||||
'sigle' => empty($params['sigle']) ? '' : trim($params['sigle']),
|
||||
'civilite' => $params['civilite'],
|
||||
'nom' => strtoupper(trim($params['nom'])),
|
||||
'prenom' => ucfirst(trim($params['prenom'])),
|
||||
@ -1653,7 +1655,6 @@ class SaisieController extends Zend_Controller_Action
|
||||
'adresse_cp' => empty($params['adresse_cp']) ? '' : trim($params['adresse_cp']),
|
||||
'adresse_ville' => empty($params['adresse_ville']) ? '' : trim($params['adresse_ville']),
|
||||
'adresse_pays' => empty($params['adresse_pays']) ? '' : trim($params['adresse_pays']),
|
||||
'actif' => $params['actif'],
|
||||
'tel' => empty($params['tel']) ? '' : trim($params['tel']),
|
||||
'fax' => empty($params['fax']) ? '' : trim($params['fax']),
|
||||
'web' => empty($params['web']) ? '' : trim($params['web']),
|
||||
@ -1998,6 +1999,7 @@ class SaisieController extends Zend_Controller_Action
|
||||
Zend_Registry::get('firebug')->info($result);
|
||||
|
||||
$this->view->assign('nom',$result->Nom);
|
||||
$this->view->assign('sigle',$result->sigle);
|
||||
$this->view->assign('adresse_num',$result->AdresseNum);
|
||||
$this->view->assign('adresse_btq',$result->AdresseBtq);
|
||||
$this->view->assign('adresse_codvoie',$result->AdresseVoie);
|
||||
@ -2135,6 +2137,47 @@ class SaisieController extends Zend_Controller_Action
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function liendeleteAction()
|
||||
{
|
||||
$this->_helper->layout()->disableLayout();
|
||||
|
||||
$request = $this->getRequest();
|
||||
$id = $request->getParam('idFiche', null);
|
||||
$infos = array ('delete' => '1');
|
||||
|
||||
$ws = new WsScores();
|
||||
|
||||
if ($id===null) {
|
||||
$siren = $request->getParam('siren');
|
||||
|
||||
$result = $ws->searchLienRef($siren, 'siren');
|
||||
if (count($result->item)>0) {
|
||||
foreach ($result->item as $item) {
|
||||
$id = $item->id;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( $request->isPost() ) {
|
||||
if ($id == null) {
|
||||
$message = 'Fiche n\'est pas trouvée';
|
||||
} else {
|
||||
$checkLiens = $ws->getLiensById($id);
|
||||
if ($checkLiens->actionnaires->item || $checkLiens->participations->item || $checkLiens->directions->item) {
|
||||
$message = 'Presence des liens';
|
||||
} else {
|
||||
$result = $ws->setLienRef(json_encode($infos), $id);
|
||||
$message = ($result == 1)?'Fiche supprimée':'Erreur de suppression';
|
||||
}
|
||||
Zend_Registry::get('firebug')->info($checkLiens->participations->item);
|
||||
$this->view->assign('message', $message);
|
||||
}
|
||||
} else {
|
||||
$this->view->assign('id', $id);
|
||||
}
|
||||
}
|
||||
|
||||
public function scorecutoffAction()
|
||||
{
|
||||
@ -2227,7 +2270,8 @@ class SaisieController extends Zend_Controller_Action
|
||||
$sql->where("code LIKE '".$cpVille."%'");
|
||||
} else {
|
||||
$sql->where("libelle LIKE '%".$cpVille."%'");
|
||||
}
|
||||
}
|
||||
$sql->limit(20);
|
||||
$rows = $city->fetchAll($sql);
|
||||
if ( count($rows)>0 ) {
|
||||
foreach ($rows as $item) {
|
||||
@ -2237,8 +2281,202 @@ class SaisieController extends Zend_Controller_Action
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$this->view->assign('output', $output);
|
||||
}
|
||||
|
||||
/**
|
||||
* Edit contact information
|
||||
*/
|
||||
public function contactAction()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
if ( $request->isXmlHttpRequest() ) {
|
||||
$this->_helper->layout()->disableLayout();
|
||||
if ( $request->isPost() ) {
|
||||
|
||||
$this->view->assign('post', true);
|
||||
|
||||
$message = '';
|
||||
$mode = $request->getParam('mode');
|
||||
if( in_array($mode, array('create', 'edit')) ) {
|
||||
$params = $request->getParams();
|
||||
// check values
|
||||
$paramlist = array(
|
||||
'siret' => 'SIRET',
|
||||
'type' => 'Type',
|
||||
'value' => 'Valeur',
|
||||
);
|
||||
|
||||
foreach ($paramlist as $item => $val) {
|
||||
if (!isset($params[$item])) {
|
||||
$message .= "Valeur $val vide !<br/>";
|
||||
}
|
||||
}
|
||||
// end checking values
|
||||
|
||||
if ($message == '') {
|
||||
//setContactEt
|
||||
$ws = new WsScores();
|
||||
$result = $ws->setSaisieContactEt($siret, $type, $value, $info);
|
||||
|
||||
if ( is_string($result) ) {
|
||||
$this->view->assign('msg', $result);
|
||||
}
|
||||
|
||||
} else {
|
||||
$this->view->assign('msg', $message);
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
$ws = new WsScores();
|
||||
$result = $ws->delSaisieContactEt($id);
|
||||
if ( is_string($result) ) {
|
||||
$this->view->assign('msg', $result);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
$mode = $request->getParam('mode');
|
||||
$id = $request->getParam('id');
|
||||
|
||||
if ($mode=='delete') {
|
||||
|
||||
$this->view->assign('mode', 'delete');
|
||||
|
||||
} else {
|
||||
|
||||
if ( $id !== null ) {
|
||||
$ws = new WsScores();
|
||||
$result = $ws->getSaisieContactEt($id);
|
||||
$data = json_decode($result);
|
||||
Zend_Registry::get('firebug')->info($data);
|
||||
$this->view->assign('id', $data->id);
|
||||
$this->view->assign('siret', str_pad($data->siren,9,'0',STR_PAD_LEFT).str_pad($data->nic,5,'0',STR_PAD_LEFT));
|
||||
$this->view->assign('type', $data->typeTel);
|
||||
if ($data->typeTel=='tel' || $data->typeTel=='fax' ) {
|
||||
$this->view->assign('value', str_pad($data->telephone,10,'0',STR_PAD_LEFT));
|
||||
$this->view->assign('info', $data->infoTel);
|
||||
} else {
|
||||
$this->view->assign('value', $data->infoTel);
|
||||
}
|
||||
|
||||
} else {
|
||||
$siret = $request->getParam('siret');
|
||||
$this->view->assign('siret', $siret);
|
||||
}
|
||||
|
||||
$this->view->telinfo = array(
|
||||
"accueil",
|
||||
"achats",
|
||||
"administratif",
|
||||
"affrètement",
|
||||
"agence",
|
||||
"agence commerciale",
|
||||
"agence industries",
|
||||
"atelier(s)",
|
||||
"bureau",
|
||||
"bureau d'étude",
|
||||
"centrale à béton",
|
||||
"centre de formation",
|
||||
"chef d'établissement",
|
||||
"comité d’établissement",
|
||||
"comité d'entreprise",
|
||||
"conseil",
|
||||
"conseil financier",
|
||||
"conseil immobilier",
|
||||
"construction",
|
||||
"coordination",
|
||||
"cuisine",
|
||||
"cuisine centrale",
|
||||
"déchetterie",
|
||||
"délégation départementale",
|
||||
"délégation régionale",
|
||||
"dépôt",
|
||||
"direction",
|
||||
"direction commerciale",
|
||||
"direction de l'environnement",
|
||||
"direction des ressources humaines",
|
||||
"direction financière",
|
||||
"direction générale",
|
||||
"direction logistique",
|
||||
"direction régionale",
|
||||
"direction technique",
|
||||
"direction usine",
|
||||
"distribution",
|
||||
"division surveillance",
|
||||
"douane",
|
||||
"entrepôt(s)",
|
||||
"facturation",
|
||||
"fournitures industrielles",
|
||||
"gardien",
|
||||
"gestion",
|
||||
"industrie",
|
||||
"inspection technique",
|
||||
"laboratoire",
|
||||
"local entretien",
|
||||
"local syndical",
|
||||
"magasin",
|
||||
"matériaux",
|
||||
"menuiserie",
|
||||
"négoce",
|
||||
"parking",
|
||||
"pièces détachées",
|
||||
"publicité",
|
||||
"rédaction",
|
||||
"répondeur",
|
||||
"renseignements",
|
||||
"salle d'exposition",
|
||||
"secrétariat",
|
||||
"secrétariat de direction",
|
||||
"service après vente/SAV",
|
||||
"service clients",
|
||||
"service commandes",
|
||||
"service commercial",
|
||||
"service commercial export",
|
||||
"service comptabilité",
|
||||
"service comptabilité fournisseurs",
|
||||
"service courrier",
|
||||
"service dépannage",
|
||||
"service entreprises",
|
||||
"service entretien",
|
||||
"service expéditions",
|
||||
"service exploitation",
|
||||
"service export",
|
||||
"service financier",
|
||||
"service formation",
|
||||
"service fournisseurs",
|
||||
"service import",
|
||||
"service informatique",
|
||||
"service international",
|
||||
"service locations",
|
||||
"service logistique",
|
||||
"service maintenance",
|
||||
"service maritime",
|
||||
"service production",
|
||||
"service qualité",
|
||||
"service technique",
|
||||
"service terrestre",
|
||||
"services généraux",
|
||||
"siège",
|
||||
"standard",
|
||||
"standard général",
|
||||
"standard usine",
|
||||
"syndicat",
|
||||
"transitaire",
|
||||
"transports",
|
||||
"travaux",
|
||||
"unité de production",
|
||||
"usine",
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -279,7 +279,7 @@ class SurveillanceController extends Zend_Controller_Action
|
||||
$this->view->assign('triMode', $triMode);
|
||||
|
||||
$q = $request->getParam('q', null);
|
||||
if ( $q == 'Siren, Référence, Raison Sociale' ) { $q = null; }
|
||||
if ( $q == 'Siren, Référence, Dénomination Sociale' ) { $q = null; }
|
||||
$this->view->assign('q', $q);
|
||||
|
||||
$detail = true;
|
||||
@ -405,7 +405,7 @@ class SurveillanceController extends Zend_Controller_Action
|
||||
$this->view->assign('ref', $ref);
|
||||
|
||||
$rs = $request->getParam('rs', null);
|
||||
if ( $rs == 'Raison Sociale' ) { $rs = null; }
|
||||
if ( $rs == 'Dénomination Sociale' ) { $rs = null; }
|
||||
$this->view->assign('rs', $rs);
|
||||
|
||||
$tri = $request->getParam('tri', 'siren');
|
||||
|
@ -614,7 +614,7 @@ class UserController extends Zend_Controller_Action
|
||||
$mailbody .= "<tr bgcolor='#eeeeee'><td><strong>Prénom:</strong></td><td>".$params['prenom']."</td></tr>";
|
||||
$mailbody .= "<tr><td><strong>Fonction:</strong></td><td>".$params['fonction']."</td></tr>";
|
||||
$mailbody .= "<tr bgcolor='#eeeeee'><td><strong>Service:</strong></td><td>".$params['service']."</td></tr>";
|
||||
$mailbody .= "<tr><td><strong>Raison Sociale:</strong></td><td>".$params['rsociale']."</td></tr></table>";
|
||||
$mailbody .= "<tr><td><strong>Dénomination Sociale:</strong></td><td>".$params['rsociale']."</td></tr></table>";
|
||||
$mailbody .= "<p>Si les informations fournies ne permettent pas d'identifier correctement l'utilisateur, ";
|
||||
$mailbody .= "merci d'émettre un message sur le mail communiquer en précisant que \"Les éléments confiés ne permettent pas d'identifier l'utilisateur ";
|
||||
$mailbody .= "et par conséquence de vous délivrer les codes d'accès demandés\".<br />";
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,31 +1,4 @@
|
||||
<?php
|
||||
//General
|
||||
$this->translate('Scores & Decisions');
|
||||
$this->translate('Page');
|
||||
$this->translate('Dernière mise à jour le');
|
||||
$this->translate('Oui');
|
||||
$this->translate('Non');
|
||||
$this->translate('Edition');
|
||||
$this->translate('Mettre sous surveillance');
|
||||
$this->translate('Néant');
|
||||
$this->translate('Aucune information');
|
||||
$this->translate('Mois');
|
||||
|
||||
//Bouttons
|
||||
$this->translate('Recherche');
|
||||
$this->translate('Effacer');
|
||||
$this->translate('Ok');
|
||||
$this->translate('Sauver');
|
||||
$this->translate('ici');
|
||||
$this->translate('Modifier le client');
|
||||
$this->translate('Valider');
|
||||
|
||||
//Header
|
||||
|
||||
//Footer
|
||||
$this->translate('Mentions légales');
|
||||
$this->translate('Scores & Decisions SAS - Tous droits réservés - ');
|
||||
|
||||
//Menu
|
||||
$this->translate('RECHERCHES');
|
||||
$this->translate('Rechercher une entreprise');
|
||||
@ -92,868 +65,4 @@ $this->translate('GESTION S&D');
|
||||
$this->translate('Gestion');
|
||||
$this->translate('Saisie / Edition');
|
||||
$this->translate('Saisie Fiche Etrangère');
|
||||
|
||||
//Rechercher une entreprise
|
||||
$this->translate('RECHERCHE ENTREPRISE');
|
||||
$this->translate('SIREN');
|
||||
$this->translate('RAISON SOCIALE / ENSEIGNE / SIGLE');
|
||||
$this->translate('N° & Voie');
|
||||
$this->translate('CP OU DÉP. / VILLE');
|
||||
$this->translate('TÉL / FAX');
|
||||
$this->translate('NAF');
|
||||
$this->translate('Forme Juridique');
|
||||
$this->translate('Pays');
|
||||
$this->translate('Recherche par SIREN, SIRET, N° TVA intracommunautaire, N° RC, R.N.A., ISIN');
|
||||
$this->translate('Accès direct à la fiche identité (Racourci clavier : Maintenir CTRL puis ENTREE)');
|
||||
$this->translate('France');
|
||||
$this->translate('Belgique');
|
||||
$this->translate('Espagne');
|
||||
$this->translate('Royaume-Uni');
|
||||
$this->translate('Pays-Bas');
|
||||
|
||||
//Rechercher par dirigeant
|
||||
$this->translate('RECHERCHE DIRIGEANT');
|
||||
$this->translate('PRENOM');
|
||||
$this->translate('NOM');
|
||||
$this->translate('DATE NAISSANCE');
|
||||
$this->translate('CP OU DEP. / VILLE DE NAISSANCE');
|
||||
|
||||
//Rechercher une annonce
|
||||
$this->translate('Rechercher une annonce');
|
||||
$this->translate('Source');
|
||||
$this->translate('Bodacc');
|
||||
$this->translate('Historique jusqu\'à');
|
||||
$this->translate('Année ou Date de parution');
|
||||
$this->translate('Numéro de parution');
|
||||
$this->translate('Page');
|
||||
$this->translate('Numéro d\'annonce');
|
||||
$this->translate('BODACC / BORC');
|
||||
$this->translate('JO Association');
|
||||
$this->translate('BALO');
|
||||
$this->translate('Désélection');
|
||||
|
||||
//Rechercher par actionnaire
|
||||
$this->translate('RECHERCHE PAR ACTIONNAIRE');
|
||||
$this->translate('SIREN');
|
||||
$this->translate('RAISON SOCIAL / NOM');
|
||||
$this->translate('CP OU DEP./VILLE');
|
||||
$this->translate('PAYS');
|
||||
$this->translate('PAR ACTION, DE');
|
||||
$this->translate('A');
|
||||
|
||||
//Dernière recherche
|
||||
$this->translate('réponses avec les critères');
|
||||
$this->translate('résultats affichés.');
|
||||
$this->translate('Exporter les résultats de la recherche en CSV.');
|
||||
$this->translate('Si aucun résultat ne correspond à votre recherche.');
|
||||
$this->translate('Cliquez-ici.');
|
||||
$this->translate('Afficher tous les résultats');
|
||||
$this->translate('Afficher uniquement les actifs');
|
||||
$this->translate('Afficher uniquement les inactifs');
|
||||
|
||||
//Liste des dernières recherches
|
||||
$this->translate('LISTE DE VOS DERNIÈRES RECHERCHE');
|
||||
$this->translate('RECHERCHE ENTREPRISE');
|
||||
$this->translate('Lancer la recherche');
|
||||
$this->translate('Afficher le formulaire');
|
||||
|
||||
//Fiche d'identité
|
||||
$this->translate('FICHE D\'IDENTITÉ');
|
||||
$this->translate('Numéro identifiant Siret');
|
||||
$this->translate('Numéro de TVA Intracom.');
|
||||
$this->translate('Numéro R.C.');
|
||||
$this->translate('Etablissement actif');
|
||||
$this->translate('Situation au répertoire SIRENE');
|
||||
$this->translate('Situation juridique Actif au RCS');
|
||||
$this->translate('Raison sociale & Coordonnées');
|
||||
$this->translate('Raison Sociale');
|
||||
$this->translate('Forme juridique');
|
||||
$this->translate('Date d\'immatriculation');
|
||||
$this->translate('Création de l\'entreprise');
|
||||
$this->translate('Création de l\'établissement');
|
||||
$this->translate('Adresse');
|
||||
$this->translate('Téléphone');
|
||||
$this->translate('Fax');
|
||||
$this->translate('Site Internet');
|
||||
$this->translate('Courriel');
|
||||
$this->translate('Activité(s) & Chiffre d\'affaires');
|
||||
$this->translate('Activité de l\'entreprise');
|
||||
$this->translate('Activité de l\'établissement');
|
||||
$this->translate('Anciens codes NAF');
|
||||
$this->translate('Codes NACE');
|
||||
$this->translate('Type d\'exploitation');
|
||||
$this->translate('Nombre d\'établissements actifs');
|
||||
$this->translate('Capital');
|
||||
$this->translate('Chiffre d\'affaires estimé');
|
||||
$this->translate('Principaux Dirigeants');
|
||||
$this->translate('Effectif de l\'entreprise');
|
||||
$this->translate('Localisation géographique');
|
||||
$this->translate('Information géographique :');
|
||||
$this->translate('Latitude :');
|
||||
$this->translate('Longitude :');
|
||||
$this->translate('Afficher l\'adresse sur Google Map');
|
||||
$this->translate('Code commune / Rivoli :');
|
||||
$this->translate('Iris :');
|
||||
$this->translate('Code :');
|
||||
$this->translate('Libellé :');
|
||||
$this->translate('Information presse (Source Google News ©)');
|
||||
$this->translate('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".');
|
||||
|
||||
//Fiche Procédure Collective
|
||||
$this->translate('FICHE PROCÉDURE COLLECTIVES');
|
||||
$this->translate('Numéro identifiant Siret');
|
||||
$this->translate('Numéro de TVA Intracom.');
|
||||
$this->translate('Code ISIN');
|
||||
$this->translate('Capitalisation');
|
||||
$this->translate('Numéro R.C.');
|
||||
$this->translate('Etablissement actif');
|
||||
$this->translate('Raison sociale & Coordonnées');
|
||||
$this->translate('Raison Sociale');
|
||||
$this->translate('Forme juridique');
|
||||
$this->translate('Composition et répartition du capital social');
|
||||
$this->translate('Information à vérifier dans les derniers statuts');
|
||||
$this->translate('Diminution de capital');
|
||||
$this->translate('Augmentation de capital');
|
||||
$this->translate('publié au');
|
||||
$this->translate('Organes de la procédure');
|
||||
$this->translate('Types de procédure');
|
||||
$this->translate('Potentiel de récupération et réalisation d\'actifs');
|
||||
$this->translate('Dépôt des comptes annuels et des comptes consolidés');
|
||||
$this->translate('Dépôt des comptes annuels');
|
||||
$this->translate('Dépôt des comptes consolidés');
|
||||
$this->translate('Jugements de clôture');
|
||||
$this->translate('Autres événements');
|
||||
$this->translate('Procédure d\'insolvabilité européene');
|
||||
|
||||
//Liste des établissements
|
||||
$this->translate('LISTE DES ÉTABLISSEMNTS');
|
||||
$this->translate('Actif/Inactif');
|
||||
$this->translate('Tous');
|
||||
$this->translate('Actif');
|
||||
$this->translate('Inactif');
|
||||
$this->translate('Établissements');
|
||||
$this->translate('siège actif');
|
||||
$this->translate('établ. inactif');
|
||||
$this->translate('L\'entreprise à 1 établissements actifs et 1 établissements radiés');
|
||||
|
||||
//Liens inter-entreprises
|
||||
$this->translate('LIENS INTER-ENTREPRISES');
|
||||
$this->translate('Organigramme du groupe');
|
||||
$this->translate('Documents');
|
||||
$this->translate('Aucun document');
|
||||
$this->translate('Lier un document');
|
||||
$this->translate('organigramme du groupe');
|
||||
$this->translate('Editer la fiche');
|
||||
$this->translate('Actionnariat');
|
||||
$this->translate('Ajouter un actionnaire');
|
||||
$this->translate('PUBLIC / BOURSE');
|
||||
$this->translate('FFP');
|
||||
$this->translate('ETABLISSEMENTS %s FRERES');
|
||||
$this->translate('FAMILLE %s');
|
||||
$this->translate('Participations');
|
||||
$this->translate('Ajouter une participation');
|
||||
$this->translate('Fonctions de directions');
|
||||
$this->translate('Administrateur');
|
||||
$this->translate('Chargement...');
|
||||
$this->translate('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é');
|
||||
|
||||
//Informations Groupe
|
||||
$this->translate('Informations Groupe');
|
||||
$this->translate('Siren');
|
||||
$this->translate('TVA');
|
||||
$this->translate('RCS PARIS');
|
||||
$this->translate('ISIN');
|
||||
$this->translate('Nom du groupe');
|
||||
$this->translate('Sigle');
|
||||
$this->translate('Adresse');
|
||||
$this->translate('Code Commune');
|
||||
$this->translate('Tél.');
|
||||
$this->translate('Fax');
|
||||
$this->translate('Site Web');
|
||||
$this->translate('Année de création');
|
||||
$this->translate('Grand Groupe Français');
|
||||
$this->translate('Nombre d\'entreprises Française du groupe');
|
||||
$this->translate('Effectif salarié du groupe en France');
|
||||
$this->translate('CA France');
|
||||
$this->translate('CA Export');
|
||||
$this->translate('Organigramme du groupe');
|
||||
$this->translate('Secteurs');
|
||||
$this->translate('Nb Entrep.');
|
||||
$this->translate('CA');
|
||||
$this->translate('Effectif');
|
||||
|
||||
//Modifications INSEE
|
||||
$this->translate('LISTE DES ÉVÉNEMENTS');
|
||||
$this->translate('Mettre sous surveillance Insee');
|
||||
$this->translate('Événements INSEE');
|
||||
|
||||
//Liste des dirigeants
|
||||
$this->translate('DIRIGEANTS');
|
||||
$this->translate('Mettre sous surveillance Dirigeants');
|
||||
$this->translate('Consulter la liste des dirigeants opérationnels');
|
||||
$this->translate('Président du conseil de surveillance');
|
||||
$this->translate('Président du directoire');
|
||||
$this->translate('Commissaire aux comptes suppléant');
|
||||
$this->translate('Commissaire aux comptes titulaire');
|
||||
$this->translate('Liste des dirigeants actifs');
|
||||
|
||||
//Historique des dirigeants
|
||||
$this->translate('Historique des dirigeants');
|
||||
$this->translate('Président du directoire');
|
||||
$this->translate('Membre du directoire');
|
||||
$this->translate('Membre du conseil de surveillance');
|
||||
$this->translate('Commissaire aux comptes suppléant');
|
||||
$this->translate('Commissaire aux comptes titulaire');
|
||||
|
||||
//Synthèse
|
||||
|
||||
//Bilans, Compte de résultat
|
||||
|
||||
//Ratios
|
||||
|
||||
//Flux de trésorerie
|
||||
$this->translate('Flux de Trésorerie');
|
||||
$this->translate('Type de bilans');
|
||||
$this->translate('Réel normal ou Simplifié');
|
||||
$this->translate('Consolidé');
|
||||
$this->translate('mois');
|
||||
$this->translate('ACTIVITE');
|
||||
$this->translate('INVESTISSEMENT');
|
||||
$this->translate('FINANCEMENT');
|
||||
$this->translate('VARIATION DE TRESORERIE D\'ACTIF');
|
||||
$this->translate('Chiffre d\'affaires HT & autres produits d\'exploitation');
|
||||
$this->translate('Variation des creances clients & autres creances d\'exploitation');
|
||||
$this->translate('Recettes d\'exploitation');
|
||||
$this->translate('Achats & autres charges d\'exploitation');
|
||||
$this->translate('Variation des dettes fournisseurs & autres dettes d\'exploitation');
|
||||
$this->translate('Depenses d\'exploitation');
|
||||
$this->translate('Excedent de Tresorerie d\'Exploitation');
|
||||
$this->translate('Flux lies aux operations hors exploitation');
|
||||
$this->translate('Interets bancaires');
|
||||
$this->translate('Impots sur les benefices');
|
||||
$this->translate('Flux affectes a la participation des salaries');
|
||||
$this->translate('Dividendes verses');
|
||||
$this->translate('Flux de tresorerie interne');
|
||||
$this->translate('Investissements d\'exploitation hors production immobilisee');
|
||||
$this->translate('Acquisition de participations & autres titres immobilises');
|
||||
$this->translate('Variation des autres actifs immobilises hors charges a repartir');
|
||||
$this->translate('Subventions d\'investissement recues');
|
||||
$this->translate('Variation des dettes sur immobilisations');
|
||||
$this->translate('Encaissements sur cessions d\'immobilisations');
|
||||
$this->translate('Flux d\'investissement');
|
||||
$this->translate('Augmentation-Reduction de capital');
|
||||
$this->translate('Variation des creances sur capital appele non verse');
|
||||
$this->translate('Flux du capital');
|
||||
$this->translate('Variation des emprunts');
|
||||
$this->translate('Variation de la tresorerie du passif');
|
||||
$this->translate('Flux du financement');
|
||||
$this->translate('Variation du disponible');
|
||||
$this->translate('Variation des valeurs mobilieres de placement');
|
||||
$this->translate('Variation de la tresorerie d\'actif');
|
||||
|
||||
//Liasse fiscale
|
||||
$this->translate('Valeurs exprimées en');
|
||||
$this->translate('Millesime');
|
||||
$this->translate('Corriger le bilan sélectionné');
|
||||
$this->translate('ou Saisir une nouvelle liasse au format');
|
||||
$this->translate('Normal');
|
||||
$this->translate('Consolidé');
|
||||
$this->translate('Simplifié');
|
||||
$this->translate('Exporter en fichier Excel.');
|
||||
$this->translate('Vous possèdez un bilan plus récent');
|
||||
$this->translate('Mettre sous surveillance Bilans');
|
||||
$this->translate('Actif');
|
||||
$this->translate('Passif');
|
||||
$this->translate('Compte de résultat');
|
||||
$this->translate('Valeurs exprimées en K€');
|
||||
$this->translate('Capital souscrit non appelé');
|
||||
$this->translate('Frais d\'établissement');
|
||||
$this->translate('Frais de rech. et dév.');
|
||||
$this->translate('Immobilisations incorporelles');
|
||||
$this->translate('Concessions, brevets, ...');
|
||||
$this->translate('Fond commercial');
|
||||
$this->translate('Autres immo. incorporelles');
|
||||
$this->translate('Avances et acomptes sur immo. incorp.');
|
||||
$this->translate('Terrains');
|
||||
$this->translate('Constructions');
|
||||
$this->translate('Instal. techniques, ...');
|
||||
$this->translate('Autres immo. corp.');
|
||||
$this->translate('Immobilisations corporelles');
|
||||
$this->translate('Immo. en cours');
|
||||
$this->translate('Avances et acomptes');
|
||||
$this->translate('Participations évaluées selon la méthode de mise en équivalence');
|
||||
$this->translate('Autres participations');
|
||||
$this->translate('Créances rattachées à des participations');
|
||||
$this->translate('Autres titres immobilisés');
|
||||
$this->translate('Immobilisations financières');
|
||||
$this->translate('Prêts');
|
||||
$this->translate('Autres immo. financières');
|
||||
$this->translate('Matières 1ère, approvisionnements');
|
||||
$this->translate('En cours de production de biens');
|
||||
$this->translate('En cours de production de services');
|
||||
$this->translate('Stocks');
|
||||
$this->translate('ACTIF CIRCULANT');
|
||||
$this->translate('Produits intermédiaires et finis');
|
||||
$this->translate('Marchandises');
|
||||
$this->translate('Avances et accomp. versés sur command.');
|
||||
$this->translate('Clients et comptes rattachés');
|
||||
$this->translate('Autres créances');
|
||||
$this->translate('Créances');
|
||||
$this->translate('Capital souscrit et appelé, non versé');
|
||||
$this->translate('Valeurs mobilières de placement (dont actions propres)');
|
||||
$this->translate('Disponibilités');
|
||||
$this->translate('Divers');
|
||||
$this->translate('REGULARISATIONS Charges constatées d\'avance');
|
||||
$this->translate('TOTAL');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
|
||||
//Bourse & Cotations
|
||||
$this->translate('INFORMATIONS BOURSIÈRES');
|
||||
$this->translate('Code Mnémo');
|
||||
$this->translate('Code Bloomberg');
|
||||
$this->translate('Code Datastream');
|
||||
$this->translate('Code Ric');
|
||||
$this->translate('Place de cotation');
|
||||
$this->translate('Marché');
|
||||
$this->translate('Nombre de titres');
|
||||
$this->translate('Éligible SRD / PEA');
|
||||
$this->translate('Logo');
|
||||
$this->translate('Coordonnées');
|
||||
$this->translate('Adresse');
|
||||
$this->translate('Date d\'introduction en bourse');
|
||||
$this->translate('Date dernière assemblée générale');
|
||||
$this->translate('Téléphone');
|
||||
$this->translate('Fax');
|
||||
$this->translate('Site Internet');
|
||||
$this->translate('Courriel');
|
||||
$this->translate('Activité(s)');
|
||||
$this->translate('Activité');
|
||||
$this->translate('Secteur');
|
||||
$this->translate('Dernier cours');
|
||||
$this->translate('Dernière cotation connue');
|
||||
$this->translate('Clôture');
|
||||
$this->translate('Ouverture');
|
||||
$this->translate('Plus haut');
|
||||
$this->translate('Plus Bas');
|
||||
$this->translate('Volume échangé');
|
||||
$this->translate('Capitalisation');
|
||||
$this->translate('Minimum historique');
|
||||
$this->translate('Maximum historique');
|
||||
$this->translate('Cours moyen');
|
||||
|
||||
//Relations bancaires
|
||||
$this->translate('RELATIONS BANCAIRES');
|
||||
$this->translate('Liste des relations bancaires');
|
||||
|
||||
//Annonces Légales
|
||||
|
||||
//Information Réglementée
|
||||
|
||||
//Compétences Territoriales
|
||||
$this->translate('Tribunaux');
|
||||
$this->translate('Administrateurs & Mandataires judiciaires');
|
||||
$this->translate('Huissiers de justice');
|
||||
$this->translate('Préfectures & Sous-préfectures');
|
||||
$this->translate('Centres de formalités des Entreprises (CCI, Greffes, Métiers, Artisanat, Agriculture, URSSAF, Impôts, etc...)');
|
||||
$this->translate('Journaux d\'Annonces Légales');
|
||||
|
||||
//Marques déposées
|
||||
$this->translate('PROPRIÉTÉ INTELLECTUELLE');
|
||||
$this->translate('Marque(s) déposée(s)');
|
||||
$this->translate('Dépôt');
|
||||
|
||||
//IndiScore
|
||||
$this->translate('INDISCORE');
|
||||
$this->translate('Définir un Cut-off');
|
||||
$this->translate('Mettre sous surveillance IndiScore');
|
||||
$this->translate('Saisir votre demande d\'avis credit personnalisé');
|
||||
$this->translate('Évaluation');
|
||||
$this->translate('L\'évaluation indiScore© est en partie basée sur les points notables suivants');
|
||||
$this->translate('Conformité légale :');
|
||||
$this->translate('L\'analyse de la conformité est correcte.');
|
||||
$this->translate('Dirigeance :');
|
||||
$this->translate('L\'étude de la dirigeance ne relève aucun problème.');
|
||||
$this->translate('Solvabilité :');
|
||||
$this->translate('L\'analyse de la solvabilité est Bonne');
|
||||
$this->translate('La situation financière de l\'entreprise ne peut être évaluée en détail car le dernier bilan disponible date de 2010.');
|
||||
$this->translate('Paiements');
|
||||
$this->translate('Depuis Mars 2013 : Aucune difficulté significative ne nous a été signalée Paiements à 30 jours maximum');
|
||||
$this->translate('Conclusion');
|
||||
$this->translate('Compte tenu des informations disponibles auprès des sources officielles Scores et Décisions présente la conclusion suivante :');
|
||||
$this->translate('LE SCORE EST DE 17 SUR 20 POINTS');
|
||||
$this->translate('La tendance de la note est Stable');
|
||||
$this->translate('L\'ENCOURS MAXIMUM CONSEILLÉ EST DE 500 K€');
|
||||
|
||||
//Rapport de synthèse
|
||||
$this->translate('RAPPORT DE SYNTHESE');
|
||||
$this->translate('Numéro R.C.');
|
||||
$this->translate('Etablissement actif');
|
||||
$this->translate('Situation au répertoire SIRENE');
|
||||
$this->translate('Raison sociale & Coordonnées');
|
||||
$this->translate('Forme juridique');
|
||||
$this->translate('Date d\'immatriculation');
|
||||
$this->translate('Création de l\'établissement');
|
||||
$this->translate('Activité(s) & Chiffre d\'affaires');
|
||||
$this->translate('Activité de l\'entreprise');
|
||||
$this->translate('Anciens codes NAF');
|
||||
$this->translate('Origine du fonds');
|
||||
$this->translate('Type d\'exploitation');
|
||||
$this->translate('Capital');
|
||||
$this->translate('Chiffre d\'affaires');
|
||||
$this->translate('Liste des dirigeants actifs');
|
||||
$this->translate('Actionnariat');
|
||||
$this->translate('Ajouter un actionnaire');
|
||||
$this->translate('Ajouter une participation');
|
||||
$this->translate('Fonctions de directions');
|
||||
$this->translate('Eléments financiers');
|
||||
$this->translate('Paiement');
|
||||
$this->translate('Depuis');
|
||||
$this->translate('Aucune difficulté significative ne nous a été signalée Paiements à %s jours maximum');
|
||||
$this->translate('Procédures collectives');
|
||||
$this->translate('Situation juridique');
|
||||
$this->translate('Aucune procédure enregistrée à ce jour par nos services.');
|
||||
$this->translate('Scores et encours');
|
||||
$this->translate('Score Afdcc 2');
|
||||
$this->translate('Score Z');
|
||||
$this->translate('IndiScore');
|
||||
$this->translate('Encours conseillé');
|
||||
$this->translate('Stable');
|
||||
|
||||
//Rapport complet
|
||||
|
||||
//Valorisation
|
||||
$this->translate('VALORISATION');
|
||||
$this->translate('SOCIÉTÉ');
|
||||
$this->translate('COMMENTAIRES');
|
||||
$this->translate('BILAN');
|
||||
$this->translate('Situation financière');
|
||||
$this->translate('Compte de Résultat');
|
||||
$this->translate('CONCLUSION');
|
||||
$this->translate('estimation haute');
|
||||
$this->translate('estimation basse');
|
||||
$this->translate('Réserves');
|
||||
$this->translate('L\'estimation finale devrait intégrer l\'ensemble des dettes à court, moyen et long termes exigibles au moment de la cession.');
|
||||
|
||||
//Enquête commerciale
|
||||
$this->translate('ENQUÊTE COMMERCIALE');
|
||||
$this->translate('Nos enquêtes commerciales sont réalisées par des analystes financiers.');
|
||||
$this->translate('Entreprise concernée');
|
||||
$this->translate('Téléphone / Fax');
|
||||
$this->translate('Autre téléphone');
|
||||
$this->translate('E-mail');
|
||||
$this->translate('Autre e-mail');
|
||||
$this->translate('Domiciliation bancaire');
|
||||
$this->translate('Encours demandé');
|
||||
$this->translate('Nombre d\'échéances');
|
||||
$this->translate('Avis de l\'assureur crédit');
|
||||
$this->translate('Favorable');
|
||||
$this->translate('Défavorable');
|
||||
$this->translate('Demandeur');
|
||||
$this->translate('Votre profil');
|
||||
$this->translate('Votre Identité');
|
||||
$this->translate('Votre Téléphone');
|
||||
$this->translate('Votre Fax');
|
||||
$this->translate('Votre E-mail');
|
||||
$this->translate('Votre Référence');
|
||||
$this->translate('Service Achats');
|
||||
$this->translate('Commerce');
|
||||
$this->translate('Recouvrement');
|
||||
$this->translate('Contentieux');
|
||||
$this->translate('Autre');
|
||||
$this->translate('Enquête');
|
||||
$this->translate('Type d\'enquête');
|
||||
$this->translate('Délais de livraison');
|
||||
$this->translate('Précisions sur la demande');
|
||||
$this->translate('Ancienneté de la relation');
|
||||
$this->translate('Impayées');
|
||||
$this->translate('Retard de paiement');
|
||||
$this->translate('Litiges techniques ou commerciaux');
|
||||
$this->translate('Observations ou questions spéciales');
|
||||
$this->translate('Envoyez');
|
||||
$this->translate('EXPRESS');
|
||||
$this->translate('DECISION');
|
||||
$this->translate('SECTEUR BTP');
|
||||
$this->translate('encours inférieur à');
|
||||
$this->translate('encours supérieur à');
|
||||
$this->translate('Choisissez...');
|
||||
$this->translate('Enquête sur un client (contrôl crédit)');
|
||||
$this->translate('Enquête sur un prospect (ouverture de compte)');
|
||||
$this->translate('Enquête sur un fournisseur stratégique');
|
||||
$this->translate('Enquête sur un fournisseur non stratégique');
|
||||
$this->translate('Autre type d\'enquête (Précisez...)');
|
||||
$this->translate('%s jours ou +');
|
||||
|
||||
//Commande de Pièces
|
||||
$this->translate('COMMANDES DE PIÈCES');
|
||||
$this->translate('EXTRAIT KBIS');
|
||||
$this->translate('Visualiser/Télécharger le kbis');
|
||||
$this->translate('Recevoir le kbis par email');
|
||||
$this->translate('Recevoir le kbis original par courrier');
|
||||
$this->translate('PRIVILÉGES & NANTISSEMENTS');
|
||||
$this->translate('Privilèges de la sécurité sociale et des régimes complémentaires et Trésor Public
|
||||
(avec surveillance, retour sous 48 à 72h)');
|
||||
$this->translate('Privilèges de la sécurité sociale et des régimes complémentaires (mail sous 12h ouvrées)');
|
||||
$this->translate('Privilèges du Trésor Public (mail sous 12h ouvrées)');
|
||||
$this->translate('Nantissements du fonds de commerce ou du fonds artisanal (conventionnels et judiciaires)');
|
||||
$this->translate('Privilèges du vendeur de fonds de commerce et d\'action résolutoire');
|
||||
$this->translate('Déclarations de créances');
|
||||
|
||||
//Comptes annuels
|
||||
$this->translate('PIÈCES OFFICIELLES');
|
||||
$this->translate('Mettre sous surveillance Actes');
|
||||
$this->translate('Compte annuels');
|
||||
$this->translate('Date de clôture');
|
||||
$this->translate('Décisions');
|
||||
$this->translate('Comptes millésime');
|
||||
|
||||
//Actes & Status
|
||||
$this->translate('Actes & Status');
|
||||
$this->translate('EXTRAIT DE PROCES-VERBAL');
|
||||
$this->translate('Créer une commande factice');
|
||||
$this->translate('Acte modificatif');
|
||||
$this->translate('Nomination/démission des organes de gestion');
|
||||
$this->translate('Procuration');
|
||||
$this->translate('PROCES-VERBAL D\'ASSEMBLEE GENERALE ORDINAIRE ET EXTRAORDINAIRE');
|
||||
$this->translate('Augmentation de Capital');
|
||||
$this->translate('CERTIFICAT');
|
||||
$this->translate('STATUTS MIS A JOUR');
|
||||
$this->translate('DU CONSEIL DE SURVEILLANCE');
|
||||
|
||||
//Suivi Privilèges
|
||||
$this->translate('Synthèse des inscriptions d\'endettement');
|
||||
$this->translate('Mettre sous surveillance Privilèges');
|
||||
$this->translate('Privilèges de la sécurité sociale et des régimes complémentaires');
|
||||
$this->translate('Privilèges du trésor public');
|
||||
|
||||
//Nouveautés
|
||||
$this->translate('Nouveautés');
|
||||
$this->translate('Liste par date');
|
||||
$this->translate('Intitulé');
|
||||
$this->translate('Catégorie');
|
||||
|
||||
//Mes options
|
||||
$this->translate('PROFIL UTILISATEUR');
|
||||
$this->translate('Identifiant utilisateur');
|
||||
$this->translate('Identité (NOM/Prénom)');
|
||||
$this->translate('Réf. facturation (service, etc...)');
|
||||
$this->translate('Adresse e-mail');
|
||||
$this->translate('Numéros de téléphone (Fixe, Fax, Mobile)');
|
||||
$this->translate('Mot de passe');
|
||||
$this->translate('Relevé de consommation');
|
||||
$this->translate('Modifier le mot de passe.');
|
||||
$this->translate('Relevé de consommation');
|
||||
$this->translate('Détails');
|
||||
$this->translate('Mois/Année');
|
||||
$this->translate('Ok');
|
||||
$this->translate('Langue de l\'interface par défaut');
|
||||
$this->translate('Informations');
|
||||
$this->translate('Type d\'appareil actuel');
|
||||
$this->translate('Résolution d\'écran actuel');
|
||||
$this->translate('Navigateur actuel');
|
||||
$this->translate('Poste de travail');
|
||||
$this->translate('Moteur de recherche');
|
||||
$this->translate('Résultats par page');
|
||||
$this->translate('Inclure');
|
||||
$this->translate('Surveillance');
|
||||
$this->translate('Supports pour les alertes');
|
||||
$this->translate('Gestion des droits');
|
||||
$this->translate('Type de profil');
|
||||
$this->translate('Droits d\'accès');
|
||||
$this->translate('Préférences');
|
||||
$this->translate('les associations');
|
||||
$this->translate('les actifs');
|
||||
$this->translate('les radiés');
|
||||
$this->translate('les établissements secondaires');
|
||||
$this->translate('SMS');
|
||||
$this->translate('Fax');
|
||||
$this->translate('Mail');
|
||||
$this->translate('Utilisateur');
|
||||
$this->translate('Administrateur');
|
||||
$this->translate('SuperAdministrateur');
|
||||
|
||||
//Mes surveillances
|
||||
$this->translate('SURVEILLANCE');
|
||||
$this->translate('Nombre d\'entités affichées');
|
||||
$this->translate('Nombre de surveillances');
|
||||
$this->translate('Extraction des surveillances');
|
||||
$this->translate('Extraire uniquement les surveillances de type');
|
||||
$this->translate('toutes');
|
||||
$this->translate('Anonces');
|
||||
$this->translate('Insee');
|
||||
$this->translate('Bilans');
|
||||
$this->translate('Indiscore');
|
||||
$this->translate('Actes');
|
||||
$this->translate('Dirigeants');
|
||||
$this->translate('Privilèges');
|
||||
$this->translate('Paiements');
|
||||
$this->translate('Liens');
|
||||
$this->translate('Options de recherche');
|
||||
$this->translate('Afficher uniquement les suveillances de type');
|
||||
$this->translate('Tri');
|
||||
$this->translate('croissant');
|
||||
$this->translate('décroissant');
|
||||
$this->translate('par');
|
||||
$this->translate('Siren');
|
||||
$this->translate('Référence');
|
||||
$this->translate('Date d\'ajoute');
|
||||
$this->translate('Date d\'envoi');
|
||||
$this->translate('Liste des surveillances');
|
||||
$this->translate('Ajout le');
|
||||
$this->translate('Envoyé le');
|
||||
|
||||
//Mon portefeuille
|
||||
$this->translate('PORTEFEUILLE');
|
||||
$this->translate('Nombre d\'entités affichées');
|
||||
$this->translate('Nombre de surveillances');
|
||||
$this->translate('Exportation de votre portefeuille');
|
||||
$this->translate('Exporter votre portefeuille au format CSV');
|
||||
$this->translate('Options de recherche');
|
||||
$this->translate('Tri par');
|
||||
$this->translate('Surveillance Score');
|
||||
$this->translate('Aucune surveillance Score.');
|
||||
|
||||
//Administration
|
||||
$this->translate('ADMINISTRATION');
|
||||
$this->translate('Relevé de consommation complet');
|
||||
$this->translate('Tous les utilisateurs');
|
||||
$this->translate('Détails');
|
||||
$this->translate('Liste des profils utilisateurs');
|
||||
$this->translate('Login');
|
||||
$this->translate('Actions');
|
||||
$this->translate('Créer un profil utilisateur');
|
||||
$this->translate('Mode spéciaux');
|
||||
$this->translate('Mode Edition');
|
||||
|
||||
//Se déconnecter
|
||||
$this->translate('Vous avez été déconnecté.');
|
||||
$this->translate('Si cette page ne disparait pas au bout de 5 seconde(s), veuillez cliquer');
|
||||
|
||||
//Gestion
|
||||
$this->translate('Gestion Système');
|
||||
$this->translate('Gestion des clients');
|
||||
$this->translate('Gestion des commandes');
|
||||
$this->translate('Gestion des fichiers nouveautés');
|
||||
$this->translate('Statistiques');
|
||||
|
||||
//Saisie / Edition
|
||||
$this->translate('IDENTITE DE L\'ENTREPRISE');
|
||||
$this->translate('Numéro identifiant Siret');
|
||||
$this->translate('Numéro identifiant Siret du siège');
|
||||
$this->translate('Raison Sociale');
|
||||
$this->translate('Adresse');
|
||||
$this->translate('Établissement');
|
||||
$this->translate('Activité(s) et Chiffres d\'Affaires');
|
||||
$this->translate('Code ISIN');
|
||||
$this->translate('Activité déclarée de l\'entreprise');
|
||||
$this->translate('Capital Montant');
|
||||
$this->translate('Capital Devise');
|
||||
$this->translate('BODACC');
|
||||
$this->translate('Source');
|
||||
$this->translate('Date évènement / jugement');
|
||||
$this->translate('Tribunal');
|
||||
$this->translate('Évènement / Jugement');
|
||||
$this->translate('Informations diverses');
|
||||
$this->translate('Autre siren (doublon)');
|
||||
$this->translate('Refus d’inscription au Registre du Commerce et des Sociétés');
|
||||
$this->translate('Identifiant R.N.A.');
|
||||
$this->translate('Entreprise de domiciliation');
|
||||
$this->translate('Entreprise ayant exercée son droit d\'opposition en');
|
||||
$this->translate('Sans objet');
|
||||
|
||||
//Saisie Fiche Entrangère
|
||||
$this->translate('Adresse complément');
|
||||
$this->translate('CP');
|
||||
$this->translate('Ville');
|
||||
$this->translate('Pays');
|
||||
$this->translate('Selectionner un pays pour afficher les identifiants locaux');
|
||||
$this->translate('Téléphone');
|
||||
$this->translate('au capital de');
|
||||
$this->translate('en date du');
|
||||
$this->translate('découpé en');
|
||||
$this->translate('action(s)');
|
||||
$this->translate('(JJ/MM/AAAA)');
|
||||
|
||||
//Gestion des clients
|
||||
$this->translate('GESTION DES CLIENTS');
|
||||
$this->translate('Créer un client');
|
||||
$this->translate('Liste des clients');
|
||||
$this->translate('Actions');
|
||||
$this->translate('Nom');
|
||||
$this->translate('Editer');
|
||||
$this->translate('Prestations fichier');
|
||||
$this->translate('Tarification');
|
||||
$this->translate('Services');
|
||||
$this->translate('Utilisateurs');
|
||||
$this->translate('EDITION CLIENT');
|
||||
$this->translate('Identification');
|
||||
$this->translate('Facturation');
|
||||
$this->translate('Livraison : Informations sur le destinataire de la livraison');
|
||||
$this->translate('Paramétrage');
|
||||
$this->translate('Divers');
|
||||
$this->translate('Obtention Raison sociale');
|
||||
$this->translate('Nic du siège');
|
||||
$this->translate('Siren');
|
||||
$this->translate('Racine des identifiants');
|
||||
$this->translate('Test');
|
||||
$this->translate('Date de signature');
|
||||
$this->translate('(AAAA-MM-YY)');
|
||||
$this->translate('Type de contrat');
|
||||
$this->translate('Commercial S&D');
|
||||
$this->translate('Contrat');
|
||||
$this->translate('Marché');
|
||||
$this->translate('Nom de l\'apporteur d\'affaire');
|
||||
$this->translate('Type d\'accès Remarques / Observations');
|
||||
$this->translate('userPassword');
|
||||
$this->translate('userPasswordIP');
|
||||
$this->translate('IP');
|
||||
$this->translate('N° de TVA');
|
||||
$this->translate('Compte client rattaché');
|
||||
$this->translate('Editer la facture automatiquement');
|
||||
$this->translate('Editer le détail de la facture');
|
||||
$this->translate('Nom du destinataire de la facture');
|
||||
$this->translate('Adresse1');
|
||||
$this->translate('Adresse2');
|
||||
$this->translate('Adresse3');
|
||||
$this->translate('RIB joint à la facture');
|
||||
$this->translate('BPOSTALE');
|
||||
$this->translate('CCOOP');
|
||||
$this->translate('CDNORD');
|
||||
$this->translate('Liste des adresses IP');
|
||||
$this->translate('Aucune IPs.');
|
||||
$this->translate('Ajouter une adresse IP');
|
||||
$this->translate('Listes des Droits');
|
||||
$this->translate('Recherche');
|
||||
$this->translate('Timeout');
|
||||
$this->translate('forfaitExtranetPeriode');
|
||||
$this->translate('forfaitExtranetMontant');
|
||||
$this->translate('reconductionAuto');
|
||||
$this->translate('Mensuel');
|
||||
$this->translate('Trimestriel');
|
||||
$this->translate('Semestriel');
|
||||
$this->translate('Nombre de pièces officielles inclues dans le forfait client');
|
||||
$this->translate('Montant du forfait des pièces officielles');
|
||||
$this->translate('Tarif unitaire en cas de dépassement');
|
||||
$this->translate('Nombre d\'investigations inclues dans le forfait client');
|
||||
$this->translate('Montant du forfait des investigations');
|
||||
$this->translate('Tarif unitaire pour les indiscore');
|
||||
$this->translate('Accès Webservice');
|
||||
$this->translate('Intersud - Login');
|
||||
$this->translate('Intersud - Mot de passe');
|
||||
$this->translate('Export des résultats de la recherche');
|
||||
$this->translate('Investigation par l\'image IparI');
|
||||
$this->translate('Historique des annonces bodacc');
|
||||
$this->translate('Investigation');
|
||||
$this->translate('Recherche Entreprise');
|
||||
$this->translate('Recherche Dirigeant');
|
||||
$this->translate('Recherche Actionnaire');
|
||||
$this->translate('Fiche d\'identité');
|
||||
$this->translate('Fiche procédure collective');
|
||||
$this->translate('Liens inter-entreprise');
|
||||
$this->translate('Liste des établissements');
|
||||
$this->translate('Informations et organigramme du groupe');
|
||||
$this->translate('Évènements INSEE');
|
||||
$this->translate('Avis de situation INSEE');
|
||||
$this->translate('Liste des dirigeants');
|
||||
$this->translate('Liste des dirigeants opérationnels');
|
||||
$this->translate('Synthèse');
|
||||
$this->translate('Ratios');
|
||||
$this->translate('Flux de trésorerie');
|
||||
$this->translate('Liasse fiscale');
|
||||
$this->translate('Export des Liasses au format XLS');
|
||||
$this->translate('Saisie de bilan');
|
||||
$this->translate('Bourse & cotations');
|
||||
$this->translate('Relations bancaires');
|
||||
$this->translate('Annonces légales');
|
||||
$this->translate('Informations réglementée');
|
||||
$this->translate('Compétences territoriales');
|
||||
$this->translate('Conventions collectives');
|
||||
$this->translate('Marques déposées');
|
||||
$this->translate('indiScore');
|
||||
$this->translate('Rapport synthetique');
|
||||
$this->translate('Rapport complet');
|
||||
$this->translate('Enquête commerciale');
|
||||
$this->translate('Avis de crédit personnalisé');
|
||||
$this->translate('Extrait RCS');
|
||||
$this->translate('Pièces officielles');
|
||||
$this->translate('Privilèges');
|
||||
$this->translate('Surveillance des annonces légales');
|
||||
$this->translate('Surveillance des événements INSEE');
|
||||
$this->translate('Surveillance des bilans');
|
||||
$this->translate('Surveillance des événements sur le score');
|
||||
$this->translate('Surveillance des actes');
|
||||
$this->translate('Surveillance des dirigeants');
|
||||
$this->translate('Surveillance des paiements');
|
||||
$this->translate('Surveillance des liens financiers');
|
||||
$this->translate('Surveillance des privilèges');
|
||||
$this->translate('Mon profil');
|
||||
$this->translate('Liste des surveillances');
|
||||
$this->translate('Portefeuille');
|
||||
$this->translate('Mode Edition');
|
||||
$this->translate('Recherche Internationale');
|
||||
$this->translate('Banque de France');
|
||||
$this->translate('Gestion des commandes kbis');
|
||||
$this->translate('Gestion des commandes greffes');
|
||||
$this->translate('Gestion des commandes KBIS');
|
||||
$this->translate('Gestion des commandes');
|
||||
$this->translate('Rechercher une commande');
|
||||
$this->translate('N° de commande ou siren');
|
||||
$this->translate('Etat');
|
||||
$this->translate('Mode');
|
||||
$this->translate('courrier S&D');
|
||||
$this->translate('e-mail');
|
||||
$this->translate('Liste des commandes');
|
||||
$this->translate('Aucunes commandes.');
|
||||
$this->translate('Gestion des nouveautés');
|
||||
$this->translate('Catégorie');
|
||||
$this->translate('Intitulé');
|
||||
$this->translate('Fichier PDF');
|
||||
$this->translate('Format AAAA-MM-JJ');
|
||||
$this->translate('Toutes les statistiques');
|
||||
$this->translate('Navigateur');
|
||||
$this->translate('Résolution d\'écran');
|
||||
$this->translate('Type d\'appareil');
|
||||
$this->translate('Ordinateur');
|
||||
$this->translate('Mobile');
|
||||
|
||||
$this->translate('Dernière mise à jour le');
|
||||
$this->translate('Capitalisation');
|
||||
$this->translate('Forme juridique à l\'INSEE: Autre SA à directoire (5699)');
|
||||
$this->translate('France');
|
||||
$this->translate('Belgium');
|
||||
$this->translate('United Kingdom');
|
||||
$this->translate('Spain');
|
||||
$this->translate('The Netherlands');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
$this->translate('');
|
||||
|
||||
//Dashboard controller
|
||||
$this->translate('Ordinateur');
|
||||
$this->translate('Mobile');
|
||||
$this->translate('Navigateur');
|
||||
$this->translate('Résolution d\'écran');
|
||||
$this->translate('Type d\'appareil');
|
||||
?>
|
@ -118,7 +118,7 @@ $(document).ready(function(){
|
||||
<label>Siren</label>
|
||||
<div class="field">
|
||||
<input name="siren" type="text" value="<?php echo isset($this->InfosClient) ? $this->InfosClient->siren : '';?>" />
|
||||
<a href="#">Obtention Raison sociale</a>
|
||||
<a href="#">Obtention Dénomination sociale</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -81,7 +81,7 @@ $compteur++;
|
||||
'controller' => 'dashboard',
|
||||
'action' => 'rs',
|
||||
'siren' => $item->siren,
|
||||
), null, true)?>" class="rs">Raison sociale</a>
|
||||
), null, true)?>" class="rs">Dénomination sociale</a>
|
||||
</b>
|
||||
</td>
|
||||
<td width="40%">
|
||||
|
@ -1,15 +1,15 @@
|
||||
<div id="center">
|
||||
<h1>DIRIGEANTS</h1>
|
||||
<h1><?=$this->translate("DIRIGEANTS")?></h1>
|
||||
<div class="paragraph">
|
||||
<table class="identite">
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Numéro identifiant Siren</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Numéro identifiant Siren")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->SirenTexte($this->siren)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Dénomination Sociale")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->surveillance) {?>
|
||||
@ -26,7 +26,7 @@
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>Historique des dirigeants</h2>
|
||||
<h2><?=$this->translate("Historique des dirigeants")?></h2>
|
||||
<div class="paragraph">
|
||||
|
||||
<?php if (count($this->dirigeants) > 0) {?>
|
||||
@ -37,7 +37,7 @@
|
||||
<td class="StyleInfoData" width="200"><?=$dir->Societe.' '.$dir->Nom.' '.$dir->Prenom?></td>
|
||||
<td class="StyleInfoData" width="200">
|
||||
<?php if ($dir->DateFct != '') { ?>
|
||||
Modification le
|
||||
<?=$this->translate("Modification le")?>
|
||||
<?php
|
||||
if (strpos($dir->DateFct, '/') != false) {
|
||||
echo $dir->DateFct.' ';
|
||||
@ -55,7 +55,7 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td class="StyleInfoData" width="550">
|
||||
Aucune donnée n'est présente dans notre base
|
||||
<?=$this->translate("Aucune donnée n'est présente dans notre base")?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -1,19 +1,19 @@
|
||||
<?php if (empty($this->AutrePage)):?>
|
||||
<?php if (empty($this->AutrePage)) {?>
|
||||
<div id="center">
|
||||
<?php endif;?>
|
||||
<?php }?>
|
||||
|
||||
<?php if (empty($this->AutrePage)):?>
|
||||
<h1>DIRIGEANTS</h1>
|
||||
<?php if (empty($this->AutrePage)){?>
|
||||
<h1><?=$this->translate("DIRIGEANTS")?></h1>
|
||||
<div class="paragraph">
|
||||
<table class="identite">
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Numéro identifiant Siren</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Numéro identifiant Siren")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->SirenTexte($this->siren)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Dénomination Sociale")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->surveillance) {?>
|
||||
@ -31,15 +31,15 @@
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td colspan="2" width="550" class="StyleInfoData">
|
||||
<a href="<?=$this->dirigeantsop?>">Consulter la liste des dirigeants opérationnels</a>
|
||||
<a href="<?=$this->dirigeantsop?>"><?=$this->translate("Consulter la liste des dirigeants opérationnels")?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</table>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
<?php }?>
|
||||
|
||||
<h2>Liste des dirigeants actifs</h2>
|
||||
<h2><?=$this->translate("Liste des dirigeants actifs")?></h2>
|
||||
<div class="paragraph">
|
||||
<?php if ( count($this->dirigeants)>0 ) { ?>
|
||||
<table class="data">
|
||||
@ -47,13 +47,15 @@
|
||||
<tr>
|
||||
<td class="StyleInfoData" width="200"><?=$dir->Titre?></td>
|
||||
<td class="StyleInfoData" width="320">
|
||||
|
||||
<?php if ($dir->Societe != '') { ?>
|
||||
<a href="<?=$this->url(array('controller' => 'recherche', 'action' => 'liste', 'type' => 'ent','raisonSociale' => $dir->Societe), null, true)?>"
|
||||
title="Recherche à partir de la raison sociale">
|
||||
title="<?=$this->translate("Recherche à partir de la dénomination sociale")?>">
|
||||
<?=$dir->Societe?>
|
||||
</a>
|
||||
<br/>
|
||||
<?php }?>
|
||||
|
||||
<?php if ($dir->Nom != '') { ?>
|
||||
<a href="<?=$this->url(array(
|
||||
'controller' => 'recherche',
|
||||
@ -65,33 +67,29 @@
|
||||
'dirDateNaissMM' => substr($dir->NaissDate,3,2),
|
||||
'dirDateNaissAAAA' => substr($dir->NaissDate,6,4),
|
||||
'dirCpVille' => $dir->NaissVille,
|
||||
), null, true)?>" title="Recherche à partir du nom du dirigeant">
|
||||
), null, true)?>" title="<?=$this->translate("Recherche à partir du nom du dirigeant")?>">
|
||||
<?=$dir->Nom.' '.$dir->Prenom?>
|
||||
</a>
|
||||
<?php
|
||||
if (trim($dir->NaissDate) != '' && trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') { ?>
|
||||
<br/>né(e) le <?=$dir->NaissDate?> à <?=$dir->NaissVille?>
|
||||
<?php if (trim($dir->NaissDepPays) != '') { ?>
|
||||
(<?=$dir->NaissDepPays?>)
|
||||
<?php }
|
||||
} else if (trim($dir->NaissDate) != '') {
|
||||
?>
|
||||
<?php if (trim($dir->NaissDepPays) != '') { ?> (<?=$dir->NaissDepPays?>)<?php }?>
|
||||
<?php } else if (trim($dir->NaissDate) != '') { ?>
|
||||
né(e) le <?=$dir->NaissDate?>
|
||||
<?php
|
||||
} else if (trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') {
|
||||
?>
|
||||
<?php } else if (trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') { ?>
|
||||
né(e) à <?=$dir->NaissVille?> (<?=$dir->NaissDepPays?>)
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
|
||||
</td>
|
||||
<td class="StyleInfoData" width="100" valign="top">
|
||||
<?php if ($dir->Siren!='') {?>
|
||||
<a title="Consulter la fiche identité" href="<?=$this->url(array('controller'=>'identite', 'action'=>'fiche', 'siret'=>$dir->Siren))?>">
|
||||
<a title="<?=$this->translate("Consulter la fiche identité")?>" href="<?=$this->url(array('controller'=>'identite', 'action'=>'fiche', 'siret'=>$dir->Siren))?>">
|
||||
<?=$this->SirenTexte($dir->Siren)?></a>
|
||||
|
||||
<?php if (empty($this->AutrePage) && $this->edition) {?>
|
||||
<div style="line-height:16px;">
|
||||
<a class="dialog" title="Ajouter un actionnaire" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'actionnaire','mode'=>'add','siren'=>$this->siren,'createfiche'=>$dir->Siren),null,true)?>">
|
||||
<a class="dialog" title="<?=$this->translate("Ajouter un actionnaire")?>" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'actionnaire','mode'=>'add','siren'=>$this->siren,'createfiche'=>$dir->Siren),null,true)?>">
|
||||
<img style="vertical-align:middle;" src="/themes/default/images/interfaces/ajouter.png" /></a>
|
||||
</div>
|
||||
<?php }?>
|
||||
@ -118,7 +116,7 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td class="StyleInfoData" width="550">
|
||||
Aucune donnée n'est présente dans notre base
|
||||
<?=$this->translate("Aucune donnée n'est présente dans notre base")?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -1,23 +1,19 @@
|
||||
<?php if (empty($this->AutrePage)):?>
|
||||
<?php if (empty($this->AutrePage)){?>
|
||||
<div id="center">
|
||||
<?php endif;?>
|
||||
<?php }?>
|
||||
|
||||
<?php if (empty($this->AutrePage)):?>
|
||||
<h1>DIRIGEANTS OPÉRATIONNELS</h1>
|
||||
<?php if (empty($this->AutrePage)){?>
|
||||
<h1><?=$this->translate("DIRIGEANTS OPÉRATIONNELS")?></h1>
|
||||
<div class="paragraph">
|
||||
<table class="identite">
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">
|
||||
Numéro identifiant Siren
|
||||
</td>
|
||||
<td width="350" class="StyleInfoData">
|
||||
<?=$this->SirenTexte($this->siren)?>
|
||||
</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Numéro identifiant Siren")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->SirenTexte($this->siren)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Dénomination Sociale")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->surveillance) {?>
|
||||
@ -33,9 +29,9 @@
|
||||
<?php }?>
|
||||
</table>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
<?php }?>
|
||||
|
||||
<h2>Liste des dirigeants actifs</h2>
|
||||
<h2><?=$this->translate("Liste des dirigeants actifs")?></h2>
|
||||
<div class="paragraph">
|
||||
|
||||
<?php if ( count($this->dirigeants)>0 ) {?>
|
||||
@ -51,7 +47,7 @@
|
||||
'type' => 'ent',
|
||||
'raisonSociale' => $dir->Societe
|
||||
), null, true)?>"
|
||||
title="Recherche à partir de la raison sociale">
|
||||
title="<?=$this->translate("Recherche à partir de la Dénomination sociale")?>">
|
||||
<?=$dir->Societe?>
|
||||
</a>
|
||||
|
||||
@ -63,24 +59,21 @@
|
||||
'type' => 'dir',
|
||||
'dirNom' => $dir->Nom,
|
||||
'dirPrenom' => $dir->Prenom,
|
||||
), null, true)?>" title="Recherche à partir du nom du dirigeant">
|
||||
), null, true)?>" title="<?=$this->translate("Recherche à partir du nom du dirigeant")?>">
|
||||
<?=$dir->Nom.' '.$dir->Prenom?>
|
||||
</a>
|
||||
<?php } ?>
|
||||
</td>
|
||||
<td class="StyleInfoData" width="230">
|
||||
<?php if (trim($dir->NaissDate) != '' && trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') { ?>
|
||||
né(e) le <?=$dir->NaissDate?> à <?=$dir->NaissVille?>
|
||||
<?=$this->translate("né(e) le")?> <?=$dir->NaissDate?> à <?=$dir->NaissVille?>
|
||||
<?php if (trim($dir->NaissDepPays) != '') { ?>
|
||||
(<?=$dir->NaissDepPays?>)
|
||||
<?php }
|
||||
} else if (trim($dir->NaissDate) != '') {
|
||||
?>
|
||||
né(e) le <?=$dir->NaissDate?>
|
||||
<?php
|
||||
} else if (trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') {
|
||||
?>
|
||||
né(e) à <?=$dir->NaissVille?> (<?=$dir->NaissDepPays?>)
|
||||
<?php }?>
|
||||
<?php } else if (trim($dir->NaissDate) != '') {?>
|
||||
<?=$this->translate("né(e) le")?> <?=$dir->NaissDate?>
|
||||
<?php } else if (trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') { ?>
|
||||
<?=$this->translate("né(e) à")?> <?=$dir->NaissVille?> (<?=$dir->NaissDepPays?>)
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
@ -90,14 +83,14 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td class="StyleInfoData" width="550">
|
||||
Aucune donnée n'est présente dans notre base
|
||||
<?=$this->translate("Aucune donnée n'est présente dans notre base")?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
<?php if (empty($this->AutrePage)):?>
|
||||
<?php if (empty($this->AutrePage)){?>
|
||||
<?=$this->render('cgu.phtml', $this->cgu)?>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
<?php }?>
|
@ -51,7 +51,7 @@ if($this->commande == false){
|
||||
<div class="infoTitle StyleInfoLib">Numéro de TVA Intracom.</div>
|
||||
<div class="infoData"><?=substr($this->Etab->TvaNumero,0,2).' '.substr($this->Etab->TvaNumero,2,2).' '.substr($this->Etab->TvaNumero,-9)?></div>
|
||||
|
||||
<div class="infoTitle StyleInfoLib">Raison Sociale</div>
|
||||
<div class="infoTitle StyleInfoLib">Dénomination Sociale</div>
|
||||
<div class="infoData"><?=$this->Etab->Nom?></div>
|
||||
|
||||
<div class="infoTitle StyleInfoLib">Adresse</div>
|
||||
|
@ -61,7 +61,7 @@ if($this->commandeEnquete == false){
|
||||
<div class="infoTitle StyleInfoLib">Numéro de TVA Intracom.</div>
|
||||
<div class="infoData"><?=substr($this->Etab->TvaNumero,0,2).' '.substr($this->Etab->TvaNumero,2,2).' '.substr($this->Etab->TvaNumero,-9)?></div>
|
||||
|
||||
<div class="infoTitle StyleInfoLib">Raison Sociale</div>
|
||||
<div class="infoTitle StyleInfoLib">Dénomination Sociale</div>
|
||||
<div class="infoData"><?=$this->Etab->Nom?></div>
|
||||
|
||||
<div class="infoTitle StyleInfoLib">Adresse</div>
|
||||
|
@ -37,12 +37,12 @@
|
||||
</div>
|
||||
<?php endif;?>
|
||||
|
||||
<h2>Raison sociale & coordonnées</h2>
|
||||
<h2>Dénomination sociale & coordonnées</h2>
|
||||
<div class="paragraph">
|
||||
<table>
|
||||
<tr>
|
||||
<td width="30"></td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData">
|
||||
<?php
|
||||
echo $this->indiscore->Nom;
|
||||
|
@ -11,7 +11,7 @@ echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Actif']);
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>Raison sociale & Coordonnées</h2>
|
||||
<h2>Dénomination sociale & Coordonnées</h2>
|
||||
<div class="paragraph">
|
||||
<table>
|
||||
<?php
|
||||
|
@ -8,7 +8,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?php echo $this->raisonSociale?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -9,7 +9,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -17,7 +17,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?php echo $this->raisonSociale;?></td>
|
||||
</tr>
|
||||
<?php if (isset($this->tabResultActif) && isset($this->tabResultPassif) && isset($this->tabResultSig)){?>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -123,7 +123,7 @@ if ($this->urlImg!='') {
|
||||
<table>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=empty($this->InfosBourse->RaisonSociale) ? $this->raisonSociale : $this->InfosBourse->RaisonSociale;?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -9,7 +9,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="340" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->nbBilanN > 0 || $this->nbBilanC > 0) { ?>
|
||||
|
@ -9,7 +9,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"></td>
|
||||
<td class="StyleInfoLib" width="200">Raison Sociale</td>
|
||||
<td class="StyleInfoLib" width="200">Dénomination Sociale</td>
|
||||
<td class="StyleInfoData" width="340"><?=$this->raisonSociale;?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -9,7 +9,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -9,7 +9,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -17,7 +17,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale;?></td>
|
||||
</tr>
|
||||
<?php if (isset($this->tabResult)){?>
|
||||
|
@ -10,9 +10,9 @@ pour en savoir plus cliquez-ici</a></span>
|
||||
</div>
|
||||
<![endif]-->
|
||||
<p>© 2006-<?php echo date('Y')?> Scores & Décisions SAS -
|
||||
Tous droits réservés -
|
||||
<?=$this->translate("Tous droits réservés")?> -
|
||||
<a href="http://www.scores-decisions.com/mentions.php" target="_blank">
|
||||
Mentions légales</a> -
|
||||
<?=$this->translate("Mentions légales")?></a> -
|
||||
<img class='flag' id='fr' src="/themes/default/images/drapeaux/fr.png"/>
|
||||
<img class='flag' id='en' src="/themes/default/images/drapeaux/en.png"/>
|
||||
</p>
|
@ -42,7 +42,7 @@ if ( empty($this->source) ){
|
||||
<table class="tablesorter" id="surveillance" width="570">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="75">Raison Sociale (Siret)</th>
|
||||
<th width="75">Dénomination Sociale (Siret)</th>
|
||||
<th width="110">Start Monitoring</th>
|
||||
<th width="110">End Monitoring</th>
|
||||
<th width="75">Lang</th>
|
||||
|
@ -7,25 +7,25 @@
|
||||
<div class="icones">
|
||||
<?php if ($this->print) {?>
|
||||
<a target="_blank" title="Impression" href="/editer/ecran/<?=$this->print.'.html'?>">
|
||||
<img alt="Impression" src="/themes/default/images/interfaces/printer.png">
|
||||
<img alt="<?=$this->translate("Impression")?>" src="/themes/default/images/interfaces/printer.png">
|
||||
</a>
|
||||
<?php }?>
|
||||
|
||||
<?php if ($this->pdf) {?>
|
||||
<a target="_blank" title="Impression PDF" href="/editer/pdf/<?=$this->pdf.'.pdf'?>">
|
||||
<img alt="Impression" src="/themes/default/images/interfaces/pdf.png">
|
||||
<img alt="<?=$this->translate("Impression en PDF")?>" src="/themes/default/images/interfaces/pdf.png">
|
||||
</a>
|
||||
<?php }?>
|
||||
|
||||
<?php if ($this->xml) {?>
|
||||
<a target="_blank" title="Export XML" href="/editer/xml/<?=$this->xml.'.xml'?>">
|
||||
<img alt="Export en XML" src="/themes/default/images/interfaces/xml.png">
|
||||
<img alt="<?=$this->translate("Export en XML")?>" src="/themes/default/images/interfaces/xml.png">
|
||||
</a>
|
||||
<?php }?>
|
||||
|
||||
<?php if ($this->aide) {?>
|
||||
<a id="aideLigne" title="Aide en ligne" href="#">
|
||||
<img alt="Export en XML" src="/themes/default/images/interfaces/aideligne.png">
|
||||
<img alt="<?=$this->translate("Activer l'aide en ligne")?>" src="/themes/default/images/interfaces/aideligne.png">
|
||||
</a>
|
||||
<?php }?>
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
<div id="center">
|
||||
|
||||
<h1 class="titre">CONTACTS</h1>
|
||||
<h1 class="titre">DONNEES DE CONTACTS</h1>
|
||||
|
||||
<div class="paragraph">
|
||||
<table class="identite">
|
||||
@ -11,26 +11,85 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>Liste des contacts</h2>
|
||||
<div class="paragraph">
|
||||
<h2>Historique des données de contact</h2>
|
||||
<div class="paragraph clearfix">
|
||||
<?php if ($this->all) {?>
|
||||
<?php
|
||||
$url = $this->url(array('controller'=>'identite', 'action'=>'contacts','siret'=>$this->siret), null, true);
|
||||
?>
|
||||
<div style="float:left;">
|
||||
<a href="<?=$url?>">Uniquement les contacts de l'établissement</a>
|
||||
</div>
|
||||
<?php } else {?>
|
||||
<?php
|
||||
$url = $this->url(array(
|
||||
'controller'=>'identite', 'action'=>'contacts',
|
||||
'siret'=>$this->siret, 'get'=> 'all'
|
||||
), null, true);
|
||||
?>
|
||||
<div style="float:left;">
|
||||
<a href="<?=$url?>">Tous les contacts de l'entreprise</a>
|
||||
</div>
|
||||
<?php }?>
|
||||
|
||||
<div id="radioset" style="float:right;">
|
||||
Filtre :
|
||||
<input type="radio" name="filtre" id="tel"><label <?php if($this->filter=='tel') { echo ' class="ui-state-active"'; }?>data-url="<?=$url?>" for="tel">Téléphone</label>
|
||||
<input type="radio" name="filtre" id="fax"><label <?php if($this->filter=='fax') { echo ' class="ui-state-active"'; }?>data-url="<?=$url?>" for="fax">Fax</label>
|
||||
<input type="radio" name="filtre" id="mail"><label <?php if($this->filter=='mail') { echo ' class="ui-state-active"'; }?>data-url="<?=$url?>" for="mail">e-Mail</label>
|
||||
<input type="radio" name="filtre" id="web"><label <?php if($this->filter=='web') { echo ' class="ui-state-active"'; }?>data-url="<?=$url?>" for="web">Web</label>
|
||||
<input type="radio" name="filtre" id="remove"><label data-url="<?=$url?>" for="remove">Sans filtres</label>
|
||||
</div>
|
||||
<script>
|
||||
$('#radioset').buttonset();
|
||||
$('input[name=filtre]').click(function(e){
|
||||
e.preventDefault();
|
||||
var label = $(this).attr('id');
|
||||
if (label=='remove') {
|
||||
window.location.href = $('label[for='+label+']').data('url');
|
||||
} else if ( $('label[for='+label+']').hasClass('ui-state-active') ) {
|
||||
window.location.href = $('label[for='+label+']').data('url')+'/filter/'+label;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<div class="paragraph clearfix">
|
||||
|
||||
<?php if ( $this->edition ) {?>
|
||||
<div style="line-height:16px;">
|
||||
<a class="dialog" title="Ajouter un contact" href="<?=$this->url(array('controller'=>'saisie','action'=>'contact','mode'=>'add','siret'=>$this->siret), null, true)?>">
|
||||
<img style="vertical-align:middle;" src="/themes/default/images/interfaces/ajouter.png" /> Ajouter un contact</a>
|
||||
</div>
|
||||
<?php }?>
|
||||
|
||||
<?php if ( count($this->contacts) == 0 ){?>
|
||||
Aucun contacts.
|
||||
<?php } else {?>
|
||||
|
||||
<table class="data">
|
||||
<tr>
|
||||
<th>SIREN / SIRET</th>
|
||||
<th>Type</th>
|
||||
<th>Contact</th>
|
||||
<th>Date de mise à jour</th>
|
||||
<th>Description</th>
|
||||
<th>Mise à jour</th>
|
||||
</tr>
|
||||
<?php foreach($this->contacts as $item) {?>
|
||||
<tr>
|
||||
<?php
|
||||
$class = '';
|
||||
if ($item->deleted) {
|
||||
$class = ' class="deleted"';
|
||||
}
|
||||
?>
|
||||
<tr<?=$class?>>
|
||||
<td><?=$this->SiretTexte($item->siren.$item->nic)?></td>
|
||||
<td>
|
||||
<?php
|
||||
switch($item->type) {
|
||||
@ -45,10 +104,22 @@ Aucun contacts.
|
||||
<td>
|
||||
<?php if ($item->type=='fax' || $item->type=='tel' || $item->type=='mob') {?>
|
||||
<?=substr(chunk_split($item->value, 2, '.'), 0, -1)?>
|
||||
<?php } else if ($item->type=='web') {?>
|
||||
<a href="<?=$item->value?>" target="_blank"><?=$item->value?></a>
|
||||
<?php } else if ($item->type=='mail') {?>
|
||||
<a href="mailto:<?=$item->value?>" target="_blank"><?=$item->value?></a>
|
||||
<?php } else {?>
|
||||
<?=$item->value?>
|
||||
<?php }?>
|
||||
|
||||
<?php if( $this->edition ) {?>
|
||||
<div style="float:right;">
|
||||
<a class="dialog" title="Modifier le contact" href="<?=$this->url(array('controller'=>'saisie','action'=>'contact','mode'=>'edit','id'=>$item->id), null, true)?>"><img src="/themes/default/images/interfaces/editer.png" /></a>
|
||||
<a class="dialog" title="Supprimer le contact" href="<?=$this->url(array('controller'=>'saisie','action'=>'contact','mode'=>'delete','id'=>$item->id), null, true)?>"><img src="/themes/default/images/interfaces/supprimer.png" /></a>
|
||||
</div>
|
||||
<?php }?>
|
||||
</td>
|
||||
<td><?=$item->description?></td>
|
||||
<td>
|
||||
<?php
|
||||
if (intval($item->date)>0) {
|
||||
@ -63,4 +134,31 @@ Aucun contacts.
|
||||
<?php }?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if ($this->edition) {?>
|
||||
<script>
|
||||
$('a.dialog').on('click', function(){
|
||||
var href = $(this).attr('href');
|
||||
if (href!='#') {
|
||||
var title = $(this).attr('title');
|
||||
var dialogOpts = {
|
||||
bgiframe: true,
|
||||
title: title,
|
||||
width: 600,
|
||||
height: 300,
|
||||
modal: true,
|
||||
open: function(event, ui) {
|
||||
$(this).html('Chargement...').load(href);
|
||||
},
|
||||
buttons: {
|
||||
Quitter: function() { $(this).dialog('close'); }
|
||||
},
|
||||
close: function() { $('#dialog').remove(); }
|
||||
};
|
||||
$('<div id="dialog"></div>').dialog(dialogOpts);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<?php }?>
|
@ -1,33 +1,29 @@
|
||||
<div id="center">
|
||||
<h1>LISTE DES ÉTABLISSEMNTS</h1>
|
||||
<h1><?=$this->translate("LISTE DES ÉTABLISSEMNTS")?></h1>
|
||||
<div class="paragraph">
|
||||
<table class="identite">
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">
|
||||
Numéro identifiant Siren
|
||||
</td>
|
||||
<td width="350" class="StyleInfoData">
|
||||
<?=$this->SirenTexte($this->siren)?>
|
||||
</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Numéro identifiant Siren")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->SirenTexte($this->siren)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Dénomination Sociale")?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->actif == -1 && is_array($this->etabs) && count($this->etabs)>0){ ?>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td colspan="2" class="StyleInfoData">
|
||||
L'entreprise à <?=$this->nbEtabActif?> établissement<?php if ($this->nbEtabActif>0) echo 's';?> actif<?php if ($this->nbEtabActif>0) echo 's';?>
|
||||
et <?=$this->nbEtabRadie?> établissement<?php if ($this->nbEtabRadie>0) echo 's';?> radié<?php if ($this->nbEtabRadie>0) echo 's';?>.
|
||||
<?=$this->translate($this->translate()->getTranslator()->plural("L'entreprise a %1\$s établissement actif", "L'entreprise a %1\$s établissements actifs", $this->nbEtabActif), $this->nbEtabActif);?>
|
||||
<?=$this->translate($this->translate()->getTranslator()->plural("et %1\$s établissement radié", "et %1\$s établissements radiés", $this->nbEtabRadie), $this->nbEtabRadie);?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
<?php }?>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Actif/Inactif</td>
|
||||
<td width="200" class="StyleInfoLib"><?=$this->translate("Actif")?> / <?=$this->translate("Inactif")?></td>
|
||||
<td width="350" class="StyleInfoData">
|
||||
<form name="options" method="post" action="<?=$this->url(array(
|
||||
'action' => 'etablissements',
|
||||
@ -35,9 +31,9 @@
|
||||
'id' => $this->id,
|
||||
));?>">
|
||||
<select name="actif">
|
||||
<option value="-1"<?=($this->actif==-1)? ' selected' : '';?>>Tous</option>
|
||||
<option value="1"<?=($this->actif==1)? ' selected' : '';?>>Actif</option>
|
||||
<option value="0"<?=($this->actif==0)? ' selected' : '';?>>Inactif</option>
|
||||
<option value="-1"<?=($this->actif==-1)? ' selected' : '';?>><?=$this->translate("Tous")?></option>
|
||||
<option value="1"<?=($this->actif==1)? ' selected' : '';?>><?=$this->translate("Actif")?></option>
|
||||
<option value="0"<?=($this->actif==0)? ' selected' : '';?>><?=$this->translate("Inactif")?></option>
|
||||
</select>
|
||||
<input type="submit" name="selection" value="Ok">
|
||||
</form>
|
||||
@ -61,6 +57,7 @@
|
||||
{
|
||||
if ($etab->Siege==1) $type = 'siège ';
|
||||
else $type = 'établ. ';
|
||||
|
||||
if ($etab->Actif==1) $type.= 'actif';
|
||||
else $type.= 'inactif';
|
||||
|
||||
@ -75,7 +72,7 @@
|
||||
?>
|
||||
<tr>
|
||||
<td class="StyleInfoData" width="30">
|
||||
<b><a title="Voir la fiche d'identité" href="<?=$href?>"><?=$etab->Nic?></a></b>
|
||||
<b><a title="<?=$this->translate("Voir la fiche d'identité")?>" href="<?=$href?>"><?=$etab->Nic?></a></b>
|
||||
</td>
|
||||
<td class="StyleInfoData" width="80"><?=$type?></td>
|
||||
<td class="StyleInfoData" width="190">
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -1,34 +0,0 @@
|
||||
<?php if ($this->source == 'google') {?>
|
||||
|
||||
<div id="infogeo_photo">
|
||||
<?=$this->action('streetview', 'identite', null, array(
|
||||
'lat' => $this->infos->GeoLat,
|
||||
'lon' => $this->infos->GeoLon,
|
||||
'siret' => $this->infos->Siret,
|
||||
));?>
|
||||
</div>
|
||||
|
||||
<?php } elseif ($this->source == 'mappy') {?>
|
||||
|
||||
<div><img id="pp-cb-thumb" width="300px" /></div>
|
||||
<script src="<?=$this->lienJs?>"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
var serviceHandler = function(result) {
|
||||
if (result instanceof Mappy.api.visiocity.Frontage) {
|
||||
var current = result.getCurrent();
|
||||
var img = $('<img src="' + current.getURL(320, null) +
|
||||
'" alt="' + current.getDescription() +
|
||||
'" width="300px" />');
|
||||
$('#pp-cb-thumb').replaceWith(img);
|
||||
}
|
||||
};
|
||||
var address = "<?=$this->adresse?>";
|
||||
var geo = new Mappy.api.geolocation.Geocoder();
|
||||
var photoService = new Mappy.api.visiocity.PhotoService();
|
||||
geo.geocode(address, function(result) {
|
||||
photoService.search(result[0], 'f', serviceHandler);
|
||||
}, function(error) {});
|
||||
});
|
||||
</script>
|
||||
<?php }?>
|
@ -19,7 +19,7 @@
|
||||
<div class="paragraph" style="text-align:right;">
|
||||
<?php if (!empty($this->dateDerMaj)) { ?>
|
||||
<a class="datemaj" href="#">
|
||||
Dernière mise à jour<?=$this->dateDerMaj?>
|
||||
<?=$this->translate("Dernière mise à jour le")?> <?=$this->dateDerMaj?>
|
||||
<span><?=$this->datemajTexte?></span>
|
||||
</a>
|
||||
<?php }?>
|
||||
@ -34,7 +34,7 @@
|
||||
<?php }?>
|
||||
|
||||
<?php if ( empty($this->AutrePage) ) {?>
|
||||
<h1 class="titre">FICHE D'IDENTITÉ</h1>
|
||||
<h1 class="titre"><?=$this->translate("FICHE D'IDENTITÉ");?></h1>
|
||||
<?php }?>
|
||||
|
||||
<div class="paragraph">
|
||||
@ -56,7 +56,7 @@ echo $this->partial('identite/fiche-item.phtml', $this->dBlock['AutreSiren']);
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>Raison sociale & Coordonnées</h2>
|
||||
<h2><?=$this->translate("Dénomination sociale & Coordonnées")?></h2>
|
||||
<div class="paragraph">
|
||||
|
||||
<?php if ( empty($this->AutrePage) && $this->accessWorldCheck) { ?>
|
||||
@ -111,7 +111,7 @@ echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Mail']);
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>Activité(s) & Chiffre d'affaires</h2>
|
||||
<h2><?=$this->translate("Activité(s) & Chiffre d'affaires")?></h2>
|
||||
<div class="paragraph">
|
||||
<table>
|
||||
<?php
|
||||
|
@ -17,7 +17,7 @@
|
||||
<?php
|
||||
if (count($this->infos->InfosIris)>0){
|
||||
$InfosIris = $this->infos->InfosIris;
|
||||
$codComIris = str_replace($InfosIris->codIris, '', $InfosIris->codComIris);
|
||||
$codComIris = str_replace($InfosIris->codIris, '', $InfosIris->codComIris);
|
||||
?>
|
||||
<br/><br/><b>Iris :</b>
|
||||
<?php if (intval($InfosIris->codIris) == 0){ ?>
|
||||
@ -27,11 +27,42 @@
|
||||
<br/>Libellé : <a title="Consulter le plan d'assemblage de la commune" href="<?=$this->url(array('controller'=>'identite', 'action'=>'iris', 'code'=>$codComIris), null, true)?>" target="_blank"><?=$InfosIris->libIris?></a>
|
||||
<img title="<?=$InfosIris->typIris?>" style="vertical-align:middle;" src="/themes/default/images/info.gif">
|
||||
<?php }?>
|
||||
<?php }?>
|
||||
<?php }?>
|
||||
</div>
|
||||
|
||||
<?php if($this->facade):?>
|
||||
<?=$this->action('facade', 'identite', null, array('infos' => $this->infos));?>
|
||||
<?php endif;?>
|
||||
<?php if ($this->source == 'google') {?>
|
||||
|
||||
<div id="infogeo_photo">
|
||||
<?=$this->action('streetview', 'identite', null, array(
|
||||
'infos' => $this->infos,
|
||||
));?>
|
||||
</div>
|
||||
|
||||
<?php } elseif ($this->source == 'mappy') {?>
|
||||
|
||||
<div><img id="pp-cb-thumb" width="300px" /></div>
|
||||
<script src="<?=$this->lienJs?>"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
var serviceHandler = function(result) {
|
||||
if (result instanceof Mappy.api.visiocity.Frontage) {
|
||||
var current = result.getCurrent();
|
||||
var img = $('<img src="' + current.getURL(320, null) +
|
||||
'" alt="' + current.getDescription() +
|
||||
'" width="300px" />');
|
||||
$('#pp-cb-thumb').replaceWith(img);
|
||||
}
|
||||
};
|
||||
var address = "<?=$this->adresse?>";
|
||||
var geo = new Mappy.api.geolocation.Geocoder();
|
||||
var photoService = new Mappy.api.visiocity.PhotoService();
|
||||
geo.geocode(address, function(result) {
|
||||
photoService.search(result[0], 'f', serviceHandler);
|
||||
}, function(error) {});
|
||||
});
|
||||
</script>
|
||||
|
||||
<?php }?>
|
||||
|
||||
</div>
|
||||
</div>
|
@ -31,7 +31,7 @@
|
||||
<?php }?>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->actif) {?>
|
||||
@ -86,13 +86,14 @@
|
||||
<?php
|
||||
if ($this->siren) {
|
||||
$href = $this->url(array('controller'=>'saisie', 'action'=>'lienfiche', 'siren'=>$this->siren),null,true);
|
||||
$hrefSuppr = $this->url(array('controller'=>'saisie', 'action'=>'liendelete', 'siren'=>$this->siren),null,true);
|
||||
} else {
|
||||
$href = $this->url(array('controller'=>'saisie', 'action'=>'lienfiche', 'idFiche'=>$this->lienref),null,true);
|
||||
$hrefSuppr = $this->url(array('controller'=>'saisie', 'action'=>'liendelete', 'idFiche'=>$this->lienref),null,true);
|
||||
}
|
||||
?>
|
||||
<a class="dialog" title="Edition fiche" href="<?=$href?>">
|
||||
Editer la fiche
|
||||
</a>
|
||||
<a class="dialog" title="Edition fiche" href="<?=$href?>">Editer la fiche</a>
|
||||
<a class="confirm" title="Fiche suppression" href="<?=$hrefSuppr; ?>">Supprimer la fiche</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php }?>
|
||||
@ -161,6 +162,7 @@ Cette entreprise est une personne physique exerçant son activité en nom propre
|
||||
elseif ($lien->MajMin=='T') echo 'TUP'; // Traiter l'affichage ou les arbres comme si %=100
|
||||
elseif ($lien->MajMin=='L') echo 'tutelle';
|
||||
elseif ($lien->MajMin=='E') echo 'franchise';
|
||||
elseif ($lien->MajMin=='M') echo 'membre';
|
||||
// elseif ($lien->MajMin=='A') echo 'absorbant';
|
||||
else echo ' ';
|
||||
?>
|
||||
@ -334,6 +336,26 @@ $('a.dialog').on('click', function(){
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
$( "a.confirm" ).on('click', function(e){
|
||||
e.preventDefault();
|
||||
var href = $(this).attr('href');
|
||||
var dialogOpts = {
|
||||
bgiframe: true,
|
||||
resizable: false,
|
||||
title: $(this).attr('title'),
|
||||
height: 140,
|
||||
modal: true,
|
||||
open: function(event, ui) {
|
||||
$(this).html('Chargement...');
|
||||
$(this).load(href);
|
||||
},
|
||||
buttons: { "Fermer": function() { $(this).dialog("close"); }},
|
||||
close: function() { $('#confirm').remove(); }
|
||||
};
|
||||
$('<div id="confirm"></div>').dialog(dialogOpts);
|
||||
return false;
|
||||
});
|
||||
<?php }?>
|
||||
</script>
|
||||
<?php }?>
|
@ -1,6 +1,9 @@
|
||||
<?php if ($this->url) {?>
|
||||
|
||||
<div id="legende-photo">Cliché à l'approche de l'adresse postale.</div>
|
||||
<img id="pp-cb-thumb" src="<?=$this->url?>" width="320" height="320" />
|
||||
|
||||
<?php if ($this->streetviewMode == 'gps') {?>
|
||||
<div>
|
||||
<a class="street-heading" href="<?=$this->url(array(
|
||||
'controller'=>'identite','action'=>'streetview', 'siret'=> $this->siret,
|
||||
@ -17,3 +20,5 @@ $('a.street-heading').click(function(e){
|
||||
});
|
||||
</script>
|
||||
<?php }?>
|
||||
|
||||
<?php }?>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData">
|
||||
<?=$this->raisonSociale?>
|
||||
<?php if($this->hasModeEdition) : ?>
|
||||
|
@ -17,7 +17,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData">
|
||||
<?=$this->raisonSociale?>
|
||||
<?php if($this->hasModeEdition) : ?>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<tr><td colspan="4" class="StyleInfoData"> </td></tr>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -1,30 +0,0 @@
|
||||
<ul class="navigation">
|
||||
<?php
|
||||
$html = array();
|
||||
foreach ($this->container as $page)
|
||||
{
|
||||
$html[] = "<li>";
|
||||
$html[] = "<h3>" . $this->menu()->htmlify($page) . "</h3>" . PHP_EOL;
|
||||
if (!empty($page->pages))
|
||||
{
|
||||
$html[] = "<div>";
|
||||
$html[] = "<ul>";
|
||||
foreach ($page->pages as $subpage)
|
||||
{
|
||||
$html[] = "<li>";
|
||||
$href = $subpage->getHref();
|
||||
$html[] = "<a href=\"{$href}\">";
|
||||
$html[] = $subpage->getLabel();
|
||||
$html[] = "</a>";
|
||||
|
||||
$html[] = "</li>";
|
||||
}
|
||||
$html[] = "</ul>";
|
||||
$html[] = "</div>";
|
||||
}
|
||||
|
||||
$html[] = "</li>";
|
||||
}
|
||||
echo join(PHP_EOL, $html);
|
||||
?>
|
||||
</ul>
|
@ -14,7 +14,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->surveillance) {?>
|
||||
|
@ -14,7 +14,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -14,7 +14,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -14,7 +14,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->surveillance) {?>
|
||||
|
@ -14,7 +14,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -14,7 +14,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||||
<td width="200" class="StyleInfoLib">Dénomination Sociale</td>
|
||||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||||
</tr>
|
||||
<?php if ($this->surveillance) {?>
|
||||
|
@ -3,7 +3,7 @@ $form = $this->form;
|
||||
?>
|
||||
<div id="center-recherche">
|
||||
<div id="recherche">
|
||||
<h3>RECHERCHE PAR ACTIONNAIRE</h3>
|
||||
<h3><?=$this->translate("RECHERCHE PAR ACTIONNAIRE")?></h3>
|
||||
|
||||
<form class="recherche" name="<?php echo $form->getName()?>"
|
||||
method="<?php echo $form->getMethod()?>" action="<?php echo $form->getAction()?>">
|
||||
|
@ -3,7 +3,7 @@ $form = $this->form;
|
||||
?>
|
||||
<div id="center-recherche">
|
||||
<div id="recherche">
|
||||
<h3>RECHERCHE DIRIGEANT</h3>
|
||||
<h3><?=$this->translate("RECHERCHE DIRIGEANT")?></h3>
|
||||
<form class="recherche" name="<?php echo $form->getName()?>"
|
||||
method="<?php echo $form->getMethod()?>" action="<?php echo $form->getAction()?>">
|
||||
<?php echo $form->type?>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<div id="center">
|
||||
<h2>DEMANDE D'INVESTIGATION</h2>
|
||||
<h2><?=$this->translate("DEMANDE D'INVESTIGATION")?></h2>
|
||||
<?php
|
||||
if ($this->form) {
|
||||
$form = $this->form;
|
||||
@ -8,11 +8,11 @@ if ($this->form) {
|
||||
<p class="StyleInfoLib"><i>Les demandes d'investigations sont liées à la recherche d'un tiers par nos services suite à une recherche infructueuse sur nos outils</i></p>
|
||||
<p class="StyleInfoLib"><i>La demande d'investigation est destinée uniquement à l'identification rigoureuse d'un tiers. Tout autre demande (commande de pièces officielles, Kbis ou Privilèges) ne sera pas traitée par nos équipes.</i></p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="paragraph">
|
||||
<form class="recherche" name="<?php echo $form->getName()?>"
|
||||
method="<?php echo $form->getMethod()?>" action="<?php echo $form->getAction()?>">
|
||||
|
||||
|
||||
<div class="row"><?php echo $form->siret?></div>
|
||||
<div class="row"><?php echo $form->raisonSociale?></div>
|
||||
<div class="row"><?php echo $form->adresse?></div>
|
||||
@ -20,17 +20,18 @@ if ($this->form) {
|
||||
<div class="row"><?php echo $form->telFax?></div>
|
||||
<div class="row"><?php echo $form->categorieJur?></div>
|
||||
<div class="row"><?php echo $form->remarque?></div>
|
||||
|
||||
|
||||
<hr style="clear:both;"/>
|
||||
|
||||
|
||||
<div class="row"><?php echo $form->email?></div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
<p><i><font color="red">*</font> : Pour qu'une demande d'investigation soit recevable, il est obligatoire d'indiquer la raison sociale et la ville de l'entité recherchée ainsi qu'un commentaire relatif au motif de la demande d'investigation.</i></p>
|
||||
<p><i><font color="red">*</font> : Pour qu'une demande d'investigation soit recevable, il est obligatoire d'indiquer la dénomination sociale et la ville de l'entité recherchée ainsi qu'un commentaire relatif au motif de la demande d'investigation.</i></p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row submit"><?php echo $form->submit?></div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
} else {
|
||||
|
@ -9,7 +9,7 @@
|
||||
</div>
|
||||
<?php }?>
|
||||
|
||||
<h3>RECHERCHE ENTREPRISE</h3>
|
||||
<h3><?=$this->translate("RECHERCHE ENTREPRISE")?></h3>
|
||||
<?php $form = $this->form; ?>
|
||||
<form class="recherche" name="<?php echo $form->getName()?>"
|
||||
method="<?=$form->getMethod()?>" action="<?=$form->getAction()?>">
|
||||
|
@ -15,7 +15,7 @@
|
||||
<p>RECHERCHE ENTREPRISE :</p>
|
||||
|
||||
<?php if (!empty($histo['params']['siret'])) {?>SIRET : <?=$histo['params']['siret']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['raisonSociale'])) {?>Raison Sociale : <?=$histo['params']['raisonSociale']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['raisonSociale'])) {?>Dénomination Sociale : <?=$histo['params']['raisonSociale']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['numero'])) {?>Numero : <?=$histo['params']['numero']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['voie'])) {?>Voie : <?=$histo['params']['voie']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['cpVille'])) {?>Code Postal / Ville : <?=$histo['params']['cpVille']?><br/><?php } ?>
|
||||
@ -84,7 +84,7 @@
|
||||
?>
|
||||
<p>RECHERCHE ACTIONNAIRE :</p>
|
||||
<?php if (!empty($histo['params']['siret'])) {?>SIRET : <?=$histo['params']['siret']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['actNomRs'])) {?>Raison Sociale / Nom : <?=$histo['params']['actNomRs']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['actNomRs'])) {?>Dénomination Sociale / Nom : <?=$histo['params']['actNomRs']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['cpVille'])) {?>CP /Ville : <?=$histo['params']['cpVille']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['pays'])) {?>Pays : <?=$histo['params']['pays']?><br/><?php } ?>
|
||||
<?php if (empty($histo['params']['pctMin'])) {?>de 0 %<?=$histo['params']['actNomRs']?><?php } ?>
|
||||
|
@ -41,8 +41,13 @@ if (!empty($this->info)) {
|
||||
<li style="list-style-type:decimal;" class="<?=$item['class']?>" type="1" value="<?=$item['position']?>">
|
||||
<b>
|
||||
<?php if ($this->IDENTITE) {?>
|
||||
<?php if ($item['source']==7 && !empty($item['sourceId'])) {?>
|
||||
<a title="Voir les liens inter entreprises de cet établissement"
|
||||
href="<?=$this->url(array('controller'=>'identite','action'=>'liens','lienref'=>$item['sourceId']),null,true)?>">
|
||||
<?php } else {?>
|
||||
<a title="Voir la fiche d'identité de cet établissement"
|
||||
href="<?=$this->url(array('controller'=>'identite','action'=>'fiche','id'=>$item['id'],'siret'=>$item['siret']),null,true)?>">
|
||||
<?php }?>
|
||||
<?php } else {?>
|
||||
<a title="Vous n'avez pas les permissions nécessaires pour accèder à la fiche identité" href="#">
|
||||
<?php }?>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<h3 style="color:#ffffff;font-size:medium;font-weight:bold;">RECHERCHE SURVEILLANCE</h3>
|
||||
<h3 style="color:#ffffff;font-size:medium;font-weight:bold;"><?=$this->translate("RECHERCHE SURVEILLANCE")?></h3>
|
||||
<form class="recherche" name="refclient" method="post" action="<?=$this->url(array(
|
||||
'controller'=>'recherche', 'action'=>'refclientliste'), null, true)?>">
|
||||
<input type="hidden" name="type" value="refclient" />
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
$form = $this->form;
|
||||
?>
|
||||
<?php $form = $this->form; ?>
|
||||
<div id="center-recherche">
|
||||
<div id="recherche">
|
||||
<h3>RECHERCHE WORLDCHECK</h3>
|
||||
<h3><?=$this->translate("RECHERCHE WORLDCHECK")?></h3>
|
||||
<form class="recherche" name="<?php echo $form->getName()?>"
|
||||
method="<?php echo $form->getMethod()?>" action="<?php echo $form->getAction()?>">
|
||||
<?=$form->type?>
|
||||
@ -29,7 +27,7 @@ function formElements()
|
||||
}
|
||||
else
|
||||
{
|
||||
$('label[for=dirNom]').text('RAISON SOCIALE / ENSEIGNE / SIGLE');
|
||||
$('label[for=dirNom]').text('DÉNOMINATION SOCIALE / ENSEIGNE / SIGLE');
|
||||
$('div#prenom').hide();
|
||||
|
||||
}
|
||||
|
@ -15,13 +15,13 @@
|
||||
</div>
|
||||
|
||||
<div class="clearfix">
|
||||
<label>Raison Sociale</label>
|
||||
<label>Dénomination Sociale</label>
|
||||
<?=$this->raisonSociale?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<h2>Raison sociale et coordonnées</h2>
|
||||
<h2>Dénomination sociale et coordonnées</h2>
|
||||
<form name="form_saisie" action="<?=$this->url(array('controller'=>'saisie', 'action'=>'boursesave'), null, true)?>" method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="id" value="<?=$this->id?>"/>
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
</div>
|
||||
|
||||
<div class="fieldgrp">
|
||||
<label>Raison sociale de la société coté</label>
|
||||
<label>Dénomination sociale de la société coté</label>
|
||||
<div class="field">
|
||||
<input type="text" name="raisonSociale" value="<?=$this->raisonSociale?>" />
|
||||
</div>
|
||||
@ -94,7 +94,7 @@
|
||||
<div class="fieldgrp">
|
||||
<label>Présence d'un logo</label>
|
||||
<div class="field">
|
||||
<select name="logo"/>
|
||||
<select name="logo">
|
||||
<option value="N">Non</option>
|
||||
<option value="O">Oui</option>
|
||||
</select>
|
||||
@ -160,7 +160,7 @@
|
||||
<div class="fieldgrp">
|
||||
<label>eligibleSRD</label>
|
||||
<div class="field">
|
||||
<select name="eligibleSRD"/>
|
||||
<select name="eligibleSRD">
|
||||
<option value="N">Non</option>
|
||||
<option value="O">Oui</option>
|
||||
</select>
|
||||
@ -170,7 +170,7 @@
|
||||
<div class="fieldgrp">
|
||||
<label>eligiblePEA</label>
|
||||
<div class="field">
|
||||
<select name="eligiblePEA"/>
|
||||
<select name="eligiblePEA">
|
||||
<option value="N">Non</option>
|
||||
<option value="O">Oui</option>
|
||||
</select>
|
||||
|
75
application/views/default/scripts/saisie/contact.phtml
Normal file
75
application/views/default/scripts/saisie/contact.phtml
Normal file
@ -0,0 +1,75 @@
|
||||
<?php if ($this->post) {?>
|
||||
|
||||
<?php if ($this->msg) {?>
|
||||
<?=$this->msg?>
|
||||
<?php } else {?>
|
||||
<p>Opération effectué.</p>
|
||||
<?php }?>
|
||||
|
||||
<script>
|
||||
$('#dialog').dialog({ buttons: [
|
||||
{ text: "Fermer", click: function() { $(this).dialog("close"); } }
|
||||
] });
|
||||
</script>
|
||||
|
||||
<?php } else {?>
|
||||
|
||||
<?php if ($this->mode == 'delete') {?>
|
||||
|
||||
<p>Supprimer l'élément id=<?=$this->id?> ?</p>
|
||||
|
||||
<form name="contact" action="<?=$this->url(array('controller'=>'saisie','action'=>'contact'),null,true)?>" method="post">
|
||||
<input type="hidden" name="id" value="<?=$this->id?>"/>
|
||||
</form>
|
||||
|
||||
<?php } else {?>
|
||||
|
||||
<form name="contact" action="<?=$this->url(array('controller'=>'saisie','action'=>'contact'),null,true)?>" method="post">
|
||||
<?php if ($this->id) {?>
|
||||
<input type="hidden" name="id" value="<?=$this->id?>"/>
|
||||
<?php }?>
|
||||
<input type="hidden" name="siret" value="<?=$this->siret?>"/>
|
||||
<div>
|
||||
<label>Type</label>
|
||||
<select name="type">
|
||||
<option value="tel"<?php if($this->type=='tel') {echo ' selected';}?>>Téléphone</option>
|
||||
<option value="fax"<?php if($this->type=='fax') {echo ' selected';}?>>Fax</option>
|
||||
<option value="web"<?php if($this->type=='web') {echo ' selected';}?>>Site Web</option>
|
||||
<option value="mail"<?php if($this->type=='mail') {echo ' selected';}?>>Email</option>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<label>Valeur</label>
|
||||
<input type="text" name="" value="<?=$this->value?>">
|
||||
</div>
|
||||
<p>
|
||||
Téléphone france saisit sans séparateur, maximum 10 chiffres (format: XXXXXXXXXX)
|
||||
<br/>Site Web avec http://
|
||||
</p>
|
||||
<div>
|
||||
<label>Info</label>
|
||||
<select name="info">
|
||||
<option value="">-</option>
|
||||
<?php foreach( $this->telinfo as $txt ) {?>
|
||||
<option <?php if($txt == $this->info) { echo ' selected'; }?>><?=$txt?></option>
|
||||
<?php }?>
|
||||
</select>
|
||||
<span>Uniquement pour les téléphones</span>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<?php }?>
|
||||
|
||||
<script>
|
||||
$('#dialog').dialog({ buttons: [
|
||||
{ text: "Enregistrer", click: function() {
|
||||
var form = $('form[name=contact]');
|
||||
$.post(form.attr('action'), form.serialize(), function(data){
|
||||
form.replaceWith(data);
|
||||
}).fail(function(){ alert('Unknow error'); });
|
||||
} },
|
||||
{ text: "Annuler", click: function() { $(this).dialog("close"); } }
|
||||
] });
|
||||
</script>
|
||||
|
||||
<?php }?>
|
@ -29,7 +29,7 @@
|
||||
</div>
|
||||
|
||||
<div class="clearfix">
|
||||
<label>Raison Sociale</label>
|
||||
<label>Dénomination Sociale</label>
|
||||
<?php
|
||||
echo $this->etab->Nom;
|
||||
if ($this->etab->Nom2!='') echo ' / '.$this->etab->Nom2;
|
||||
@ -74,7 +74,7 @@ else
|
||||
<div id="formLogo"></div>
|
||||
</div>
|
||||
|
||||
<h2>Raison sociale et coordonnées</h2>
|
||||
<h2>Dénomination sociale et coordonnées</h2>
|
||||
<form name="form_saisie" action="<?=$this->url(array('controller'=>'saisie', 'action'=>'save'), null, true)?>" method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="siret" value="<?=$this->siret?>"/>
|
||||
<input type="hidden" name="id" value="<?=$this->id?>"/>
|
||||
|
@ -23,7 +23,7 @@ span.poste input { width:50px; }
|
||||
</div>
|
||||
|
||||
<div class="clearfix">
|
||||
<label>Raison Sociale</label>
|
||||
<label>Dénomination Sociale</label>
|
||||
<?=$this->raisonSociale?>
|
||||
</div>
|
||||
|
||||
|
@ -269,6 +269,9 @@ $('select[name=MajMin]').on('change', function(e){
|
||||
if ($(this).val()=='T' || $(this).val()=='F' ) {
|
||||
$('input[name=PDetention]').val(0);
|
||||
$('input[name=Pvote]').val(0);
|
||||
} else if ($(this).val()=='M' || $(this).val()=='M' ) {
|
||||
$('input[name=PDetention]').val(0);
|
||||
$('input[name=Pvote]').val(0);
|
||||
}
|
||||
});
|
||||
|
||||
|
26
application/views/default/scripts/saisie/liendelete.phtml
Normal file
26
application/views/default/scripts/saisie/liendelete.phtml
Normal file
@ -0,0 +1,26 @@
|
||||
<?php if (!$this->message) {?>
|
||||
<div id='message'>Supprimer la fiche?</div>
|
||||
<script>
|
||||
$('#confirm').dialog({ buttons: [
|
||||
{ text: "Oui", click: function() {
|
||||
$('div#message').text('Suppression en process...');
|
||||
$(".ui-dialog-buttonpane button").hide();
|
||||
$(".ui-dialog-buttonpane button:contains('Fermer')").show();
|
||||
$(".ui-dialog-buttonpane button").button("option", "disabled", true);
|
||||
$.post('/saisie/liendelete', {idFiche: '<?=$this->id ?>'}, function(data) {
|
||||
$('div#message').html(data);
|
||||
$(".ui-dialog-buttonpane button").button("option", "disabled", false);
|
||||
});
|
||||
}},
|
||||
{ text: "Non", click: function() { $(this).dialog('close'); }},
|
||||
{ text: "Fermer", click: function() {
|
||||
$(this).dialog('close');
|
||||
//window.location = '/recherche/entreprise';
|
||||
}}
|
||||
] });
|
||||
|
||||
$(".ui-dialog-buttonpane button:contains('Fermer')").hide();
|
||||
</script>
|
||||
<?php } else { ?>
|
||||
<div id='message'><?=$this->message ?></div>
|
||||
<?php }?>
|
@ -30,13 +30,20 @@ div#etranger { display:none; }
|
||||
<?php }?>
|
||||
|
||||
<div class="fieldgrp">
|
||||
<label>Raison sociale</label>
|
||||
<label>Dénomination sociale</label>
|
||||
<div class="field">
|
||||
<input type="text" name="nom" value="<?=$this->RS?>"/>
|
||||
<a href="#" id="google">Recherche Google</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="fieldgrp">
|
||||
<label>Sigle</label>
|
||||
<div class="field">
|
||||
<input type="text" name="sigle" value="<?=$this->sigle?>"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="fieldgrp">
|
||||
<label>Adresse</label>
|
||||
<div class="field">
|
||||
|
@ -64,7 +64,7 @@
|
||||
<label>Siren</label>
|
||||
<div class="field">
|
||||
<input type="text" name="siren" value=""/>
|
||||
<a id="infors" href="#">Obtention Raison Sociale</a>,
|
||||
<a id="infors" href="#">Obtention Dénomination Sociale</a>,
|
||||
<a target="_blank" href="/">Rechercher sur Extranet</a>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -16,12 +16,19 @@ if ($this->actif==1){
|
||||
</div>
|
||||
|
||||
<div class="fieldgrp">
|
||||
<label>Raison sociale</label>
|
||||
<label>Dénomination sociale</label>
|
||||
<div class="field">
|
||||
<input type="text" name="nom" value="<?=$this->nom?>"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="fieldgrp">
|
||||
<label>Sigle</label>
|
||||
<div class="field">
|
||||
<input type="text" name="sigle" value="<?=$this->sigle?>"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="fieldgrp">
|
||||
<label>Adresse</label>
|
||||
<div class="field">
|
||||
@ -188,6 +195,33 @@ $('input[name=isin]').change(function(e){
|
||||
else {$('input[name=isin]').css("border-color", "");}
|
||||
});
|
||||
});
|
||||
|
||||
function cpville(inputFld, outputFld, countrySel=null, countryVal=null) {
|
||||
$('input[name='+inputFld+']').autocomplete({
|
||||
minLength: 4,
|
||||
delay: 250,
|
||||
source: function(request, response) {
|
||||
var cpVille = $('input[name='+inputFld+']').val();
|
||||
$.getJSON('<?=$this->url(array('controller'=>'saisie','action'=>'citysearch'),null,true)?>', { cpville: cpVille },
|
||||
function(data) { response(data); }
|
||||
);
|
||||
},
|
||||
select: function( event, ui ) {
|
||||
var text = ui.item.label;
|
||||
text = text.replace(ui.item.value+': ','');
|
||||
if (inputFld==outputFld) {
|
||||
ui.item.value = text;
|
||||
}
|
||||
$('input[name='+inputFld+']').attr('value', ui.item.value);
|
||||
$('input[name='+outputFld+']').attr('value', text);
|
||||
if (countrySel!=null && countryVal!=null){
|
||||
$('select[name='+countrySel+']').val(countryVal);
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
cpville('adresse_cp', 'adresse_ville');
|
||||
</script>
|
||||
|
||||
<?php } else {?>
|
||||
|
@ -93,23 +93,33 @@ $('input[name=naissance_date]').datepicker({ changeMonth: true, changeYear: true
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$('input[name=adresse_cp]').autocomplete({
|
||||
minLength: 4,
|
||||
delay: 250,
|
||||
source: function(request, response) {
|
||||
var cpVille = $('input[name=adresse_cp]').val();
|
||||
$.getJSON('<?=$this->url(array('controller'=>'saisie','action'=>'citysearch'),null,true)?>', { cpville: cpVille },
|
||||
function(data) { response(data); }
|
||||
);
|
||||
},
|
||||
select: function( event, ui ) {
|
||||
var text = ui.item.label;
|
||||
text = text.replace(ui.item.value+': ','');
|
||||
$(this).val(ui.item.value);
|
||||
$('input[name=adresse_ville]').val(text);
|
||||
$('select[name=adresse_pays]').val('FRA');
|
||||
}
|
||||
})
|
||||
function cpville(inputFld, outputFld, countrySel=null, countryVal=null) {
|
||||
$('input[name='+inputFld+']').autocomplete({
|
||||
minLength: 4,
|
||||
delay: 250,
|
||||
source: function(request, response) {
|
||||
var cpVille = $('input[name='+inputFld+']').val();
|
||||
$.getJSON('<?=$this->url(array('controller'=>'saisie','action'=>'citysearch'),null,true)?>', { cpville: cpVille },
|
||||
function(data) { response(data); }
|
||||
);
|
||||
},
|
||||
select: function( event, ui ) {
|
||||
var text = ui.item.label;
|
||||
text = text.replace(ui.item.value+': ','');
|
||||
if (inputFld==outputFld) {
|
||||
ui.item.value = text;
|
||||
}
|
||||
$('input[name='+inputFld+']').attr('value', ui.item.value);
|
||||
$('input[name='+outputFld+']').attr('value', text);
|
||||
if (countrySel!=null && countryVal!=null){
|
||||
$('select[name='+countrySel+']').val(countryVal);
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
cpville('adresse_cp', 'adresse_ville', 'adresse_pays', 'FRA');
|
||||
cpville('naissance_lieu', 'naissance_lieu', 'naissance_dept_pays', 'FRA');
|
||||
</script>
|
||||
|
||||
<div class="fieldgrp">
|
||||
|
@ -71,11 +71,11 @@ select, input {
|
||||
</div>
|
||||
<div class="StyleInfoData" style="float:left; margin-top:20px; ">
|
||||
<div id='dateInsert'>
|
||||
<?php $date = new zend_Date($getcutoff['dateInsert'], 'yyyy-MM-dd')?>
|
||||
<?php $date = new Zend_Date($getcutoff['dateInsert'], 'yyyy-MM-dd')?>
|
||||
<?=$date->toString('dd/MM/yyyy')?>
|
||||
</div>
|
||||
<div>
|
||||
<?php $date = new zend_Date($getcutoff['dateUpdate'], 'yyyy-MM-dd')?>
|
||||
<?php $date = new Zend_Date($getcutoff['dateUpdate'], 'yyyy-MM-dd')?>
|
||||
<?=$date->toString('dd/MM/yyyy')?>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -50,7 +50,7 @@ par
|
||||
<select name="tri">
|
||||
<option value="siren"<?=($this->tri=='siren')? ' selected' : ''?>>Siren</option>
|
||||
<option value="ref"<?=($this->tri=='ref')? ' selected' : ''?>>Référence</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Raison Sociale</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Dénomination Sociale</option>
|
||||
<option value="dateAjout"<?=($this->tri=='dateAjout')? ' selected' : ''?>>Date d'ajout</option>
|
||||
<option value="dateDerEnvoi"<?=($this->tri=='dateDerEnvoi')? ' selected' : ''?>>Date d'envoi</option>
|
||||
</select>
|
||||
@ -58,7 +58,7 @@ par
|
||||
|
||||
<div class="paragraph" id="formSurveillance">
|
||||
<form name="recherche" action="<?=$this->url(array('controller'=>'surveillance', 'action'=>'liste'))?>">
|
||||
<input type="text" name="q" class="search" value="<?=($this->q != null)? $this->q : "Siren, Référence, Raison Sociale"?>" />
|
||||
<input type="text" name="q" class="search" value="<?=($this->q != null)? $this->q : "Siren, Référence, Dénomination Sociale"?>" />
|
||||
<input type="submit" value="Rechercher" class="submit"/>
|
||||
</form>
|
||||
</div>
|
||||
@ -89,7 +89,7 @@ par
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="75">Siren</th>
|
||||
<th width="150">Raison Sociale</th>
|
||||
<th width="150">Dénomination Sociale</th>
|
||||
<th width="90">Référence</th>
|
||||
<th width="150">Surveillance</th>
|
||||
<th width="75">Ajout le</th>
|
||||
@ -276,11 +276,11 @@ $(document).ready(function() {
|
||||
});
|
||||
|
||||
$('input[name=q]').focusin(function(){
|
||||
var txt = 'Siren, Référence, Raison Sociale';
|
||||
var txt = 'Siren, Référence, Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' || val == txt ) { $(this).val(''); }
|
||||
}).focusout(function(){
|
||||
var txt = 'Siren, Référence, Raison Sociale';
|
||||
var txt = 'Siren, Référence, Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' ){ $(this).val(txt); }
|
||||
});
|
||||
|
@ -25,7 +25,7 @@ Tri par
|
||||
<select name="tri">
|
||||
<option value="siren"<?=($this->tri=='siren')? ' selected' : ''?>>Siren</option>
|
||||
<option value="ref"<?=($this->tri=='ref')? ' selected' : ''?>>Référence</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Raison Sociale</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Dénomination Sociale</option>
|
||||
<option value="dateAjout"<?=($this->tri=='dateAjout')? ' selected' : ''?>>Date d'ajout</option>
|
||||
<option value="dateDerEnvoi"<?=($this->tri=='dateDerEnvoi')? ' selected' : ''?>>Date d'envoi</option>
|
||||
</select>
|
||||
@ -35,7 +35,7 @@ Tri par
|
||||
<form name="recherche" action="<?=$this->url(array('controller'=>'surveillance', 'action'=>'portefeuille'))?>">
|
||||
<input type="text" name="siren" class="search" value="<?=($this->siren != null)? $this->siren : "Siren"?>" /><br/>
|
||||
<input type="text" name="ref" class="search" value="<?=($this->ref != null)? $this->ref : "Référence"?>" /><br/>
|
||||
<input type="text" name="rs" class="search" value="<?=($this->rs != null)? $this->rs : "Raison Sociale"?>" />
|
||||
<input type="text" name="rs" class="search" value="<?=($this->rs != null)? $this->rs : "Dénomination Sociale"?>" />
|
||||
<input type="submit" value="Rechercher" class="submit"/>
|
||||
</form>
|
||||
</div>
|
||||
@ -68,7 +68,7 @@ if (count($this->portefeuille)>0) {
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Siren</th>
|
||||
<th>Raison Sociale</th>
|
||||
<th>Dénomination Sociale</th>
|
||||
<th>Référence</th>
|
||||
<th class="score">Score</th>
|
||||
<th>Encours demandé</th>
|
||||
@ -222,11 +222,11 @@ $(document).ready(function(){
|
||||
});
|
||||
|
||||
$('input[name=rs]').focusin(function(){
|
||||
var txt = 'Raison Sociale';
|
||||
var txt = 'Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' || val == txt ) { $(this).val(''); }
|
||||
}).focusout(function(){
|
||||
var txt = 'Raison Sociale';
|
||||
var txt = 'Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' ){ $(this).val(txt); }
|
||||
});
|
||||
|
@ -7,7 +7,7 @@ Tous les utilisateurs</label>
|
||||
|
||||
<label>Détails</label>
|
||||
<input type="checkbox" name="ConsoDetails" value="1" class="noborder"/>
|
||||
|
||||
|
||||
<select name="ConsoMois">
|
||||
<option value="-">Mois/Année</option>
|
||||
<?php
|
||||
@ -25,4 +25,4 @@ for ($i = 0; $i <= 12; ++$i) {
|
||||
'idClient' => $this->idClient,
|
||||
))?>" id="dl">Ok</a>
|
||||
</div>
|
||||
<div id="dlMsg" class="infoData last"></div>
|
||||
<div class="infoTitle StyleInfoLib"></div><div id="dlMsg" class="infoData last"></div>
|
@ -1,4 +1,4 @@
|
||||
<script language="Javascript">
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('a.delete').on('click', function(e){
|
||||
e.preventDefault();
|
||||
|
@ -604,13 +604,14 @@ $(document).ready(function(){
|
||||
<input type="password" name="pass" id="password" value="" required />
|
||||
</p>
|
||||
<!-- <input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login">Remember</label> -->
|
||||
<script>document.write('<input name="screenSize" type="hidden" value="'+ screen.width +'x'+screen.height + '">');</script>
|
||||
<script>document.write('<input name="screenSize" type="hidden" value="'+ screen.width +'x'+screen.height + '">');</script>
|
||||
<input type="submit" id="submit" class="login" value="Connexion" />
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<div>
|
||||
<a class="dlg" title="Identifiants oubliés ?" href="<?=$this->url(array('controller'=>'user', 'action'=>'motpasse'))?>">Identifiants oubliés ?</a>
|
||||
<a class="dlg" title="<?=$this->translate("Identifiants oubliés ?")?>" href="<?=$this->url(array('controller'=>'user', 'action'=>'motpasse'))?>">
|
||||
<?=$this->translate("Identifiants oubliés ?")?></a>
|
||||
<script>
|
||||
$('a.dlg').on('click', function(e){
|
||||
e.preventDefault();
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php if ($this->ajax) {?>
|
||||
|
||||
<h4 class="logout">Vous avez été déconnecté.</h4>
|
||||
<h5 class="logout">Veuillez cliquer <a href="<?=$this->url?>">ici</a>
|
||||
<h4 class="logout"><?=$this->translate("Vous avez été déconnecté.")?></h4>
|
||||
<h5 class="logout"><?=$this->translate("Veuillez cliquer")?> <a href="<?=$this->url?>"><?=$this->translate("ici")?></a>
|
||||
</h5>
|
||||
|
||||
<?php } else {?>
|
||||
@ -13,11 +13,11 @@
|
||||
<?=$this->headTitle();?>
|
||||
</head>
|
||||
<body>
|
||||
<h4 class="logout">Vous avez été déconnecté.</h4>
|
||||
<h4 class="logout"><?=$this->translate("Vous avez été déconnecté.")?></h4>
|
||||
<p><?=$this->message?></p>
|
||||
<h5 class="logout">
|
||||
Si cette page ne disparait pas au bout de <?=$this->refresh?> seconde(s),
|
||||
veuillez cliquer <a href="<?=$this->url?>">ici</a>
|
||||
<?=$this->translate("Si cette page ne disparait pas au bout de %1$s seconde(s)", $this->refresh)?>,
|
||||
<?=$this->translate("veuillez cliquer ")?><a href="<?=$this->url?>"><?=$this->translate("ici")?></a>
|
||||
</h5>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -119,7 +119,7 @@ Tous les champs (*) sont obligatoires : en cas de données manquantes ou erroné
|
||||
<input id="frm" type="text" name="service" value="<?=$params['service']; ?>" required/>
|
||||
</div>
|
||||
<div id="stl">
|
||||
<label id="frm">Raison Sociale* :</label>
|
||||
<label id="frm">Dénomination Sociale* :</label>
|
||||
<input id="frm" type="text" name="rsociale" value="<?=$params['rsociale']; ?>" required/>
|
||||
</div>
|
||||
|
||||
|
@ -26,7 +26,7 @@ if ($this->form) {
|
||||
<div class="row"><?php echo $form->email?></div>
|
||||
|
||||
<div class="row">
|
||||
<p><i><font color="red">*</font> : Pour qu'une demande d'investigation soit recevable, il est obligatoire d'indiquer la raison sociale et la ville de l'entité recherchée ainsi qu'un commentaire relatif au motif de la demande d'investigation.</i></p>
|
||||
<p><i><font color="red">*</font> : Pour qu'une demande d'investigation soit recevable, il est obligatoire d'indiquer la Dénomination sociale et la ville de l'entité recherchée ainsi qu'un commentaire relatif au motif de la demande d'investigation.</i></p>
|
||||
</div>
|
||||
|
||||
<div class="row submit"><?php echo $form->submit?></div>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<p>RECHERCHE ENTREPRISE :</p>
|
||||
|
||||
<?php if (!empty($histo['params']['siret'])) {?>SIRET : <?=$histo['params']['siret']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['raisonSociale'])) {?>Raison Sociale : <?=$histo['params']['raisonSociale']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['raisonSociale'])) {?>Dénomination Sociale : <?=$histo['params']['raisonSociale']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['numero'])) {?>Numero : <?=$histo['params']['numero']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['voie'])) {?>Voie : <?=$histo['params']['voie']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['cpVille'])) {?>Code Postal / Ville : <?=$histo['params']['cpVille']?><br/><?php } ?>
|
||||
@ -84,7 +84,7 @@
|
||||
?>
|
||||
<p>RECHERCHE ACTIONNAIRE :</p>
|
||||
<?php if (!empty($histo['params']['siret'])) {?>SIRET : <?=$histo['params']['siret']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['actNomRs'])) {?>Raison Sociale / Nom : <?=$histo['params']['actNomRs']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['actNomRs'])) {?>Dénomination Sociale / Nom : <?=$histo['params']['actNomRs']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['cpVille'])) {?>CP /Ville : <?=$histo['params']['cpVille']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['pays'])) {?>Pays : <?=$histo['params']['pays']?><br/><?php } ?>
|
||||
<?php if (empty($histo['params']['pctMin'])) {?>de 0 %<?=$histo['params']['actNomRs']?><?php } ?>
|
||||
|
@ -201,6 +201,7 @@ TRANSLATE
|
||||
Add more precise search string by configuring in the Sources keywords these items
|
||||
|
||||
translate
|
||||
plural:1,2
|
||||
_
|
||||
setLabel
|
||||
setValue
|
||||
|
@ -65,7 +65,7 @@ class Application_Controller_Plugin_Menu extends Zend_Controller_Plugin_Abstract
|
||||
if ($page->exportable('pdf')){
|
||||
$view->pdf = $page->filename('pdf', $request->getParams());
|
||||
}
|
||||
if ($page->exportable('xml')){
|
||||
if ($page->exportable('xml') && in_array($user->getIdClient(), array(1,147)) ){
|
||||
$view->xml = $page->filename('xml', $request->getParams());
|
||||
}
|
||||
}
|
||||
|
@ -5,12 +5,15 @@ class Application_Controller_Plugin_Xml extends Zend_Controller_Plugin_Abstract
|
||||
{
|
||||
$layout = Zend_Layout::getMVCInstance();
|
||||
if ($layout->isEnabled()) {
|
||||
|
||||
$user = new Scores_Utilisateur();
|
||||
|
||||
$controller = $this->_request->getControllerName();
|
||||
$action = $this->_request->getActionName();
|
||||
$view = $layout->getView();
|
||||
|
||||
$page = new Scores_Export_Print($controller, $action);
|
||||
if ($page->exportable('xml') && !empty($view->exportObjet)) {
|
||||
if ($page->exportable('xml') && !empty($view->exportObjet) && in_array($user->getIdClient(), array(1,147)) ) {
|
||||
$page->objectToXML($view->exportObjet, $this->_request->getParams());
|
||||
}
|
||||
}
|
||||
|
@ -14,18 +14,18 @@ class Application_Form_Login extends Zend_Form {
|
||||
);
|
||||
$this->addElement('password', 'pass',
|
||||
array(
|
||||
'label' => 'Mot de passe',
|
||||
'label' => _('Mot de passe'),
|
||||
'required' => 'true',
|
||||
)
|
||||
);
|
||||
$this->addElement('hidden', 'screenSize',
|
||||
array(
|
||||
'required' => 'false',
|
||||
)
|
||||
array(
|
||||
'required' => 'false',
|
||||
)
|
||||
);
|
||||
$this->addElement('submit', 'submit',
|
||||
array(
|
||||
'label' => 'Identification',
|
||||
'label' => _('Identification'),
|
||||
'ignore' => true,
|
||||
));
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ class Application_Form_RechercheEnquete extends Zend_Form
|
||||
'filters' => array('StringTrim'),
|
||||
'validators' => array('NotEmpty'),
|
||||
'required' => true,
|
||||
'label' => 'Raison Sociale, Enseigne, Sigle ou Nom & Prénom',
|
||||
'label' => 'Dénomination Sociale, Enseigne, Sigle ou Nom & Prénom',
|
||||
'decorators' => $this->elementDecorators,
|
||||
'attribs' => array(
|
||||
'size' => 30,
|
||||
|
@ -57,7 +57,7 @@ class Application_Form_RechercheEntreprise extends Zend_Form
|
||||
//raisonSocial
|
||||
$this->addElement('text', 'raisonSociale', array(
|
||||
'filters' => array('StringTrim'),
|
||||
'label' => 'RAISON SOCIALE / ENSEIGNE / SIGLE ',
|
||||
'label' => 'DÉNOMINATION SOCIALE / ENSEIGNE / SIGLE ',
|
||||
'required' => 'true',
|
||||
'decorators' => $this->elementDecorators,
|
||||
'attribs' => array(
|
||||
|
@ -86,10 +86,10 @@ Class GiantFunction
|
||||
{
|
||||
$description = new stdClass();
|
||||
|
||||
$description->Full = "<table><tr><td><b>Information sur le rapport</b></td></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td style='margin-left:5px'><ol><li>Identite et raison sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>";
|
||||
$description->Compact = '<table><tr><b>Information sur le rapport</b></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td><ol><li>Identite et raison sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>';
|
||||
$description->CreditRecommendation = '<table><tr><b>Information sur le rapport</b></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td><ol><li>Identite et raison sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>';
|
||||
$description->Flex = '<table><tr><b>Information sur le rapport</b></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td><ol><li>Identite et raison sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>';
|
||||
$description->Full = "<table><tr><td><b>Information sur le rapport</b></td></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td style='margin-left:5px'><ol><li>Identite et dénomination sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>";
|
||||
$description->Compact = '<table><tr><b>Information sur le rapport</b></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td><ol><li>Identite et dénomination sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>';
|
||||
$description->CreditRecommendation = '<table><tr><b>Information sur le rapport</b></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td><ol><li>Identite et dénomination sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>';
|
||||
$description->Flex = '<table><tr><b>Information sur le rapport</b></tr><tr><td>Ce rapport est composés en plusieurs parties</td></tr><tr><td><ol><li>Identite et dénomination sociale</li><li>CreditRecommandation</li><li>Dirigeants</li><li>Les Bilans (actifs, Passifs, Compte de résultats)</li><li>Les Etablissements financiés</li><li>Comportement de paiement</li><li>Les partenaires financiés</li><li>Les actionnaires</li><li>Les annonces légales</li><li>Le Score</li></ol></td></tr></table>';
|
||||
|
||||
return ($description);
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user