Skip to content
Code-Schnipsel Gruppen Projekte
Commit 8ca72e3e erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: consider eu vat at price factors

Übergeordneter d9d86dc3
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -221,6 +221,10 @@ public function calcArticleList(ArticleList $List, $callback = false)
$nettoSum = $nettoSum + $PriceFactor->getNettoSum();
$priceFactorSum = $priceFactorSum + $PriceFactor->getNettoSum();
if ($isEuVatUser) {
$PriceFactor->setEuVatStatus(true);
}
$vat = $PriceFactor->getVat();
$vatSum = $PriceFactor->getVatSum();
......
......@@ -58,6 +58,11 @@ class Factor
*/
protected $valueText = false;
/**
* @var
*/
protected $euVat = false;
/**
* FactorList constructor.
*
......@@ -133,6 +138,10 @@ public function getDescription()
*/
public function getSum()
{
if ($this->euVat) {
return $this->getNettoSum();
}
return $this->sum;
}
......@@ -163,6 +172,10 @@ public function getNettoSum()
*/
public function getVatSum()
{
if ($this->euVat) {
return 0;
}
if ($this->vat) {
return $this->nettoSum * ($this->vat / 100);
}
......@@ -177,6 +190,10 @@ public function getVatSum()
*/
public function getVat()
{
if ($this->euVat) {
return 0;
}
if ($this->vat) {
return $this->vat;
}
......@@ -234,4 +251,21 @@ public function toJSON()
{
return \json_encode($this->toArray());
}
//region eu vat
public function isEuVat()
{
return $this->euVat;
}
/**
* @param bool $status
*/
public function setEuVatStatus(bool $status)
{
$this->euVat = $status;
}
//endregion
}
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