rtf_beitreibungsauftrag.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. require_once(dirname(__FILE__) . "/../auth.php");
  3. require_once(dirname(__FILE__) . "/../init.php");
  4. function getReportName ()
  5. {
  6. $part = substr($_GET['report'], strpos($_GET['report'], "/")+1);
  7. $strDoc = '';
  8. $strDoc = file_get_contents('..' . substr($part, strpos($part, "/")));
  9. $match = substr($strDoc, strpos($strDoc, 'reportName')+14);
  10. return substr($match, 0, strpos($match, ';')-1);
  11. }
  12. $doc = file_get_contents('Beitreibungsauftrag_' . getReportName() . '.rtf');
  13. foreach ($_GET as $key => $value)
  14. {
  15. $value = utf8_decode($value);
  16. switch ($value) {
  17. case "":
  18. $value = '-';
  19. break;
  20. case "Mahnst. 0: Kontoauszug vor Mahnung":
  21. $value = '{\b\cf11 ' . $value . '}';
  22. break;
  23. case "Mahnst. 1: Zahlungserinnerung":
  24. $value = '{\b\cf7 ' . $value . '}';
  25. break;
  26. case "Mahnst. 2: RA-Androhung":
  27. $value = '{\b\cf6 ' . $value . '}';
  28. break;
  29. }
  30. $doc = preg_replace('/\<' . strtolower($key) . '\>/i', $value, $doc);
  31. }
  32. $doc = preg_replace('/\<datum\>/i', date("d.m.Y"), $doc);
  33. if (true) {
  34. $fd = fopen('temp/Beitreibungsauftrag.rtf', 'w');
  35. fwrite($fd, $doc);
  36. fclose($fd);
  37. echo '<html><head><title></title><meta http-equiv="refresh" content="0; URL=temp/Beitreibungsauftrag.rtf"></head></html>';
  38. } else {
  39. $length = strlen($doc);
  40. $filename = "Beitreibungsauftrag_" . $_GET['KNDNR'] . ".rtf";
  41. header('Pragma: public');
  42. header('Expires: 0');
  43. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  44. header('Cache-Control: private', false);
  45. header('Content-Description: File Transfer');
  46. header('Content-Type: application/rtf');
  47. header('Content-Length: "' . $length . '"');
  48. header('Content-Disposition: attachment; filename="' . $filename . '"');
  49. echo $doc;
  50. }
  51. /*
  52. $_GET
  53. (
  54. [report] => /qbuilder/phpME_report_1183144753.php
  55. [KNAME] => 843487 - SCHAUB GmbH
  56. [KNDNR] => 843487
  57. [Kstra] => Postfach 101 552
  58. [Kdplz] => 86885
  59. [Kdort] => Landsberg
  60. [Ktelf] =>
  61. [BelNr] => VGGF135000115
  62. [ReDat] => 18.06.2013
  63. [Verka] => 155 - Eray Cakirogullari
  64. [Betri] => LL - NA
  65. [OffBe] => -145,00
  66. [RechBe] => -145,00
  67. [Mahnst] =>
  68. [NextMahnst] =>
  69. )
  70. */
  71. ?>