Line 108... |
Line 108... |
108 |
$pdf->SetFont('Arial', '', 12);
|
108 |
$pdf->SetFont('Arial', '', 12);
|
109 |
$pdf->Text($adress_left, $adress_top, $shop->view['kunde']['firma']);
|
109 |
$pdf->Text($adress_left, $adress_top, $shop->view['kunde']['firma']);
|
110 |
$pdf->Text($adress_left, $adress_top + 5, $shop->view['kunde']['vname'].' '.$shop->view['kunde']['name']);
|
110 |
$pdf->Text($adress_left, $adress_top + 5, $shop->view['kunde']['vname'].' '.$shop->view['kunde']['name']);
|
111 |
$pdf->Text($adress_left, $adress_top + 10, $shop->view['kunde']['strasse'].' '.wpsg_getStr($shop->view['kunde']['nr']));
|
111 |
$pdf->Text($adress_left, $adress_top + 10, $shop->view['kunde']['strasse'].' '.wpsg_getStr($shop->view['kunde']['nr']));
|
112 |
$pdf->Text($adress_left, $adress_top + 15, $shop->view['kunde']['plz'].' '.$shop->view['kunde']['ort']);
|
112 |
$pdf->Text($adress_left, $adress_top + 15, $shop->view['kunde']['plz'].' '.$shop->view['kunde']['ort']);
|
113 |
if ($shop->get_option("wpsg_mod_rechnungen_hideCountry") == '0')
|
113 |
if ($shop->get_option("wpsg_mod_rechnungen_hideCountry") == '0') {
|
114 |
$pdf->Text($adress_left, $adress_top + 20, strtoupper($shop->view['oOrder']->getInvoiceCountryName()));
|
114 |
$pdf->Text($adress_left, $adress_top + 20, strtoupper($shop->view['oOrder']->getInvoiceCountryName()));
|
- |
|
115 |
}
|
115 |
|
116 |
|
116 |
// Rechnungsdaten
|
117 |
// Rechnungsdaten
|
117 |
$pdf->SetFont('Arial', 'B', 16);
|
118 |
$pdf->SetFont('Arial', 'B', 16);
|
118 |
$pdf->Text($rdata_left, $rdata_top, __('Rechnung', 'wpsg'));
|
119 |
$pdf->Text($rdata_left, $rdata_top, __('Rechnung', 'wpsg'));
|
119 |
$pdf->SetFont('Arial', 'B', 9);
|
120 |
$pdf->SetFont('Arial', 'B', 9);
|
120 |
$pdf->Text($rdata_left, $rdata_top + 6, $shop->view['rnr']);
|
121 |
$pdf->Text($rdata_left, $rdata_top + 6, $shop->view['rnr']);
|