2009-03-23 15:01:04 +00:00
< ? php
2010-01-22 08:58:39 +00:00
header ( 'Content-Type: text/html; charset=' . CHARSET );
2010-02-23 15:27:18 +00:00
require_once 'user/user.php' ;
2009-03-23 15:01:04 +00:00
if ( ! $_SESSION [ 'connected' ])
2010-02-23 15:27:18 +00:00
{
2010-03-09 08:49:23 +00:00
echo 'Vous devez être connecté afin de pouvoir utiliser cette fonctionnalité' ;
2010-02-23 15:27:18 +00:00
exit ;
2010-03-09 08:49:23 +00:00
}
2010-02-23 15:27:18 +00:00
elseif ( ! hasModeEdition () )
2009-07-21 15:08:08 +00:00
{
2010-03-09 08:49:23 +00:00
echo 'Vous n\'avez pas les droits nécessaires pour utiliser cette fonctionnalité' ;
2010-02-23 15:27:18 +00:00
exit ;
2009-03-23 15:01:04 +00:00
}
2010-03-09 08:49:23 +00:00
$client = new SoapClient ( null , array (
2010-02-23 15:27:18 +00:00
'trace' => 1 ,
'soap_version' => SOAP_1_1 ,
'location' => WEBSERVICE_URL ,
'uri' => WEBSERVICE_URI ,
'login' => $_SESSION [ 'tabInfo' ][ 'login' ],
'password' => $_SESSION [ 'tabInfo' ][ 'password' ],
));
$tribunal = isset ( $_REQUEST [ 'tribunal' ]) ? $_REQUEST [ 'tribunal' ] : '' ;
$idMandataire = isset ( $_REQUEST [ 'id' ]) ? $_REQUEST [ 'id' ] : '' ;
$tabMandataires = array ();
$message = '' ;
//Mode edition
if ( $idMandataire != '' ){
$idMandataire = ( int ) substr ( $idMandataire , 1 );
try {
$O = $client -> getMandataire ( $idMandataire );
$tabMandataires = $O [ 'result' ];
$firephp -> log ( $tabMandataires , 'Edition - tabMandataires' );
} catch ( SoapFault $fault ){
$firephp -> log ( $fault , 'fault' );
$message = 'Une erreur est survenue durant la recherche de mandataire.' ;
2009-03-23 15:01:04 +00:00
}
2010-02-23 15:27:18 +00:00
} else {
$tabMandataires = $_REQUEST [ 'tabMandataires' ];
}
if ( $tribunal != '' ){
//La cour d'appel suivant le tribunal sélectionné
$tmp = $client -> getIdCoursAppel ( $tribunal );
$codeCourAppel = $tmp ;
//Les cours d'appel
require_once realpath ( dirname ( __FILE__ ) . '/coursAppel.php' );
//Les tribunaux
$tmp = $client -> getTribunaux ( array ( 'C' , 'I' , 'G' )); //
$tribunaux = $tmp [ 'result' ];
} else {
$message = 'Pas de tribunal sélectionné.' ;
}
2009-03-23 15:01:04 +00:00
?>
2010-03-09 10:28:44 +00:00
< div id = " dMessage " >< ? = $message ?> </div>
2009-03-23 15:01:04 +00:00
2010-02-23 15:27:18 +00:00
< form id = " frmCreateMandataires " name = " mandataires " method = " post " action = " ./pages_saisie/wsMandataire.php " >
2009-03-23 15:01:04 +00:00
2009-07-21 15:08:08 +00:00
< input type = " hidden " name = " tabMandataires[id] " value = " <?= $tabMandataires['id'] ;?> " >
2009-03-23 15:01:04 +00:00
2010-02-10 17:27:03 +00:00
< label > Siren de la société Civile < em >*</ em >:</ label >
2010-03-23 18:06:13 +00:00
< input name = " tabMandataires[sirenGrp] " type = " text " value = " <?= $tabMandataires['sirenGrp'] ;?> " maxlength = " 25 " >
2010-03-09 08:49:23 +00:00
< span class = " left " >< a href = " # " id = " getInfo_sirenGrp " > Obtenir les informations .</ a ></ span >
2009-03-23 15:01:04 +00:00
2010-02-10 17:27:03 +00:00
< label > Siren de la professions libérale :</ label >
2010-03-16 16:06:50 +00:00
< input name = " tabMandataires[sirenMand] " type = " text " value = " <?= $tabMandataires['sirenMand'] ;?> " maxlength = " 17 " >
2010-03-09 08:49:23 +00:00
< span class = " left " >< a href = " # " id = " getInfo_sirenMand " > Obtenir les informations .</ a ></ span >
2009-03-23 15:01:04 +00:00
< label > Nom < em >*</ em >:</ label >
< input name = " tabMandataires[Nom] " type = " text " value = " <?= $tabMandataires['Nom'] ;?> " maxlength = " 81 " >
< label > Prenom :</ label >
< input name = " tabMandataires[Prenom] " type = " text " value = " <?= $tabMandataires['Prenom'] ;?> " maxlength = " 21 " >
< label > Type d ' intervenant < em >*</ em >:</ label >
< select name = " tabMandataires[type] " >
< option value = " " >-</ option >
2010-02-23 15:27:18 +00:00
< option value = " A " < ? = ( $tabMandataires [ 'type' ] == 'A' ? 'selected' : '' ) ?> >Administrateur</option>
< option value = " AS " < ? = ( $tabMandataires [ 'type' ] == 'AS' ? 'selected' : '' ) ?> >Administrateur Stagiaire</option>
< option value = " H " < ? = ( $tabMandataires [ 'type' ] == 'H' ? 'selected' : '' ) ?> >Huissier</option>
< option value = " M " < ? = ( $tabMandataires [ 'type' ] == 'M' ? 'selected' : '' ) ?> >Mandataire</option>
< option value = " MS " < ? = ( $tabMandataires [ 'type' ] == 'MS' ? 'selected' : '' ) ?> >Mandataire Stagiaire</option>
< option value = " V " < ? = ( $tabMandataires [ 'type' ] == 'V' ? 'selected' : '' ) ?> >Avocat</option>
< option value = " N " < ? = ( $tabMandataires [ 'type' ] == 'N' ? 'selected' : '' ) ?> >Notaire</option>
< option value = " T " < ? = ( $tabMandataires [ 'type' ] == 'T' ? 'selected' : '' ) ?> >Autre</option>
2009-03-23 15:01:04 +00:00
</ select >
2010-02-10 17:27:03 +00:00
< label > Cours d ' appel par defaut n°1 < em >*</ em >:</ label >
2009-03-23 15:01:04 +00:00
< select name = " tabMandataires[coursAppel] " >
< option value = " " > Choix de la cours d ' appel </ option >
< ? php
2010-02-23 15:27:18 +00:00
foreach ( $coursAppel as $value )
{
$select = '' ;
2010-03-09 08:49:23 +00:00
$tabMandataires [ 'coursAppel' ] == $value [ 'triId' ] ?
2010-02-23 15:27:18 +00:00
$select = ' selected' : '' ;
2010-03-09 08:49:23 +00:00
echo '<option value="' . $value [ 'triId' ] . '"' . $select . '>' .
2010-02-23 15:27:18 +00:00
$value [ 'triNom' ] . '</option>' ;
}
2009-03-23 15:01:04 +00:00
?>
</ select >
2010-02-10 17:27:03 +00:00
< label > Cours d ' appel par defaut n°2 :</ label >
2009-03-23 15:01:04 +00:00
< select name = " tabMandataires[coursAppel2] " >
< option value = " " > Choix de la cours d ' appel </ option >
< ? php
2010-02-23 15:27:18 +00:00
foreach ( $coursAppel as $value )
{
$select = '' ;
2010-03-09 08:49:23 +00:00
$tabMandataires [ 'coursAppel2' ] == $value [ 'triId' ] ?
2010-02-23 15:27:18 +00:00
$select = ' selected' : '' ;
2010-03-09 08:49:23 +00:00
echo '<option value="' . $value [ 'triId' ] . '"' . $select . '>' .
2010-02-23 15:27:18 +00:00
$value [ 'triNom' ] . '</option>' ;
}
2009-03-23 15:01:04 +00:00
?>
</ select >
2010-02-10 17:27:03 +00:00
< label > Libellé du tribunal < em >*</ em >:</ label >
2009-03-23 15:01:04 +00:00
< select name = " tabMandataires[tribunal] " >
2009-03-27 08:34:36 +00:00
< option value = " " > Choix du tribunal </ option >
2009-07-21 15:08:08 +00:00
< ? php
2010-03-09 08:49:23 +00:00
foreach ( $tribunaux as $code => $lib )
2010-02-23 15:27:18 +00:00
{
$select = '' ;
if ( $tabMandataires [ 'tribunal' ] == $code ) $select = ' selected' ;
elseif ( $code == $tribunal ) $select = ' selected' ;
if ( strlen ( $lib ) > 39 ) $lib = substr ( $lib , 0 , 41 ) . '...' ;
echo '<option value="' . $code . '"' . $select . '>' . $lib . '</option>' ;
}
2009-03-23 15:01:04 +00:00
?>
</ select >
2010-02-10 17:27:03 +00:00
< span class = " left " > ( Vérifier le tribunal du mandataire ) </ span >
2009-03-23 15:01:04 +00:00
< label > Forme Juridique < em >*</ em >:</ label >
< select name = " tabMandataires[Statut] " >
< option value = " " selected >-</ option >
2010-02-23 15:27:18 +00:00
< option value = " 1500 " < ? = ( $tabMandataires [ 'Statut' ] == '1500' ? 'selected' : '' ) ?> >Profession libérale</option>
< option value = " 1400 " < ? = ( $tabMandataires [ 'Statut' ] == '1400' ? 'selected' : '' ) ?> >Officier public ou ministériel</option>
< option value = " 1800 " < ? = ( $tabMandataires [ 'Statut' ] == '1800' ? 'selected' : '' ) ?> >Associé Gérant</option>
< option value = " 1900 " < ? = ( $tabMandataires [ 'Statut' ] == '1900' ? 'selected' : '' ) ?> >Personne physique</option>
< option value = " 5485 " < ? = ( $tabMandataires [ 'Statut' ] == '5485' ? 'selected' : '' ) ?> >Société d'exercice libéral à responsabilité limitée</option>
< option value = " 6565 " < ? = ( $tabMandataires [ 'Statut' ] == '6565' ? 'selected' : '' ) ?> >SCP de notaires</option>
< option value = " 6561 " < ? = ( $tabMandataires [ 'Statut' ] == '6561' ? 'selected' : '' ) ?> >SCP d'avocats</option>
< option value = " 1099 " < ? = ( $tabMandataires [ 'Statut' ] == '1099' ? 'selected' : '' ) ?> >SCP d'huissiers</option>
< option value = " 2210 " < ? = ( $tabMandataires [ 'Statut' ] == '2210' ? 'selected' : '' ) ?> >Société créée de fait entre personnes physiques</option>
< option value = " 5499 " < ? = ( $tabMandataires [ 'Statut' ] == '5499' ? 'selected' : '' ) ?> >Autre société à responsabilité limitée</option>
< option value = " 2900 " < ? = ( $tabMandataires [ 'Statut' ] == '2900' ? 'selected' : '' ) ?> >Autre groupement de droit privé non doté de la personnalité morale</option>
< option value = " 6585 " < ? = ( $tabMandataires [ 'Statut' ] == '6585' ? 'selected' : '' ) ?> >SCP</option>
< option value = " 9220 " < ? = ( $tabMandataires [ 'Statut' ] == '9220' ? 'selected' : '' ) ?> >ASSOCIATION</option>
< option value = " 6562 " < ? = ( $tabMandataires [ 'Statut' ] == '6562' ? 'selected' : '' ) ?> >SCP d'avocats aux conseil</option>
< option value = " 6599 " < ? = ( $tabMandataires [ 'Statut' ] == '6599' ? 'selected' : '' ) ?> >SCP</option>
< option value = " 6563 " < ? = ( $tabMandataires [ 'Statut' ] == '6563' ? 'selected' : '' ) ?> >SCP d'avoués d'appel</option>
< option value = " 5710 " < ? = ( $tabMandataires [ 'Statut' ] == '5710' ? 'selected' : '' ) ?> >SAS</option>
< option value = " 6566 " < ? = ( $tabMandataires [ 'Statut' ] == '5710' ? 'selected' : '' ) ?> >SCP de commissaires-priseurs</option>
< option value = " 5498 " < ? = ( $tabMandataires [ 'Statut' ] == '5498' ? 'selected' : '' ) ?> >SARLU</option>
< option value = " 5585 " < ? = ( $tabMandataires [ 'Statut' ] == '5585' ? 'selected' : '' ) ?> >SELAFA</option>
< option value = " 6568 " < ? = ( $tabMandataires [ 'Statut' ] == '6568' ? 'selected' : '' ) ?> >SCP de conseils juridiques</option>
< option value = " 3220 " < ? = ( $tabMandataires [ 'Statut' ] == '3220' ? 'selected' : '' ) ?> >Société étrangère non immatriculée au RCS</option>
< option value = " 1200 " < ? = ( $tabMandataires [ 'Statut' ] == '1200' ? 'selected' : '' ) ?> >Commerçant</option>
< option value = " 6567 " < ? = ( $tabMandataires [ 'Statut' ] == '6567' ? 'selected' : '' ) ?> >SCP de greffiers de tribunal de commerce</option>
< option value = " 5599 " < ? = ( $tabMandataires [ 'Statut' ] == '5599' ? 'selected' : '' ) ?> >SARL</option>
< option value = " 6220 " < ? = ( $tabMandataires [ 'Statut' ] == '6220' ? 'selected' : '' ) ?> >GIE</option>
< option value = " 2110 " < ? = ( $tabMandataires [ 'Statut' ] == '2110' ? 'selected' : '' ) ?> >Indivision entre personnes physiques</option>
< option value = " 2385 " < ? = ( $tabMandataires [ 'Statut' ] == '2385' ? 'selected' : '' ) ?> >Société en participation de professions libérales</option>
< option value = " 2310 " < ? = ( $tabMandataires [ 'Statut' ] == '2310' ? 'selected' : '' ) ?> >Société en participation entre personnes physiques</option>
< option value = " 3120 " < ? = ( $tabMandataires [ 'Statut' ] == '3120' ? 'selected' : '' ) ?> >Société étrangère immatriculée au RCS</option>
< option value = " 2220 " < ? = ( $tabMandataires [ 'Statut' ] == '2220' ? 'selected' : '' ) ?> >Société créée de fait avec personne morale</option>
< option value = " 5685 " < ? = ( $tabMandataires [ 'Statut' ] == '5685' ? 'selected' : '' ) ?> >Société d'exercice libéral à forme anonyme à directoire</option>
< option value = " 9900 " < ? = ( $tabMandataires [ 'Statut' ] == '9900' ? 'selected' : '' ) ?> >Autre personne morale de droit privé</option>
< option value = " 1700 " < ? = ( $tabMandataires [ 'Statut' ] == '1700' ? 'selected' : '' ) ?> >Agent commercial</option>
< option value = " 5202 " < ? = ( $tabMandataires [ 'Statut' ] == '5202' ? 'selected' : '' ) ?> >SNC</option>
< option value = " 1100 " < ? = ( $tabMandataires [ 'Statut' ] == '1100' ? 'selected' : '' ) ?> >Artisan Commerçant</option>
< option value = " 5720 " < ? = ( $tabMandataires [ 'Statut' ] == '5720' ? 'selected' : '' ) ?> >Société par actions simplifiée à associé unique ou société par actions simplifiée unipersonnelle</option>
< option value = " 5385 " < ? = ( $tabMandataires [ 'Statut' ] == '5385' ? 'selected' : '' ) ?> >Société d'exercice libéral en commandite par action</option>
< option value = " 9260 " < ? = ( $tabMandataires [ 'Statut' ] == '9260' ? 'selected' : '' ) ?> >Association de droit local</option>
< option value = " 9210 " < ? = ( $tabMandataires [ 'Statut' ] == '9210' ? 'selected' : '' ) ?> >Association non déclarée</option>
< option value = " 8450 " < ? = ( $tabMandataires [ 'Statut' ] == '8450' ? 'selected' : '' ) ?> >Ordre professionnel ou assimilé</option>
< option value = " 6210 " < ? = ( $tabMandataires [ 'Statut' ] == '6210' ? 'selected' : '' ) ?> >Groupement européen d'intérêt économique (GEIE)</option>
< option value = " 5306 " < ? = ( $tabMandataires [ 'Statut' ] == '5306' ? 'selected' : '' ) ?> >Société en commandite simple</option>
< option value = " 6560 " < ? = ( $tabMandataires [ 'Statut' ] == '6560' ? 'selected' : '' ) ?> >Autre société civile coopérative</option>
< option value = " 2320 " < ? = ( $tabMandataires [ 'Statut' ] == '2320' ? 'selected' : '' ) ?> >Société en participation avec personne morale</option>
< option value = " 9223 " < ? = ( $tabMandataires [ 'Statut' ] == '9223' ? 'selected' : '' ) ?> >Groupement d'employeurs</option>
< option value = " 8490 " < ? = ( $tabMandataires [ 'Statut' ] == '8490' ? 'selected' : '' ) ?> >Autre organisme professionnel</option>
< option value = " 5699 " < ? = ( $tabMandataires [ 'Statut' ] == '5699' ? 'selected' : '' ) ?> >(Autre) SA à directoire</option>
< option value = " 5560 " < ? = ( $tabMandataires [ 'Statut' ] == '5560' ? 'selected' : '' ) ?> >Autre SA coopérative à conseil d'administration</option>
< option value = " 6521 " < ? = ( $tabMandataires [ 'Statut' ] == '1400' ? 'selected' : '' ) ?> >Société civile de placement collectif immobilier (SCPI)</option>
< option value = " 6589 " < ? = ( $tabMandataires [ 'Statut' ] == '6521' ? 'selected' : '' ) ?> >Société civile de moyens</option>
< option value = " 6551 " < ? = ( $tabMandataires [ 'Statut' ] == '6551' ? 'selected' : '' ) ?> >Société civile coopérative de consommation</option>
< option value = " 8410 " < ? = ( $tabMandataires [ 'Statut' ] == '8410' ? 'selected' : '' ) ?> >Syndicat de salariés</option>
< option value = " 6540 " < ? = ( $tabMandataires [ 'Statut' ] == '6540' ? 'selected' : '' ) ?> >Société civile immobilière</option>
< option value = " 2120 " < ? = ( $tabMandataires [ 'Statut' ] == '2120' ? 'selected' : '' ) ?> >Indivision avec personne morale</option>
< option value = " 8420 " < ? = ( $tabMandataires [ 'Statut' ] == '8420' ? 'selected' : '' ) ?> >Syndicat patronal</option>
2009-03-23 15:01:04 +00:00
</ select >
< label > Adresse < em >*</ em >:</ label >
2009-05-14 10:07:29 +00:00
< textarea name = " tabMandataires[adresse] " >< ? = $tabMandataires [ 'adresse' ]; ?> </textarea>
2009-03-23 15:01:04 +00:00
2010-02-10 17:27:03 +00:00
< label > Complément adresse :</ label >
2009-03-23 15:01:04 +00:00
< input name = " tabMandataires[adresseComp] " type = " text " value = " <?= $tabMandataires['adresseComp'] ;?> " maxlength = " 8 " >
< label > Code Postal < em >*</ em >:</ label >
< input name = " tabMandataires[cp] " type = " text " value = " <?= $tabMandataires['cp'] ;?> " maxlength = " 5 " >
< label > Ville ou commune < em >*</ em >:</ label >
< input name = " tabMandataires[ville] " type = " text " value = " <?= $tabMandataires['ville'] ;?> " maxlength = " 28 " >
2010-02-10 17:27:03 +00:00
< label > Téléphone < em >*</ em >:</ label >
2009-03-23 15:01:04 +00:00
< input name = " tabMandataires[tel] " type = " text " value = " <?= $tabMandataires['tel'] ;?> " maxlength = " 16 " >
2010-02-10 17:27:03 +00:00
< label > Télécopie :</ label >
2009-03-23 15:01:04 +00:00
< input name = " tabMandataires[fax] " type = " text " value = " <?= $tabMandataires['fax'] ;?> " maxlength = " 16 " >
< label > Email :</ label >
< input name = " tabMandataires[email] " type = " text " value = " <?= $tabMandataires['email'] ;?> " maxlength = " 51 " >
< label > Web :</ label >
< input name = " tabMandataires[web] " type = " text " value = " <?= $tabMandataires['web'] ;?> " maxlength = " 35 " >
< label > Informations diverses :</ label >
2009-05-14 10:07:29 +00:00
< textarea name = " tabMandataires[contact] " >< ? = $tabMandataires [ 'contact' ]; ?> </textarea>
2009-03-23 15:01:04 +00:00
2010-03-16 16:06:50 +00:00
</ form >