2009-03-13 14:58:10 +00:00
|
|
|
|
<?php
|
|
|
|
|
include_once(realpath(dirname(__FILE__).'/constantes.php'));
|
2009-07-21 15:08:08 +00:00
|
|
|
|
header('Content-Type: text/html; charset=ISO-8859-1');
|
2009-03-13 14:58:10 +00:00
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="./js/thickbox.js"></script>
|
|
|
|
|
<label>Date cessation de paiement </label>
|
2009-03-17 14:16:38 +00:00
|
|
|
|
<input type="text" class="date" name="jugement[datePaie]" size="10" maxlength="10" value="" />
|
2009-03-13 14:58:10 +00:00
|
|
|
|
<span class="left">(Format JJ/MM/AAAA)</span>
|
2009-03-27 08:34:36 +00:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
$(".date").blur(function() {
|
|
|
|
|
//Test du format date
|
|
|
|
|
$(this).val(dateInputFormat($(this).val()));
|
2009-07-21 15:08:08 +00:00
|
|
|
|
//Test sp<73>cifique
|
2009-03-27 08:34:36 +00:00
|
|
|
|
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(''); }
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2009-07-21 15:08:08 +00:00
|
|
|
|
<?php
|
2009-03-26 19:22:07 +00:00
|
|
|
|
require_once realpath(dirname(__FILE__)).'/field_administrateur.php';
|
|
|
|
|
require_once realpath(dirname(__FILE__)).'/field_mandataire.php';
|
2009-03-20 09:07:19 +00:00
|
|
|
|
?>
|
2009-03-13 14:58:10 +00:00
|
|
|
|
|
|
|
|
|
<label>Complément, huissier, opposition, etc...</label>
|
|
|
|
|
<input type="text" name="jugement[comp]" size="70" maxlength="255" value="" />
|