Subversion Repositories wpShopGermany4

Rev

Rev 8390 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8390 Rev 8456
Line 95... Line 95...
95
                    
95
                    
96
                    <!-- Rechnung -->
96
                    <!-- Rechnung -->
97
                    
97
                    
98
                    <input type="checkbox" name="wpsg_rechnungen_sendmail" value="1" id="invoice_sendmail" checked="checked" />
98
                    <input type="checkbox" name="wpsg_rechnungen_sendmail" value="1" id="invoice_sendmail" checked="checked" />
99
                    <label for="invoice_sendmail"><?php echo __('E-Mail an Kunden senden', 'wpsg'); ?></label>
99
                    <label for="invoice_sendmail"><?php echo __('E-Mail an Kunden senden', 'wpsg'); ?></label>
100
                    <input type="email" name="wpsg_rechnungen_email" value="<?php echo $oCustomer->getEMail(); ?>" />
100
                    <input type="email" name="wpsg_rechnungen_email" value="<?php
-
 
101
						
-
 
102
						$mail = $oCustomer->getEMailEInvoice();
-
 
103
						if ($mail === null) $mail = $oCustomer->getEMail();
-
 
104
						
-
 
105
						echo $mail;
-
 
106
						
-
 
107
					?>" />
101
                    
108
                    
102
                    <input type="checkbox" name="wpsg_rechnungen_faelligkeit" value="1" id="invoice_faelligkeit" checked="checked" />
109
                    <input type="checkbox" name="wpsg_rechnungen_faelligkeit" value="1" id="invoice_faelligkeit" checked="checked" />
103
                    <label for="invoice_faelligkeit"><?php echo __('Fälligkeit anzeigen', 'wpsg'); ?></label>
110
                    <label for="invoice_faelligkeit"><?php echo __('Fälligkeit anzeigen', 'wpsg'); ?></label>
104
                    <input type="date" name="wpsg_rechnungen_faelligkeitsdatum" value="<?php echo date('Y-m-d', strtotime('+'.intval($this->get_option("wpsg_rechnungen_faelligkeit")).' day')); ?>" />
111
                    <input type="date" name="wpsg_rechnungen_faelligkeitsdatum" value="<?php echo date('Y-m-d', strtotime('+'.intval($this->get_option("wpsg_rechnungen_faelligkeit")).' day')); ?>" />
105
                    
112
                    
Line 269... Line 276...
269
                    
276
                    
270
                    <!-- Gutschrift -->
277
                    <!-- Gutschrift -->
271
                    
278
                    
272
                    <input type="checkbox" name="storno_send" id="storno_send" value="1" />
279
                    <input type="checkbox" name="storno_send" id="storno_send" value="1" />
273
                    <label for="storno_send"><?php echo __('E-Mail an Kunden senden', 'wpsg'); ?></label>
280
                    <label for="storno_send"><?php echo __('E-Mail an Kunden senden', 'wpsg'); ?></label>
274
                    <input type="email" name="storno_mail" value="<?php echo $oCustomer->getEMail(); ?>" />
281
                    <input type="email" name="storno_mail" value="<?php
-
 
282
						 
-
 
283
						$mail = $oCustomer->getEMailEInvoice();
-
 
284
						if ($mail === null) $mail = $oCustomer->getEMail();
-
 
285
						
-
 
286
						echo $mail;
-
 
287
						
-
 
288
					?>" />
275
                    
289
                    
276
                    <input type="checkbox" id="storno_shippay" name="storno_shippay" value="1" id="invoice_shippay" <?php 
290
                    <input type="checkbox" id="storno_shippay" name="storno_shippay" value="1" id="invoice_shippay" <?php 
277
                      
291
                      
278
                        if (sizeof($arInvoiceLabel) <= 0) echo ' checked="checked" ';
292
                        if (sizeof($arInvoiceLabel) <= 0) echo ' checked="checked" ';
279
                        
293