file:///home/developper/svn/phpcompta/branches/rel510
........
r3236 | danydb | 2010-05-21 20:43:57 +0200 (Fri, 21 May 2010) | 1 line
change place button exit
........
r3237 | danydb | 2010-05-21 20:44:11 +0200 (Fri, 21 May 2010) | 1 line
change place button exit
........
r3238 | danydb | 2010-05-21 20:44:54 +0200 (Fri, 21 May 2010) | 1 line
cosmetic : Button appearance button
........
r3239 | danydb | 2010-05-21 20:46:01 +0200 (Fri, 21 May 2010) | 1 line
Print : add receipt# for cat. of card
........
r3240 | danydb | 2010-05-21 20:46:19 +0200 (Fri, 21 May 2010) | 1 line
Update documentation
........
r3241 | danydb | 2010-05-21 21:05:51 +0200 (Fri, 21 May 2010) | 1 line
add function sql_string to protect
........
r3242 | danydb | 2010-05-22 00:50:31 +0200 (Sat, 22 May 2010) | 1 line
bug in sql_string function : typo
........
r3243 | danydb | 2010-05-22 12:03:49 +0200 (Sat, 22 May 2010) | 1 line
Fix problem with quote for the TMP_PCMN function (ajax search accounting + add / remove and modify accounting)
........
r3244 | danydb | 2010-05-22 12:27:19 +0200 (Sat, 22 May 2010) | 2 lines
Bug in ajax_poste : change set_value(pcm_val,pcm_lib) by set_value(pcm_val,g('lib').innerHTML)
........
r3245 | danydb | 2010-05-24 21:33:53 +0200 (Mon, 24 May 2010) | 2 lines
Fix bug card cannot move due to a typo in Fiche::move_to function
........
25 lines
No EOL
553 B
PHP
25 lines
No EOL
553 B
PHP
<fieldset id="asearch" style="height:88%">
|
|
<legend><? echo _('Résultats')?></legend>
|
|
<div style="height:88%;overflow:auto;">
|
|
<ul class="select_table">
|
|
<? for ($i=0;$i<sizeof($array);$i++) : ?>
|
|
<li>
|
|
<a href="javascript:void(0)" onclick="<?=$array[$i]['javascript']?>">
|
|
<span id="val<?=$i?>">
|
|
<?=$array[$i]['pcm_val']?>
|
|
</span>
|
|
<span id="lib<?=$i?>">
|
|
<?=$array[$i]['pcm_lib']?>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
|
|
|
|
<? endfor; ?>
|
|
</ul>
|
|
<span style="background-color:#9FFFF1;border:1px solid black">
|
|
<? echo _("Nombre d'enregistrements").$i;?>
|
|
</span>
|
|
|
|
</div>
|
|
</fieldset>
|