mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 12:07:15 +01:00
Bugfix kleinunternehmer bestellung
This commit is contained in:
parent
a51136e3ac
commit
c3c12ed3af
@ -31,7 +31,7 @@ class BestellungPDF extends BriefpapierCustom {
|
||||
$this->doctype="bestellung";
|
||||
$this->doctypeOrig="Bestellung";
|
||||
$this->bestellungohnepreis=0;
|
||||
parent::__construct($this->app,$projekt);
|
||||
parent::__construct($this->app,$projekt,Array('kleinunternehmer' => 'ignore')); // Fix for ignoring kleinunternehmer 0 or false does not work because of function getStyleElement($key) (class.briefpapier.php)
|
||||
}
|
||||
|
||||
|
||||
|
@ -2339,7 +2339,7 @@ class Briefpapier extends SuperFPDF {
|
||||
if(isset($this->textDetails['footer'])) {
|
||||
$freitext = $this->getStyleElement('freitext');
|
||||
|
||||
if($this->getStyleElement("kleinunternehmer"))
|
||||
if($this->getStyleElement("kleinunternehmer") == '1')
|
||||
{
|
||||
if($this->textDetails['footer']=="") $this->textDetails['footer'] ="Als Kleinunternehmer im Sinne von §19 Abs.1 UStG wird Umsatzsteuer nicht berechnet!";
|
||||
else $this->textDetails['footer'] .="\r\nAls Kleinunternehmer im Sinne von § 19 Abs. 1 UStG wird Umsatzsteuer nicht berechnet!";
|
||||
|
Loading…
Reference in New Issue
Block a user