Skip to content
Code-Schnipsel Gruppen Projekte
Bestätigt Commit 63fd8499 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: #54

Übergeordneter cefda28d
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
use QUI\ERP\Money\Price; use QUI\ERP\Money\Price;
use QUI\ERP\Tax\Utils as TaxUtils; use QUI\ERP\Tax\Utils as TaxUtils;
use function floatval;
use function get_called_class;
/** /**
* Class Article * Class Article
* *
...@@ -657,14 +660,14 @@ public function toArray(): array ...@@ -657,14 +660,14 @@ public function toArray(): array
$discount = ''; $discount = '';
if (isset($this->attributes['vat']) && $this->attributes['vat'] !== '') { if (isset($this->attributes['vat']) && $this->attributes['vat'] !== '') {
$vat = (int)$this->attributes['vat']; $vat = floatval($this->attributes['vat']);
} }
if ($this->hasDiscount()) { if ($this->hasDiscount()) {
$discount = $this->Discount->toJSON(); $discount = $this->Discount->toJSON();
} }
$class = \get_called_class(); $class = get_called_class();
if (!empty($this->attributes['control'])) { if (!empty($this->attributes['control'])) {
$class = $this->attributes['control']; $class = $this->attributes['control'];
......
...@@ -227,12 +227,12 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi ...@@ -227,12 +227,12 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi
continue; continue;
} }
if (!isset($vatArray[$vat])) { if (!isset($vatArray[(string)$vat])) {
$vatArray[$vat] = $articleVatArray; $vatArray[(string)$vat] = $articleVatArray;
$vatArray[$vat]['sum'] = 0; $vatArray[(string)$vat]['sum'] = 0;
} }
$vatArray[$vat]['sum'] = $vatArray[$vat]['sum'] + $articleVatArray['sum']; $vatArray[(string)$vat]['sum'] = $vatArray[(string)$vat]['sum'] + $articleVatArray['sum'];
} }
QUI\ERP\Debug::getInstance()->log('Berechnete Artikelliste MwSt', 'quiqqer/erp'); QUI\ERP\Debug::getInstance()->log('Berechnete Artikelliste MwSt', 'quiqqer/erp');
...@@ -329,16 +329,16 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi ...@@ -329,16 +329,16 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi
$vat = $PriceFactor->getVat(); $vat = $PriceFactor->getVat();
$vatSum = round($PriceFactor->getVatSum(), $precision); $vatSum = round($PriceFactor->getVatSum(), $precision);
if (!isset($vatArray[$vat])) { if (!isset($vatArray[(string)$vat])) {
$vatArray[$vat] = [ $vatArray[(string)$vat] = [
'vat' => $vat, 'vat' => $vat,
'text' => self::getVatText($vat, $this->getUser()) 'text' => self::getVatText($vat, $this->getUser())
]; ];
$vatArray[$vat]['sum'] = 0; $vatArray[(string)$vat]['sum'] = 0;
} }
$vatArray[$vat]['sum'] = $vatArray[$vat]['sum'] + $vatSum; $vatArray[(string)$vat]['sum'] = $vatArray[(string)$vat]['sum'] + $vatSum;
} }
if ($isEuVatUser) { if ($isEuVatUser) {
...@@ -357,16 +357,16 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi ...@@ -357,16 +357,16 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi
foreach ($vatArray as $vatEntry) { foreach ($vatArray as $vatEntry) {
$vat = $vatEntry['vat']; $vat = $vatEntry['vat'];
$vatLists[$vat] = true; // liste für MWST texte $vatLists[(string)$vat] = true; // liste für MWST texte
$vatArray[$vat]['sum'] = round($vatEntry['sum'], $precision); $vatArray[(string)$vat]['sum'] = round($vatEntry['sum'], $precision);
$bruttoSum = $bruttoSum + $vatArray[$vat]['sum']; $bruttoSum = $bruttoSum + $vatArray[(string)$vat]['sum'];
} }
$bruttoSum = round($bruttoSum, $precision); $bruttoSum = round($bruttoSum, $precision);
foreach ($vatLists as $vat => $bool) { foreach ($vatLists as $vat => $bool) {
$vatText[$vat] = self::getVatText($vat, $this->getUser()); $vatText[(string)$vat] = self::getVatText($vat, $this->getUser());
} }
// delete 0 % vat, 0% vat is allowed to calculate more easily // delete 0 % vat, 0% vat is allowed to calculate more easily
...@@ -426,10 +426,10 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi ...@@ -426,10 +426,10 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi
$vatSum = $bruttoSum - $netto; $vatSum = $bruttoSum - $netto;
$vatSum = round($vatSum, $Currency->getPrecision()); $vatSum = round($vatSum, $Currency->getPrecision());
$diff = abs($vatArray[$vat]['sum'] - $vatSum); $diff = abs($vatArray[(string)$vat]['sum'] - $vatSum);
if ($diff <= 0.019) { if ($diff <= 0.019) {
$vatArray[$vat]['sum'] = $vatSum; $vatArray[(string)$vat]['sum'] = $vatSum;
} }
} }
} }
...@@ -439,7 +439,7 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi ...@@ -439,7 +439,7 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi
$nettoSum = 0; $nettoSum = 0;
foreach ($vatArray as $vat => $entry) { foreach ($vatArray as $vat => $entry) {
$vatArray[$vat]['sum'] = 0; $vatArray[(string)$vat]['sum'] = 0;
} }
} }
...@@ -649,7 +649,7 @@ public function getVatTextByUser() ...@@ -649,7 +649,7 @@ public function getVatTextByUser()
* *
* @return array|string * @return array|string
*/ */
public static function getVatText(int $vat, UserInterface $User, QUI\Locale $Locale = null) public static function getVatText(float $vat, UserInterface $User, QUI\Locale $Locale = null)
{ {
if ($Locale === null) { if ($Locale === null) {
$Locale = $User->getLocale(); $Locale = $User->getLocale();
......
...@@ -23,16 +23,16 @@ class CalculationVatValue extends CalculationValue ...@@ -23,16 +23,16 @@ class CalculationVatValue extends CalculationValue
protected string $text = ''; protected string $text = '';
/** /**
* @var int * @var float
*/ */
protected int $vat; protected float $vat;
/** /**
* CalculationValue constructor. * CalculationValue constructor.
* *
* @param int|float $number * @param int|float $number
* @param string $text * @param string $text
* @param int $vat * @param float $vat
* @param QUI\ERP\Currency\Currency|null $Currency * @param QUI\ERP\Currency\Currency|null $Currency
* @param int|bool $precision - The optional number of decimal digits to round to. * @param int|bool $precision - The optional number of decimal digits to round to.
*/ */
...@@ -57,9 +57,9 @@ public function getTitle(): string ...@@ -57,9 +57,9 @@ public function getTitle(): string
/** /**
* Return the VAT * Return the VAT
* *
* @return int * @return float
*/ */
public function getVat(): int public function getVat(): float
{ {
return $this->vat; return $this->vat;
} }
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
use QUI\Utils\Math; use QUI\Utils\Math;
use function abs; use function abs;
use function floatval;
use function is_string; use function is_string;
use function json_encode; use function json_encode;
...@@ -139,7 +140,7 @@ public function __construct(array $data = []) ...@@ -139,7 +140,7 @@ public function __construct(array $data = [])
} }
if (isset($data['vat'])) { if (isset($data['vat'])) {
$this->vat = (int)$data['vat']; $this->vat = floatval($data['vat']);
} }
if (isset($data['valueText']) && is_string($data['valueText'])) { if (isset($data['valueText']) && is_string($data['valueText'])) {
...@@ -242,7 +243,7 @@ public function getVatSum() ...@@ -242,7 +243,7 @@ public function getVatSum()
/** /**
* Return the vat % * Return the vat %
* *
* @return int * @return float
*/ */
public function getVat() public function getVat()
{ {
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren