mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
Bugfix briefpapier freitexte width
This commit is contained in:
parent
09039f9d2a
commit
7a83c9fd29
@ -1800,9 +1800,16 @@ class Briefpapier extends SuperFPDF {
|
||||
}
|
||||
|
||||
private function getStyleElement($key){
|
||||
if(isset($this->styleData[$key]) && !empty($this->styleData[$key])) return $this->styleData[$key];
|
||||
|
||||
return $this->app->erp->Firmendaten($key);
|
||||
$result = null;
|
||||
if(isset($this->styleData[$key]) && !empty($this->styleData[$key])) {
|
||||
$result = $this->styleData[$key];
|
||||
} else {
|
||||
$result = $this->app->erp->Firmendaten($key);
|
||||
}
|
||||
if (empty($result)) {
|
||||
$result = 0;
|
||||
}
|
||||
return($result);
|
||||
}
|
||||
|
||||
public function renderDocument() {
|
||||
|
Loading…
Reference in New Issue
Block a user