% sur taux tva

This commit is contained in:
Michael RICOIS 2014-01-08 16:26:13 +00:00
parent 7c8a062b21
commit 569df34306

View File

@ -614,7 +614,7 @@ class ReportController extends Zend_Controller_Action
$page->drawText(number_format($row->mt, 2).' €', 485, 450, 'UTF-8');
//Summary TotalHT TVA MontantTVA TotalTTC NetAPayer
$page->drawText(number_format($row->mt,2).' €', 90, 208, 'UTF-8');
$page->drawText(number_format($row->tax,2).' ', 190, 208, 'UTF-8');
$page->drawText(number_format($row->tax,2).' %', 190, 208, 'UTF-8');
$mtTAX = $row->mt * $row->tax/100 ;
$mtTTC = $mtNET = $row->mt * ( 1 + $row->tax/100 ) ;