Subversion Repositories wpShopGermany4

Rev

Rev 8371 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8371 Rev 8465
Line 938... Line 938...
938
		
938
		
939
		$pdf->Output($filename, 'I');
939
		$pdf->Output($filename, 'I');
940
		
940
		
941
	} else {
941
	} else {
942
		
942
		
943
		if (($this->view['rebuild']??false) === false) $pdf->Output($oInvoice->getFilePath(), 'F');
943
		if (($this->view['rebuild']??false) === false) $pdf->Output($oInvoice->getFilePath(true), 'F');
944
		
944
		
945
		// Hier wird der Dateiname an FPD übergeben. Er soll sich aus der Rechnungsnummer ergeben, auch wenn das Dokument über die ID gespeichert ist.
945
		// Hier wird der Dateiname an FPD übergeben. Er soll sich aus der Rechnungsnummer ergeben, auch wenn das Dokument über die ID gespeichert ist.
946
		if ($this->view['output'] === true) $pdf->Output($this->view['filename_out'], 'I');
946
		// if ($this->view['output'] === true) $pdf->Output($this->view['filename_out'], 'I');
-
 
947
		
-
 
948
		if ($this->view['output'] === true) {
-
 
949
			
-
 
950
			header('Content-Disposition: inline; filename="'.basename($this->view['filename_out']).'"');
-
 
951
			header("Cache-Control: no-cache, must-revalidate");
-
 
952
			header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
-
 
953
			header('Content-type: application/pdf');
-
 
954
			
-
 
955
			readfile($oInvoice->getFilePath());
-
 
956
			
-
 
957
		}
947
		
958
		
948
	}
959
	}
949
 
960