Subversion Repositories wpShopGermany4

Rev

Rev 8130 | Rev 8369 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1092 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Rechnungsmodulansicht innerhalb der Bestellansicht
5
	 */
6
 
7
?>
8010 daniel 8
 
9
<div id="wpsg_mod_rechnungen_order_view">
10
 
11
    <?php echo wpsg_drawForm_AdminboxStart(__('Rechnungen', 'wpsg'));  ?>
12
 
13
        <?php if (sizeof($this->view['mod_rechnungen']['arRechnungen']) == 0 && sizeof($this->view['mod_rechnungen']['arRechnungen_storno']) == 0) { ?>
14
 
5720 daniel 15
        <p><?php echo __('Bisher keine Rechnungen geschrieben.', 'wpsg'); ?></p>
8010 daniel 16
 
17
        <?php } else { ?>
18
 
19
            <div class="grid">
20
 
21
                <?php foreach ($this->view['mod_rechnungen']['arRechnungen_gesamt'] as $r) {
22
 
23
                    $oInvoice = \wpsg\wpsg_invoice::getInstance($r['id']);
24
 
5720 daniel 25
                    ?>
8010 daniel 26
 
27
                    <div>
28
                        <?php echo $oInvoice->getDate(true); ?>
5720 daniel 29
                    </div>
8010 daniel 30
                    <div>
31
                        <?php echo $oInvoice->getNr(true); ?>
32
                    </div>
33
                    <div style="text-align:right;">
7541 daniel 34
 
8010 daniel 35
                        <a target="_blank" onclick="if (!confirm('<?php echo __('Sind Sie sicher, dass Sie eine Kopie dieser Rechnung/Rechnungskorrektur erneut an den Kunden senden möchten?', 'wpsg'); ?>')) return false;" href="<?php
36
 
8255 karl 37
                            if ($r['o_id'] == '0') {
8130 karl 38
                                // Multirechnung
8255 karl 39
                                $r_o_ids = array_map('intval', explode(',', $r['o_ids']));
40
                                echo wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Order&mod=wpsg_mod_rechnungen&noheader=1&action=ajax&edit_id='.$r_o_ids[0].'&r_id='.$r['id'].'&do=copy', 'wpsg-mod_invoice-order_ajax-copy-'.$r_o_ids[0]);
8130 karl 41
                            } else {
42
                                // normale Rechnung
43
                                echo wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Order&mod=wpsg_mod_rechnungen&noheader=1&action=ajax&edit_id='.$this->view['data']['id'].'&r_id='.$r['id'].'&do=copy', 'wpsg-mod_invoice-order_ajax-copy-'.$this->view['data']['id']);
44
                            }
45
 
8010 daniel 46
                        ?>"><?php echo ' &nbsp;'.__("Kopie senden", "wpsg"); ?></a>&nbsp;
47
 
48
                    </div>
49
 
50
                <?php } ?>
51
 
5720 daniel 52
            </div>
8010 daniel 53
 
54
        <?php } ?>
55
 
56
    <?php echo wpsg_drawForm_AdminboxEnd(); ?>
57
 
58
</div>
59
 
60
<style>
61
 
62
    #wpsg_mod_rechnungen_order_view .grid { display:grid; width:100%; grid-template-columns:150px 1fr 100px; row-gap:0.25rem; }
63
 
64
</style>