Changeset 874 for trunk/Modules/Finance/Bill.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Bill.php
r873 r874 8 8 function GenerateHTML() 9 9 { 10 return ('');10 return ''; 11 11 } 12 12 … … 29 29 $Output = shell_exec('echo "'.addslashes($Encoding->FromUTF8($HtmlCode)). 30 30 '"|htmldoc --no-numbered --webpage --no-embedfonts --charset 8859-2 -t pdf -'); 31 return ($Output);31 return $Output; 32 32 } 33 33 } … … 47 47 if ($Subject['Account'] != '') $Output .= 'Účet: '.$Subject['Account'].'<br>'; 48 48 if ($Subject['PayVAT'] != '') $Output .= 'Plátce DPH: '.$BooleanText[$Subject['PayVAT']].'<br>'; 49 return ($Output);49 return $Output; 50 50 } 51 51 … … 146 146 '</table>'; 147 147 148 return ($Output);148 return $Output; 149 149 } 150 150 } … … 215 215 '<tr><td> </td><td><br><br>'.$Desc['Signature'].':</td></tr>'; 216 216 $Output .= '</table>'; 217 return ($Output);217 return $Output; 218 218 } 219 219 }
Note:
See TracChangeset
for help on using the changeset viewer.