noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 33/218: Task #448 : correct bug if VAT Rate =


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 33/218: Task #448 : correct bug if VAT Rate = 0 , amount was reset
Date: Thu, 12 Sep 2019 15:58:35 -0400 (EDT)

sparkyx pushed a commit to branch entreprise
in repository noalyss.

commit 9be3de1743ecf3094ddef9b76e1c5faf7273f426
Author: Dany De Bontridder <address@hidden>
Date:   Sat May 12 11:22:17 2018 +0200

    Task #448 : correct bug if VAT Rate  = 0 , amount was reset
---
 include/class/acc_compute.class.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class/acc_compute.class.php 
b/include/class/acc_compute.class.php
index 20c7ee7..49ba34d 100644
--- a/include/class/acc_compute.class.php
+++ b/include/class/acc_compute.class.php
@@ -129,7 +129,7 @@ class Acc_Compute
         if ( $this->check && $this->order != 0 ) throw new Exception ('ORDER 
NOT RESPECTED');
         $this->amount_vat=bcmul($this->amount,$this->amount_vat_rate);
         $this->amount_vat=round($this->amount_vat,2);
-        $this->amount_currency=bcmul($this->amount_vat,$this->currency_rate);
+        
$this->amount_vat_currency=bcmul($this->amount_vat,$this->currency_rate);
         $this->order=1;
     }
     /*!\brief Compute the no deductible part of the amount, it reduce



reply via email to

[Prev in Thread] Current Thread [Next in Thread]