104 lines
4.2 KiB
PHP
104 lines
4.2 KiB
PHP
<?php
|
|
header('Content-Type: text/html; charset=ISO-8859-1');
|
|
include_once(realpath(dirname(__FILE__).'/constantes.php'));
|
|
|
|
$tribunal = (isset($_REQUEST['tribunal'])? $_REQUEST['tribunal'] : '');
|
|
$siren = (isset($_REQUEST['siren'])? $_REQUEST['siren'] : '');
|
|
$nic = (isset($_REQUEST['nic'])? $_REQUEST['nic'] : '');
|
|
|
|
//Connection au webservice
|
|
$client = new SoapClient(null, array( 'trace' => 1,
|
|
'soap_version' => SOAP_1_1,
|
|
'location' => WEBSERVICE_URL,
|
|
'uri' => WEBSERVICE_URI,
|
|
'login' => $_SESSION['tabInfo']['login'],
|
|
'password' => $_SESSION['tabInfo']['password'],
|
|
));
|
|
|
|
//Sélection de la cour d'appel en fonction du tribunal
|
|
include(realpath(dirname(__FILE__)).'/coursAppel.php');
|
|
require_once realpath(dirname(__FILE__)).'/field_opposition.php';
|
|
?>
|
|
<script type="text/javascript" src="./js/thickbox.js"></script>
|
|
<label>Date de jouissance / effet :</label>
|
|
<input type="text" maxlength="10" class="date" name="jugement[dateFinPeriode]" value="" />
|
|
<span class="left">(Format JJ/MM/AAAA)</span>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$(".date").blur(function() {
|
|
//Test du format date
|
|
$(this).val(dateInputFormat($(this).val()));
|
|
//Test spécifique
|
|
if( $(this).attr('name')=='jugement[dateJuge]' ){
|
|
if (ctrlDateJugement($(this).val())==false){ $(this).val(''); }
|
|
}
|
|
if( $(this).attr('name')=='jugement[datePaie]' ){
|
|
if (ctrlDatePaiement($(this).val())==false){ $(this).val(''); }
|
|
}
|
|
});
|
|
//
|
|
$('#etabnic').click(function(){
|
|
var siret = $(this).attr('title');
|
|
$('#infoetabnic').html('Lecture des informations...');
|
|
$.post('./pages_saisie/get_etabnic.php', {siret: siret}, function(data, status){
|
|
$('#infoetabnic').html('');
|
|
if(data != null){ $('#infoetabnic').html(data); }
|
|
});
|
|
|
|
});
|
|
});
|
|
</script>
|
|
<label>Montant de la vente</label>
|
|
<input type="text" class="widthauto" name="jugement[montant]" size="10" maxlength="15" value=""/>
|
|
<span class="left">en € sans les cents</span>
|
|
|
|
|
|
<label>Etablissement concerné</label>
|
|
<select name="etablissement5500[]" multiple size="3">
|
|
<option value="-">-</option>
|
|
<?php
|
|
/*
|
|
try {
|
|
$O = $client->getListeEtablissements($siren);
|
|
$listEtablissements = $O['result'];
|
|
foreach($listEtablissements as $etablissement){
|
|
if($etablissement['Siege']==1 && $etablissement['Actif']==1)
|
|
print '<option value="'.$etablissement['Adresse'].' '.$etablissement['CP'].' '.$etablissement['Ville'].' ('.$etablissement['Nic'].')">'.$siren.$etablissement['Nic'].' - '.$etablissement['Adresse'].' '.$etablissement['CP'].' '.$etablissement['Ville'].' (Siège Actif) </option>';
|
|
else
|
|
print '<option value="'.$etablissement['Adresse'].' '.$etablissement['CP'].' '.$etablissement['Ville'].' ('.$etablissement['Nic'].')">'.$siren.$etablissement['Nic'].' - '.$etablissement['Adresse'].' '.$etablissement['CP'].' '.$etablissement['Ville'].' </option>';
|
|
}
|
|
} catch (SoapFault $fault) {
|
|
require_once 'soaperror.php';
|
|
processSoapFault($client,$fault,$tabInfo);
|
|
$firephp->log($client->__getLastRequest(), 'Request');
|
|
$firephp->log($client->__getLastResponse(), 'Response');
|
|
}
|
|
*/
|
|
?>
|
|
</select>
|
|
<div class="info">
|
|
<a href="#" title="<?=$siren.$nic?>" id="etabnic">Utiliser l'établissement : <?=$nic?></a>
|
|
<div id="infoetabnic"></div>
|
|
<input type="hidden" name="etabnic" value=""/>
|
|
</div>
|
|
|
|
<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>
|
|
</select>
|
|
|
|
<label>Complément, huissier, etc...</label>
|
|
<input type="text" name="jugement[comp]" size="70" maxlength="900" value="" />
|