소스 검색

TVA : correction problème calcul HT / TTC

refactoring
부모
커밋
8c2c53ca09
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php 파일 보기

@@ -53,7 +53,7 @@ class Price

public static function getPriceWithTax($priceWithoutTax, $taxRate)
{
return floatval($priceWithoutTax) * ($taxRate + 1) ;
return self::numberTwoDecimals(floatval($priceWithoutTax) * ($taxRate + 1)) ;
}

public static function numberTwoDecimals($number)

Loading…
취소
저장