Fixes for taxes

This commit is contained in:
David Bomba 2023-04-28 20:18:25 +10:00
parent edd8269c08
commit affb0d60c9

View File

@ -113,6 +113,10 @@ class Rule extends BaseRule implements RuleInterface
*/ */
public function taxDigital(): self public function taxDigital(): self
{ {
$this->tax_rate1 = $this->tax_rate;
$this->tax_name1 = 'MwSt.';
return $this; return $this;
} }
@ -123,6 +127,10 @@ class Rule extends BaseRule implements RuleInterface
*/ */
public function taxService(): self public function taxService(): self
{ {
$this->tax_rate1 = $this->tax_rate;
$this->tax_name1 = 'MwSt.';
return $this; return $this;
} }
@ -133,6 +141,10 @@ class Rule extends BaseRule implements RuleInterface
*/ */
public function taxShipping(): self public function taxShipping(): self
{ {
$this->tax_rate1 = $this->tax_rate;
$this->tax_name1 = 'MwSt.';
return $this; return $this;
} }