Compta analytic : improve apperance, fix bug

This commit is contained in:
Dany De Bontridder 2010-12-07 22:04:31 +00:00
parent 69d773d5f7
commit 2f1cce1da5
7 changed files with 33 additions and 21 deletions

View file

@ -77,7 +77,7 @@ class Anc_Listing extends Anc_Print
$r.= _("aucune donnée");
return $r;
}
$r.= '<table>';
$r.= '<table class="result">';
$r.= '<tr>'.
'<th>'._('Date').'</th>'.
'<th>'._('Nom').'</th>'.
@ -92,7 +92,7 @@ class Anc_Listing extends Anc_Print
'<td>'.$row['oa_date'].'</td>'.
'<td>'.h($row['po_name']).'</td>'.
'<td>'.h($row['oa_description']).'</td>'.
'<td>'.$row['oa_amount'].'</td>'.
'<td>'.nbm($row['oa_amount']).'</td>'.
'<td>'.(($row['oa_debit']=='f')?'CREDIT':'DEBIT').'</td>';
$r.= '</tr>';
}