Hallo Zusammen,
ich habe eine Frage. In myorder.php gib es in dieser Shopversion diese Zeilen:
/* column 3 - bank information */
$oPdf->text( 140, 270, strip_tags( $oShop->oxshops__oxbankname->getRawValue() ) );
$oPdf->text( 140, 274, $this->translate( 'ORDER_OVERVIEW_PDF_ACCOUNTNR' ).strip_tags( $oShop->oxshops__oxbanknumber->value ) );
$oPdf->text( 140, 278, $this->translate( 'ORDER_OVERVIEW_PDF_BANKCODE' ).strip_tags( $oShop->oxshops__oxbankcode->value ) );
Musss ich die nur wie folgt umschreiben, um IBAN und BIC auf die Rechnung zu bekommen? (wie gesagt: Community Version 4.5.4)
/* column 3 - bank information */
$oPdf->text( 140, 270, strip_tags( $oShop->oxshops__oxbankname->getRawValue() ) );
$oPdf->text( 140, 274, $this->translate( 'ORDER_OVERVIEW_PDF_IBANNUMBER' ).strip_tags( $oShop->oxshops__oxibannumber->value ) );
$oPdf->text( 140, 278, $this->translate( 'ORDER_OVERVIEW_PDF_BICCODE' ).strip_tags( $oShop->oxshops__oxbiccode->value ) );
Danke für eine Info!
LG
ich habe eine Frage. In myorder.php gib es in dieser Shopversion diese Zeilen:
/* column 3 - bank information */
$oPdf->text( 140, 270, strip_tags( $oShop->oxshops__oxbankname->getRawValue() ) );
$oPdf->text( 140, 274, $this->translate( 'ORDER_OVERVIEW_PDF_ACCOUNTNR' ).strip_tags( $oShop->oxshops__oxbanknumber->value ) );
$oPdf->text( 140, 278, $this->translate( 'ORDER_OVERVIEW_PDF_BANKCODE' ).strip_tags( $oShop->oxshops__oxbankcode->value ) );
Musss ich die nur wie folgt umschreiben, um IBAN und BIC auf die Rechnung zu bekommen? (wie gesagt: Community Version 4.5.4)
/* column 3 - bank information */
$oPdf->text( 140, 270, strip_tags( $oShop->oxshops__oxbankname->getRawValue() ) );
$oPdf->text( 140, 274, $this->translate( 'ORDER_OVERVIEW_PDF_IBANNUMBER' ).strip_tags( $oShop->oxshops__oxibannumber->value ) );
$oPdf->text( 140, 278, $this->translate( 'ORDER_OVERVIEW_PDF_BICCODE' ).strip_tags( $oShop->oxshops__oxbiccode->value ) );
Danke für eine Info!
LG