View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001009 | OXID eShop (all versions) | 2.6. Administer orders | public | 2009-06-12 14:10 | 2012-12-10 13:17 |
| Reporter | michael_keiluweit | Assigned To | |||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 4.1.2 revision 18998 | ||||
| Fixed in Version | 4.1.4 revision 21266 | ||||
| Summary | 0001009: The date overwrite the invoice number | ||||
| Description | If 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; } | ||||
| Tags | PDF Invoice | ||||
| Theme | |||||
| Browser | All | ||||
| PHP Version | 5.2.6 | ||||
| Database Version | 5.0.33 | ||||