===
The select button for VAT has been replaced by a Ipopup, in all the ledgers + gestion
This commit is contained in:
Dany De Bontridder 2010-04-24 19:14:25 +00:00
parent 5e38098c6c
commit f73ff75210
12 changed files with 171 additions and 30 deletions

View file

@ -50,7 +50,7 @@ $cn=new Database(dossier::id());
$User=new User($cn);
$User->Check();
// Retrieve the rate of vat, it $t == -1 it means no VAT
if ( $t != -1 ){
if ( $t != -1 && isNumber($t) == 1 ){
$tva_rate=new Acc_Tva($cn);
$tva_rate->set_parameter('id',$t);
/**
@ -65,7 +65,7 @@ $total=new Acc_Compute();
bcscale(4);
$amount=round(bcmul($p,$q),2);
$total->set_parameter('amount',$amount);
if ( $t != -1 ) {
if ( $t != -1 && isNumber($t) == 1 ) {
$total->set_parameter('amount_vat_rate',$tva_rate->get_parameter('rate'));
$total->compute_vat();
$tvac=bcadd($total->get_parameter('amount_vat'),$amount);