108 lines
3.5 KiB
PHP
108 lines
3.5 KiB
PHP
<label>Source <font color="Red">*</font></label>
|
|
<select name="jugement[source]">
|
|
<?php
|
|
$select = (isset($saisie['source']) == false || $saisie['source'] == 'TS') ?
|
|
'selected' : '';
|
|
print '<option value="TS" '.$select.'>Tribunal via CCI</option>';
|
|
$select = ($saisie['source'] == 'TD') ? 'selected' : '';
|
|
print '<option value="TD" '.$select.'>Tribunal directement</option>';
|
|
$select = ($saisie['source'] == 'TA') ? 'selected' : '';
|
|
print '<option value="TA" '.$select.'>Tribunal via autre tiers</option>';
|
|
$select = ($saisie['source'] == 'JT') ? 'selected' : '';
|
|
print '<option value="JT" '.$select.'>TESSI</option>';
|
|
|
|
require_once 'scoresws/scoresws-int.php';
|
|
$liste = $ws_soap_client_ent->__call('getListeJalCollecte', array());
|
|
foreach ($liste as $id => $lib) {
|
|
print "<option value=\"JS$id\" ";
|
|
if ($saisie['source'] == "JS$id") {
|
|
print 'selected';
|
|
}
|
|
print ">$lib</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
|
|
<div id="dateParution">
|
|
<label>Date de parution <font color="Red">*</font></label>
|
|
<input class="date" type="text" name="jugement[dateParution]"
|
|
size="10" maxlength="10" value="<?=$saisie['dateParution']?>" />
|
|
<span class="left">(Format JJ/MM/AAAA)</span>
|
|
</div>
|
|
|
|
<div id="numParution">
|
|
<label>N° de parution</label>
|
|
<input type="text" name="jugement[numParution]"
|
|
size="10" maxlength="10" value="<?=$saisie['numParution']?>" />
|
|
</div>
|
|
|
|
<label>Date évènement / jugement<font color="Red">*</font></label>
|
|
<input class="date" type="text" name="jugement[dateJuge]"
|
|
size="10" maxlength="10" value="<?=$saisie['dateJugement']?>" />
|
|
<span class="left">(Format JJ/MM/AAAA)</span>
|
|
|
|
<label>Tribunal <font color="Red">*</font></label>
|
|
<select id="tribunal" name="jugement[tribunal]">
|
|
<option value="-" selected>-</option>
|
|
<?php
|
|
// Affectation du code tribunal présent dans la fiche identité pour comparaison
|
|
$codeCmp = $saisie['tribunal'];
|
|
// Si le code tribunal n'est pas défini dans la fiche identité
|
|
// alors en sélectionner un par défault suivant le code INSEE
|
|
if ($codeCmp == '') {
|
|
$competences =
|
|
scorews_competences($siret, $etab['Siren'], $idEntreprise, 'tri',
|
|
$_SESSION['tabInfo']['entrep']['codeCommune']);
|
|
foreach ($competences as $item) {
|
|
if ($item['Type'] == 'C'){
|
|
$codeCmp = $item['Code'];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
require_once 'scoresws/scoresws.php';
|
|
$o = new StdClass;
|
|
$o->tabTypes = array('C', 'I', 'G', 'M', 'P');
|
|
$liste = $ws_soap_client_ent->__call('getTribunaux', array($o));
|
|
asort($liste);
|
|
foreach ($liste as $code => $lib) {
|
|
if (strlen($lib) > 39) {
|
|
$lib = substr($lib, 0, 41).'...';
|
|
}
|
|
print '<option value="'.$code.'"';
|
|
if ($code == $codeCmp) {
|
|
print ' selected';
|
|
}
|
|
print ">$lib</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
|
|
<label>Évènement / Jugement <font color="Red">*</font></label>
|
|
<select id="jugement" name="jugement[even][]" size="5">
|
|
<option value="0000">-</option>
|
|
<?php
|
|
$eventNum = isset($saisie['eventNum']) ? $saisie['eventNum'] : '0000';
|
|
asort($tabEvent);
|
|
foreach ($tabEvent as $key => $event) {
|
|
$select = '';
|
|
if (in_array($key, $saisie['even'])) {
|
|
$select = 'selected';
|
|
}
|
|
$display = true;
|
|
if (isset($inEditDialog) && $inEditDialog === true && empty($select)) {
|
|
$display = false;
|
|
}
|
|
if ($display) {
|
|
print '<option value="'.$key.'" title="'.$event.'" '.
|
|
$select.'>'.$event.'</option>';
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
<div id="subFormSaisie">
|
|
<?php
|
|
require_once realpath(dirname(__FILE__)).'/event/event_'.$eventNum.'.php';
|
|
?>
|
|
</div>
|