Subversion Repositories wpShopGermany4

Rev

Rev 8342 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

        /**
         * Dieses Template dient zur Integration der Admin Kontodaten in eine Bestellung (HTML)
         */

?>
<p>
        <?php echo wpsg_translate(__('Bitte überweisen Sie den Rechnungsbetrag in Höhe von #1# auf folgendes Konto und geben Sie als Betreff <strong>#2#</strong> an.', 'wpsg'), wpsg_ff($this->view['basket']['arCalculation']['sum']['topay_brutto'], $this->get_option('wpsg_currency')), $this->view['mod_prepayment']['subject']); ?>
</p> 

<table style="width:100%;">
        <tr>
                <td><?php echo __('Kontoinhaber', 'wpsg'); ?>:</td>
                <td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_kinhaber')); ?></td>
        </tr>
        <tr>
                <td><?php echo __('IBAN', 'wpsg'); ?>:</td>
                <td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_iban')); ?></td>
        </tr>
        <tr>
                <td><?php echo __('Bank', 'wpsg'); ?>:</td>
                <td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_bank')); ?></td>
        </tr>   
        <tr>
                <td><?php echo __('BIC-/SWIFT-Code', 'wpsg'); ?>:</td>
                <td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_swift')); ?></td>
        </tr> 
        <tr>
                <td><?php echo __('Betreff', 'wpsg'); ?>:</td>
                <td style="text-align:right;"><?php echo wpsg_translate(__('#1#', 'wpsg'), $this->view['mod_prepayment']['subject']); ?></td>
        </tr>
        <?php 
        
                if (isset($this->view['mod_prepayment']['subject']) && ($this->get_option('wpsg_mod_prepayment_qrcode') == true)) {

                        require_once WPSG_PATH_LIB.'phpgirocode.class.php';

                        echo '<tr><td>'.__('Zahlen via QR Code', 'wpsg').':</td></tr>';
                        
                        if ($this->get_option('wpsg_mod_prepayment_qrcode_country') == '0') {

                                $qrcodes = array();
                                $qrcodes = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['o_id'], $this->view['wpsg_mod_prepayment']['subject'], $this->view['basket']['sum']['preis_gesamt_brutto'], 3, PhpGirocode::OUTPUT_BASE64, $this->get_option('wpsg_mod_prepayment_qrcode_country'), $this->view['basket']));
                                
                                foreach ($qrcodes as $qr) {

                                        if ($qr['title'] == 'QR-Rechnung') echo '<tr style="margin-top:25px;" >';
                                        else echo '<tr>';
                                                echo '<td>'.__($qr['title'], 'wpsg').'</td>';
                                                echo '<td style="float:right;"><img style="max-width:120px;" width="120" height="120" src="data:image/png;base64,'.$qr['hash'].'" alt="qrcode" /></td>';
                                        echo '</tr>';

                                }

                        } else if ($this->get_option('wpsg_mod_prepayment_qrcode_country') == '1') { 

                                $qrcode = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['o_id'], $this->view['mod_prepayment']['subject'], $this->view['basket']['sum']['preis_gesamt_brutto'], 3, PhpGirocode::OUTPUT_BASE64, $this->get_option('wpsg_mod_prepayment_qrcode_country'), $this->view['basket']));
                                
                                echo '
                                        <tr>
                                                <td>'.__($qrcode['title'], 'wpsg').':</td>
                                                <td style="float:right;" alt="qrcode">'.$qrcode['hash'].'</td>
                                        </tr>
                                ';

                        } else if ($this->get_option('wpsg_mod_prepayment_qrcode_country') == '2') {

                                $qrcode = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['o_id'], $this->view['mod_prepayment']['subject'], $this->view['basket']['sum']['preis_gesamt_brutto'], 3, PhpGirocode::OUTPUT_BASE64, $this->get_option('wpsg_mod_prepayment_qrcode_country'), $this->view['basket']));

                                echo '
                                        <tr>
                                                <td>'.__($qrcode['title'], 'wpsg').':</td>
                                                <td style="float:right;" alt="qrcode">'.$qrcode['hash'].'</td>
                                        </tr>
                                ';

                        }
                
                }

        ?>
</table>