View Issue Details

IDProjectCategoryView StatusLast Update
0001009OXID eShop (all versions)2.6. Administer orderspublic2012-12-10 13:17
Reportermichael_keiluweit Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.1.2 revision 18998 
Fixed in Version4.1.4 revision 21266 
Summary0001009: The date overwrite the invoice number
DescriptionIf there is no sales tax ID given, the date overwrite the invoice number in the invoice pdf.
Additional Information
is:
// shop VAT number
if ( $oShop->oxshops__oxvatnumber->value ) {
    $sText = $this->translate( 'ORDER_OVERVIEW_PDF_TAXIDNR' ).' '.$oShop->oxshops__oxvatnumber->value;
    $oPdf->text( 195 - $oPdf->getStringWidth( $sText ), $iTop + 12, $sText );
    $iTop += 8;
}


should be:

// shop VAT number
if ( $oShop->oxshops__oxvatnumber->value ) {
    $sText = $this->translate( 'ORDER_OVERVIEW_PDF_TAXIDNR' ).' '.$oShop->oxshops__oxvatnumber->value;
    $oPdf->text( 195 - $oPdf->getStringWidth( $sText ), $iTop + 12, $sText );
    $iTop += 8;
} else {
    $iTop += 4;
}
TagsPDF Invoice
Theme
BrowserAll
PHP Version5.2.6
Database Version5.0.33

Activities

There are no notes attached to this issue.