Selection perimètre de vente et mandataire, issue #0000258
This commit is contained in:
parent
2fab9f283b
commit
3ab22c86f6
@ -7,12 +7,27 @@ if ( !isset($inEditDialog) || $inEditDialog === false ) {
|
||||
$nic = (isset($_REQUEST['nic']) ? $_REQUEST['nic'] : '');
|
||||
}
|
||||
|
||||
$tabPerimetreVente = array(
|
||||
'5100' => "Fonds principal",
|
||||
'5101' => "Fonds secondaire",
|
||||
'5104' => "Fonds artisanal",
|
||||
'5105' => "Partie de fonds",
|
||||
'5200' => "Branche ou Partie d'activité",
|
||||
'5203' => "Droit au bail",
|
||||
'5205' => "Licence de débit de boissons de 4e catégorie",
|
||||
'5206' => "Portefeuille d'assurances",
|
||||
'5351' => "Bien en % indivise",
|
||||
'5303' => "Bien dépendant de l'établissement ou du fond",
|
||||
'5450' => "Bien acheté par le locataire-gérant",
|
||||
'5460' => "Attribution d'un fonds suite à donation, partage ou licitation",
|
||||
);
|
||||
|
||||
//Sélection de la cour d'appel en fonction du tribunal
|
||||
require_once realpath(dirname(__FILE__)).'/../coursappel.php';
|
||||
require_once realpath(dirname(__FILE__)).'/../field_opposition.php';
|
||||
?>
|
||||
<label>Date de jouissance / effet :</label>
|
||||
<input type="text" maxlength="10" class="date" name="jugement[dateFinPeriode]" value="" />
|
||||
<input type="text" maxlength="10" class="date" name="jugement[dateFinPeriode]" value="<?=$saisie['dateFinPeriode']?>" />
|
||||
<span class="left">(Format JJ/MM/AAAA)</span>
|
||||
<label>Montant de la vente</label>
|
||||
<input type="text" class="widthauto" name="jugement[montant]" size="10" maxlength="15" value="<?=$saisie['montant']?>"/>
|
||||
@ -55,18 +70,19 @@ try {
|
||||
<label>Périmètre de la vente</label>
|
||||
<select name="perimetreVente[]" multiple size="3">
|
||||
<option value="-">-</option>
|
||||
<option value="5100">Fonds principal</option>
|
||||
<option value="5101">Fonds secondaire</option>
|
||||
<option value="5104">Fonds artisanal</option>
|
||||
<option value="5105">Partie de fonds</option>
|
||||
<option value="5200">Branche ou Partie d'activité</option>
|
||||
<option value="5203">Droit au bail</option>
|
||||
<option value="5205">Licence de débit de boissons de 4e catégorie</option>
|
||||
<option value="5206">Portefeuille d'assurances</option>
|
||||
<option value="5351">Bien en % indivise</option>
|
||||
<option value="5303">Bien dépendant de l'établissement ou du fond</option>
|
||||
<option value="5450">Bien acheté par le locataire-gérant</option>
|
||||
<option value="5460">Attribution d'un fonds suite à donation, partage ou licitation</option>
|
||||
<?php
|
||||
foreach ( $tabPerimetreVente as $num => $perimetre ) {
|
||||
$select = '';
|
||||
if ( isset($inEditDialog) && $inEditDialog === true ){
|
||||
if ( in_array($num, $saisie['even']) ) {
|
||||
$select = 'selected';
|
||||
}
|
||||
}
|
||||
?>
|
||||
<option value="<?=$num?>" <?=$select?>><?=$perimetre?></option>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
<label>Complément, huissier, etc...</label>
|
||||
|
@ -3,11 +3,16 @@ if ( !isset($inEditDialog) || $inEditDialog === false ) {
|
||||
$tribunal = (isset($_REQUEST['tribunal'])? $_REQUEST['tribunal'] : '');
|
||||
} else {
|
||||
$tribunal = $saisie['tribunal'];
|
||||
foreach ( $intervenants as $intervenant ) {
|
||||
if ( $intervenant['type'] == 'O') {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
<label>Opposition</label>
|
||||
<input class="searchMandataires" type="text" name="oppo" value="">
|
||||
<input type="hidden" name="jugement[oppo]" value="">
|
||||
<input class="searchMandataires" type="text" name="oppo" value="<?=$intervenant['nom']?>">
|
||||
<input type="hidden" name="jugement[oppo]" value="<?=isset($interveant['id']) ? 'm'.$intervenant['id'] : ''?>">
|
||||
<span class="left">
|
||||
<a id="lienOppositionEdit" class="lienMandataire" title="Editer le mandataire"
|
||||
href="./?page=saisieajax&q=mandataire/edit">
|
||||
|
@ -57,7 +57,16 @@ switch ( $subaction ) {
|
||||
'eventNum' => $eventLimit,
|
||||
'comp' => $idanResult['complement'],
|
||||
'montant' => $idanResult['montant'],
|
||||
'dateFinPeriode' => $idanResult['dateEffetFinP'],
|
||||
);
|
||||
$intervenants = array();
|
||||
for ( $i=0 ; $i<3 ; $i++ ) {
|
||||
$intervenants[$i] = array(
|
||||
'type' => $idanResult['inter'.($i+1).'type'],
|
||||
'id' => $idanResult['inter'.($i+1).'id'],
|
||||
'nom' => $idanResult['inter'.($i+1).'nom'],
|
||||
);
|
||||
}
|
||||
require_once realpath(dirname(__FILE__)).'/constantes.php';
|
||||
require_once realpath(dirname(__FILE__)).'/saisie_form_event.php';
|
||||
echo '</form>';
|
||||
|
@ -89,13 +89,7 @@ foreach ($liste as $code=>$lib) {
|
||||
</select>
|
||||
|
||||
<label>Évènement / Jugement <font color="Red">*</font></label>
|
||||
<?php
|
||||
$disable = '';
|
||||
if ( $inEditDialog ) {
|
||||
$disable = 'disabled';
|
||||
}
|
||||
?>
|
||||
<select id="jugement" name="jugement[even][]" size="5" <?=$disable?>>
|
||||
<select id="jugement" name="jugement[even][]" size="5">
|
||||
<option value="0000">-</option>
|
||||
<?php
|
||||
$eventNum = isset($saisie['eventNum']) ? $saisie['eventNum'] : '0000' ;
|
||||
@ -118,7 +112,6 @@ foreach($tabEvent as $key => $event)
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
<div id="subFormSaisie">
|
||||
<?php require_once realpath(dirname(__FILE__)).'/event/event_'.$eventNum.'.php';?>
|
||||
</div>
|
Loading…
x
Reference in New Issue
Block a user