Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?
    // $Id: header_hausshop-24.de_1.inc.php 3943 2011-09-19 13:27:46Z erling $
    setLocale( LC_TIME, "de_DE.ISO-8859-15@euro" );
    $this->setY( 10 );
    //Arial bold 15
    $this->SetFont( 'Arial', 'B', 10 );
    //Move to the right
    $this->Cell( 125 );
    //Title
    $this->Cell( 0, 4, 'Hausshop-24', 0, 2, 'L' );
    $this->cell( 0, 4, 'Kieselstraße 17 - 56357 Miehlen', 0, 2, 'L' );
    $this->SetFont( 'Arial', '', 9 );
    $this->cell( 0, 4, 'www.hausshop-24.de', 0, 2, 'L' );
    $this->SetFont( 'Arial', 'B', 8 );
    $this->cell( 0, 2, '', 0, 2, 'L' );
    $this->cell( 0, 4, 'Info Line Versand/Logistik:', 0, 2, 'L' );
    $this->SetFont( 'Arial', '', 8 );
    $this->cell( 0, 4, '06772/9698020', 0, 2, 'L' );
    $this->cell( 0, 4, 'info@hausshop-24.de', 0, 2, 'L' );
    $this->cell( 0, 4, 'Fax: 06772/9698033', 0, 2, 'L' );
    //Rechungszeile
    $this->SetFont( 'Arial', 'B', 8 );
    
    if(isset( $_POST["gutschrift"] )) {
        $this->cell( 0, 4, 'Gutschrift-Nr.: ' . $r_nr, 0, 2, 'L' );
    }else{
        $this->cell( 0, 4, 'Rechnungs-Nr.: ' . $r_nr, 0, 2, 'L' );    
    }
    
    if ( LEISTUNGS_DATUM == true )
    {
        $this->cell( 0, 4, 'Datum: ' . $dat["Datum"], 0, 2, 'L' );
    }
    else
    {
        $this->cell( 0, 4, 'Datum: ' . date( 'd.m.Y' ), 0, 2, 'L' );
    }
?>