mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for taxes
This commit is contained in:
parent
edd8269c08
commit
affb0d60c9
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user