altocompta/include/template/impress_reconciliation.php
2013-10-14 21:22:08 +00:00

62 lines
No EOL
1.8 KiB
PHP

<table class="result" style="width:80%;margin-left:10%">
<tr>
<th>
</th>
<th>
Date
</th>
<th>
op
</th>
<th>
pièce
</th>
<th>
Libellé
</th>
<th style="text-align:right">
Montant
</th>
</tr>
<?php
for ($i=0;$i<count($array);$i++) {
$r='';
$r.=td($i);
$r.=td(format_date($array[$i]['first']['jr_date']));
$detail=sprintf('<a class="detail" href="javascript:modifyOperation(\'%s\',%d)">%s</a>',
$array[$i]['first']['jr_id'],$gDossier,$array[$i]['first']['jr_internal']);
$r.=td($detail);
$r.=td($array[$i]['first']['jr_pj_number']);
$r.=td($array[$i]['first']['jr_comment']);
$r.=td(nbm($array[$i]['first']['jr_montant']),'style="text-align:right"');
echo tr($r);
// check if operation does exist in v_detail_quant
$ret=$acc_reconciliation->db->execute('detail_quant',array($array[$i]['first']['jr_id']));
$acc_reconciliation->show_detail($ret);
if ( isset($array[$i]['depend']) )
{
$limit=count($array[$i]['depend'])-1;
for ($e=0;$e<count($array[$i]['depend']);$e++) {
$r='';
$r.=td($i);
$r.=td(format_date($array[$i]['depend'][$e]['jr_date']));
$detail=sprintf('<a class="detail" href="javascript:modifyOperation(\'%s\',%d)">%s</a>',
$array[$i]['depend'][$e]['jr_id'],$gDossier,$array[$i]['depend'][$e]['jr_internal']);
$r.=td($detail);
$r.=td($array[$i]['depend'][$e]['jr_pj_number']);
$r.=td($array[$i]['depend'][$e]['jr_comment']);
$r.=td(nbm($array[$i]['depend'][$e]['jr_montant']),'style="text-align:right"');
if ( $e==$limit)
echo '<tr style="border-bottom: 1px solid #4f4f7d;">'.$r.'</tr>';
else
echo tr($r);
$ret=$acc_reconciliation->db->execute('detail_quant',array($array[$i]['depend'][$e]['jr_id']));
$acc_reconciliation->show_detail($ret);
}
}
}
?>
</table>