2011-07-01 06:54:26 +00:00
< div id = "dMessage" > <? = $this -> message ?> </ div >
2011-05-09 11:49:25 +00:00
2011-07-01 06:54:26 +00:00
< form id = "frmCreateMandataires" name = "mandataires" method = "post" action = " <? = $this -> url ( array ( 'controller' => 'mandataire' , 'action' => 'save' )) ?> " >
2011-05-09 11:49:25 +00:00
2011-07-01 06:54:26 +00:00
< input type = "hidden" name = "tabMandataires[id]" value = " <? = $this -> tabMandataires [ 'id' ]; ?> " >
2011-05-09 11:49:25 +00:00
< label > Siren de la société Civile < em > *< / em > :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[sirenGrp]" type = "text" value = " <? = $this -> tabMandataires [ 'sirenGrp' ]; ?> " maxlength = "25" >
2011-05-09 11:49:25 +00:00
< span class = "left" > < a href = "#" id = "getInfo_sirenGrp" > Obtenir les informations.< / a > < / span >
< label > Siren de la professions libérale :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[sirenMand]" type = "text" value = " <? = $this -> tabMandataires [ 'sirenMand' ]; ?> " maxlength = "17" >
2011-05-09 11:49:25 +00:00
< span class = "left" > < a href = "#" id = "getInfo_sirenMand" > Obtenir les informations.< / a > < / span >
< label > Nom < em > *< / em > :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[Nom]" type = "text" value = " <? = $this -> tabMandataires [ 'Nom' ]; ?> " maxlength = "81" >
2011-05-09 11:49:25 +00:00
< label > Prenom :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[Prenom]" type = "text" value = " <? = $this -> tabMandataires [ 'Prenom' ]; ?> " maxlength = "21" >
2011-05-09 11:49:25 +00:00
< label > Type d'intervenant < em > *< / em > :< / label >
< select name = "tabMandataires[type]" >
< option value = "" > -< / option >
2011-07-01 06:54:26 +00:00
< option value = "A" <? = ( $this -> tabMandataires [ 'type' ] == 'A' ? 'selected' : '' ) ?> > Administrateur</ option >
< option value = "AS" <? = ( $this -> tabMandataires [ 'type' ] == 'AS' ? 'selected' : '' ) ?> > Administrateur Stagiaire</ option >
< option value = "H" <? = ( $this -> tabMandataires [ 'type' ] == 'H' ? 'selected' : '' ) ?> > Huissier</ option >
< option value = "M" <? = ( $this -> tabMandataires [ 'type' ] == 'M' ? 'selected' : '' ) ?> > Mandataire</ option >
< option value = "MS" <? = ( $this -> tabMandataires [ 'type' ] == 'MS' ? 'selected' : '' ) ?> > Mandataire Stagiaire</ option >
< option value = "V" <? = ( $this -> tabMandataires [ 'type' ] == 'V' ? 'selected' : '' ) ?> > Avocat</ option >
< option value = "N" <? = ( $this -> tabMandataires [ 'type' ] == 'N' ? 'selected' : '' ) ?> > Notaire</ option >
< option value = "T" <? = ( $this -> tabMandataires [ 'type' ] == 'T' ? 'selected' : '' ) ?> > Autre</ option >
2011-05-09 11:49:25 +00:00
< / select >
< label > Cours d'appel par defaut n°1 < em > *< / em > :< / label >
< select name = "tabMandataires[coursAppel]" >
< option value = "" > Choix de la cours d'appel< / option >
<?php
2011-07-01 06:54:26 +00:00
foreach ($this->coursAppel as $value)
2011-05-09 11:49:25 +00:00
{
$select = '';
2011-07-01 06:54:26 +00:00
$this->tabMandataires['coursAppel']==$value['triId'] ? $select = ' selected' : '';
echo '< option value = "'.$value['triId'].'" ' . $ select . ' > ' . $value['triNom'].'< / option > ';
2011-05-09 11:49:25 +00:00
}
?>
< / select >
< label > Cours d'appel par defaut n°2 :< / label >
< select name = "tabMandataires[coursAppel2]" >
< option value = "" > Choix de la cours d'appel< / option >
<?php
2011-07-01 06:54:26 +00:00
foreach ($this->coursAppel as $value)
2011-05-09 11:49:25 +00:00
{
$select = '';
2011-07-01 06:54:26 +00:00
$this->tabMandataires['coursAppel2']==$value['triId'] ? $select = ' selected' : '';
echo '< option value = "'.$value['triId'].'" ' . $ select . ' > ' . $value['triNom'].'< / option > ';
2011-05-09 11:49:25 +00:00
}
?>
< / select >
< label > Libellé du tribunal < em > *< / em > :< / label >
< select name = "tabMandataires[tribunal]" >
< option value = "" > Choix du tribunal< / option >
<?php
2011-07-01 06:54:26 +00:00
foreach ($this->tribunaux as $item)
2011-05-09 11:49:25 +00:00
{
$select = '';
2011-07-01 06:54:26 +00:00
if ($tabMandataires['tribunal']==$item->code) $select = ' selected';
2011-11-07 16:10:48 +00:00
elseif ($item->code==$this->tribunal) $select = ' selected';
if (strlen($item->nom)>39) $lib=substr($item->nom,0,41).'...';
echo '< option value = "'.$item->code.'" ' . $ select . ' > '.$item->nom.'< / option > ';
2011-05-09 11:49:25 +00:00
}
?>
< / select >
< span class = "left" > (Vérifier le tribunal du mandataire)< / span >
< label > Forme Juridique < em > *< / em > :< / label >
< select name = "tabMandataires[Statut]" >
< option value = "" selected > -< / option >
2011-07-01 06:54:26 +00:00
< option value = "1500" <? = ( $this -> tabMandataires [ 'Statut' ] == '1500' ? 'selected' : '' ) ?> > Profession libérale</ option >
< option value = "1400" <? = ( $this -> tabMandataires [ 'Statut' ] == '1400' ? 'selected' : '' ) ?> > Officier public ou ministériel</ option >
< option value = "1800" <? = ( $this -> tabMandataires [ 'Statut' ] == '1800' ? 'selected' : '' ) ?> > Associé Gérant</ option >
< option value = "1900" <? = ( $this -> tabMandataires [ 'Statut' ] == '1900' ? 'selected' : '' ) ?> > Personne physique</ option >
< option value = "5485" <? = ( $this -> tabMandataires [ 'Statut' ] == '5485' ? 'selected' : '' ) ?> > Société d'exercice libéral à responsabilité limitée</ option >
< option value = "6565" <? = ( $this -> tabMandataires [ 'Statut' ] == '6565' ? 'selected' : '' ) ?> > SCP de notaires</ option >
< option value = "6561" <? = ( $this -> tabMandataires [ 'Statut' ] == '6561' ? 'selected' : '' ) ?> > SCP d'avocats</ option >
< option value = "1099" <? = ( $this -> tabMandataires [ 'Statut' ] == '1099' ? 'selected' : '' ) ?> > SCP d'huissiers</ option >
< option value = "2210" <? = ( $this -> tabMandataires [ 'Statut' ] == '2210' ? 'selected' : '' ) ?> > Société créée de fait entre personnes physiques</ option >
< option value = "5499" <? = ( $this -> tabMandataires [ 'Statut' ] == '5499' ? 'selected' : '' ) ?> > Autre société à responsabilité limitée</ option >
< option value = "2900" <? = ( $this -> tabMandataires [ 'Statut' ] == '2900' ? 'selected' : '' ) ?> > Autre groupement de droit privé non doté de la personnalité morale</ option >
< option value = "6585" <? = ( $this -> tabMandataires [ 'Statut' ] == '6585' ? 'selected' : '' ) ?> > SCP</ option >
< option value = "9220" <? = ( $this -> tabMandataires [ 'Statut' ] == '9220' ? 'selected' : '' ) ?> > ASSOCIATION</ option >
< option value = "6562" <? = ( $this -> tabMandataires [ 'Statut' ] == '6562' ? 'selected' : '' ) ?> > SCP d'avocats aux conseil</ option >
< option value = "6599" <? = ( $this -> tabMandataires [ 'Statut' ] == '6599' ? 'selected' : '' ) ?> > SCP</ option >
< option value = "6563" <? = ( $this -> tabMandataires [ 'Statut' ] == '6563' ? 'selected' : '' ) ?> > SCP d'avoués d'appel</ option >
< option value = "5710" <? = ( $this -> tabMandataires [ 'Statut' ] == '5710' ? 'selected' : '' ) ?> > SAS</ option >
< option value = "6566" <? = ( $this -> tabMandataires [ 'Statut' ] == '5710' ? 'selected' : '' ) ?> > SCP de commissaires-priseurs</ option >
< option value = "5498" <? = ( $this -> tabMandataires [ 'Statut' ] == '5498' ? 'selected' : '' ) ?> > SARLU</ option >
< option value = "5585" <? = ( $this -> tabMandataires [ 'Statut' ] == '5585' ? 'selected' : '' ) ?> > SELAFA</ option >
< option value = "6568" <? = ( $this -> tabMandataires [ 'Statut' ] == '6568' ? 'selected' : '' ) ?> > SCP de conseils juridiques</ option >
< option value = "3220" <? = ( $this -> tabMandataires [ 'Statut' ] == '3220' ? 'selected' : '' ) ?> > Société étrangère non immatriculée au RCS</ option >
< option value = "1200" <? = ( $this -> tabMandataires [ 'Statut' ] == '1200' ? 'selected' : '' ) ?> > Commerçant</ option >
< option value = "6567" <? = ( $this -> tabMandataires [ 'Statut' ] == '6567' ? 'selected' : '' ) ?> > SCP de greffiers de tribunal de commerce</ option >
< option value = "5599" <? = ( $this -> tabMandataires [ 'Statut' ] == '5599' ? 'selected' : '' ) ?> > SARL</ option >
< option value = "6220" <? = ( $this -> tabMandataires [ 'Statut' ] == '6220' ? 'selected' : '' ) ?> > GIE</ option >
< option value = "2110" <? = ( $this -> tabMandataires [ 'Statut' ] == '2110' ? 'selected' : '' ) ?> > Indivision entre personnes physiques</ option >
< option value = "2385" <? = ( $this -> tabMandataires [ 'Statut' ] == '2385' ? 'selected' : '' ) ?> > Société en participation de professions libérales</ option >
< option value = "2310" <? = ( $this -> tabMandataires [ 'Statut' ] == '2310' ? 'selected' : '' ) ?> > Société en participation entre personnes physiques</ option >
< option value = "3120" <? = ( $this -> tabMandataires [ 'Statut' ] == '3120' ? 'selected' : '' ) ?> > Société étrangère immatriculée au RCS</ option >
< option value = "2220" <? = ( $this -> tabMandataires [ 'Statut' ] == '2220' ? 'selected' : '' ) ?> > Société créée de fait avec personne morale</ option >
< option value = "5685" <? = ( $this -> tabMandataires [ 'Statut' ] == '5685' ? 'selected' : '' ) ?> > Société d'exercice libéral à forme anonyme à directoire</ option >
< option value = "9900" <? = ( $this -> tabMandataires [ 'Statut' ] == '9900' ? 'selected' : '' ) ?> > Autre personne morale de droit privé</ option >
< option value = "1700" <? = ( $this -> tabMandataires [ 'Statut' ] == '1700' ? 'selected' : '' ) ?> > Agent commercial</ option >
< option value = "5202" <? = ( $this -> tabMandataires [ 'Statut' ] == '5202' ? 'selected' : '' ) ?> > SNC</ option >
< option value = "1100" <? = ( $this -> tabMandataires [ 'Statut' ] == '1100' ? 'selected' : '' ) ?> > Artisan Commerçant</ option >
< option value = "5720" <? = ( $this -> tabMandataires [ 'Statut' ] == '5720' ? 'selected' : '' ) ?> > Société par actions simplifiée à associé unique ou société par actions simplifiées unipersonnelle</ option >
< option value = "5785" <? = ( $this -> tabMandataires [ 'Statut' ] == '5785' ? 'selected' : '' ) ?> > Socitété d'Exercice Libérale par Actions Simplifiées</ option >
< option value = "5385" <? = ( $this -> tabMandataires [ 'Statut' ] == '5385' ? 'selected' : '' ) ?> > Société d'exercice libéral en commandite par action</ option >
< option value = "9260" <? = ( $this -> tabMandataires [ 'Statut' ] == '9260' ? 'selected' : '' ) ?> > Association de droit local</ option >
< option value = "9210" <? = ( $this -> tabMandataires [ 'Statut' ] == '9210' ? 'selected' : '' ) ?> > Association non déclarée</ option >
< option value = "8450" <? = ( $this -> tabMandataires [ 'Statut' ] == '8450' ? 'selected' : '' ) ?> > Ordre professionnel ou assimilé</ option >
< option value = "6210" <? = ( $this -> tabMandataires [ 'Statut' ] == '6210' ? 'selected' : '' ) ?> > Groupement européen d'intérêt économique (GEIE)</ option >
< option value = "5306" <? = ( $this -> tabMandataires [ 'Statut' ] == '5306' ? 'selected' : '' ) ?> > Société en commandite simple</ option >
< option value = "6560" <? = ( $this -> tabMandataires [ 'Statut' ] == '6560' ? 'selected' : '' ) ?> > Autre société civile coopérative</ option >
< option value = "2320" <? = ( $this -> tabMandataires [ 'Statut' ] == '2320' ? 'selected' : '' ) ?> > Société en participation avec personne morale</ option >
< option value = "9223" <? = ( $this -> tabMandataires [ 'Statut' ] == '9223' ? 'selected' : '' ) ?> > Groupement d'employeurs</ option >
< option value = "8490" <? = ( $this -> tabMandataires [ 'Statut' ] == '8490' ? 'selected' : '' ) ?> > Autre organisme professionnel</ option >
< option value = "5699" <? = ( $this -> tabMandataires [ 'Statut' ] == '5699' ? 'selected' : '' ) ?> > (Autre) SA à directoire</ option >
< option value = "5560" <? = ( $this -> tabMandataires [ 'Statut' ] == '5560' ? 'selected' : '' ) ?> > Autre SA coopérative à conseil d'administration</ option >
< option value = "6521" <? = ( $this -> tabMandataires [ 'Statut' ] == '1400' ? 'selected' : '' ) ?> > Société civile de placement collectif immobilier (SCPI)</ option >
< option value = "6589" <? = ( $this -> tabMandataires [ 'Statut' ] == '6521' ? 'selected' : '' ) ?> > Société civile de moyens</ option >
< option value = "6551" <? = ( $this -> tabMandataires [ 'Statut' ] == '6551' ? 'selected' : '' ) ?> > Société civile coopérative de consommation</ option >
< option value = "8410" <? = ( $this -> tabMandataires [ 'Statut' ] == '8410' ? 'selected' : '' ) ?> > Syndicat de salariés</ option >
< option value = "6540" <? = ( $this -> tabMandataires [ 'Statut' ] == '6540' ? 'selected' : '' ) ?> > Société civile immobilière</ option >
< option value = "2120" <? = ( $this -> tabMandataires [ 'Statut' ] == '2120' ? 'selected' : '' ) ?> > Indivision avec personne morale</ option >
< option value = "8420" <? = ( $this -> tabMandataires [ 'Statut' ] == '8420' ? 'selected' : '' ) ?> > Syndicat patronal</ option >
2011-05-09 11:49:25 +00:00
< / select >
< label > Adresse < em > *< / em > :< / label >
2011-07-01 06:54:26 +00:00
< textarea name = "tabMandataires[adresse]" > <? = $this -> tabMandataires [ 'adresse' ]; ?> </ textarea >
2011-05-09 11:49:25 +00:00
< label > Complément adresse :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[adresseComp]" type = "text" value = " <? = $this -> tabMandataires [ 'adresseComp' ]; ?> " maxlength = "8" >
2011-05-09 11:49:25 +00:00
< label > Code Postal < em > *< / em > :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[cp]" type = "text" value = " <? = $this -> tabMandataires [ 'cp' ]; ?> " maxlength = "5" >
2011-05-09 11:49:25 +00:00
< label > Ville ou commune < em > *< / em > :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[ville]" type = "text" value = " <? = $this -> tabMandataires [ 'ville' ]; ?> " maxlength = "28" >
2011-05-09 11:49:25 +00:00
< label > Téléphone < em > *< / em > :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[tel]" type = "text" value = " <? = $this -> tabMandataires [ 'tel' ]; ?> " maxlength = "16" >
2011-05-09 11:49:25 +00:00
< label > Télécopie :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[fax]" type = "text" value = " <? = $this -> tabMandataires [ 'fax' ]; ?> " maxlength = "16" >
2011-05-09 11:49:25 +00:00
< label > Email :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[email]" type = "text" value = " <? = $this -> tabMandataires [ 'email' ]; ?> " maxlength = "51" >
2011-05-09 11:49:25 +00:00
< label > Web :< / label >
2011-07-01 06:54:26 +00:00
< input name = "tabMandataires[web]" type = "text" value = " <? = $this -> tabMandataires [ 'web' ]; ?> " maxlength = "35" >
2011-05-09 11:49:25 +00:00
< label > Informations diverses :< / label >
2011-07-01 06:54:26 +00:00
< textarea name = "tabMandataires[contact]" > <? = $this -> tabMandataires [ 'contact' ]; ?> </ textarea >
2011-05-09 11:49:25 +00:00
< / form >