Line 93... |
Line 93... |
93 |
|
93 |
|
94 |
?>
|
94 |
?>
|
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" />
|
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 echo $oCustomer->getEMail(); ?>" />
|
101 |
|
101 |
|
102 |
<input type="checkbox" name="wpsg_rechnungen_faelligkeit" value="1" id="invoice_faelligkeit" checked="checked" />
|
102 |
<input type="checkbox" name="wpsg_rechnungen_faelligkeit" value="1" id="invoice_faelligkeit" />
|
103 |
<label for="invoice_faelligkeit"><?php echo __('Fälligkeit anzeigen', 'wpsg'); ?></label>
|
103 |
<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'); ?>" />
|
104 |
<input type="date" name="wpsg_rechnungen_faelligkeitsdatum" value="<?php echo date('Y-m-d'); ?>" />
|
105 |
|
105 |
|
106 |
<input type="checkbox" name="wpsg_rechnungen_status" value="1" id="invoice_state" />
|
106 |
<input type="checkbox" name="wpsg_rechnungen_status" value="1" id="invoice_state" checked="checked" />
|
107 |
<label for="invoice_state"><?php echo __('Neuer Status', 'wpsg'); ?></label>
|
107 |
<label for="invoice_state"><?php echo __('Neuer Status', 'wpsg'); ?></label>
|
108 |
<select name="wpsg_rechnungen_status_neu">
|
108 |
<select name="wpsg_rechnungen_status_neu">
|
109 |
<?php foreach ($this->arStatus as $status_key => $status_label) { ?>
|
109 |
<?php foreach ($this->arStatus as $status_key => $status_label) { ?>
|
110 |
<option value="<?php echo $status_key; ?>"><?php echo $status_label; ?></option>
|
110 |
<option value="<?php echo $status_key; ?>"><?php echo $status_label; ?></option>
|
111 |
<?php } ?>
|
111 |
<?php } ?>
|
Line 126... |
Line 126... |
126 |
|
126 |
|
127 |
}
|
127 |
}
|
128 |
|
128 |
|
129 |
?></label>
|
129 |
?></label>
|
130 |
|
130 |
|
131 |
<input type="checkbox" name="wpsg_rechnungen_discount_voucher_coupon" value="1" id="wpsg_rechnungen_discount_voucher_coupon" />
|
131 |
<input type="checkbox" name="wpsg_rechnungen_discount_voucher_coupon" value="1" id="wpsg_rechnungen_discount_voucher_coupon" checked="checked" />
|
132 |
<label style="grid-column:2 / span 2;" for="wpsg_rechnungen_discount_voucher_coupon"><?php echo __('Rabatt, Gutschein, Wertgutschein berechnen wenn vorhanden', 'wpsg'); ?></label>
|
132 |
<label style="grid-column:2 / span 2;" for="wpsg_rechnungen_discount_voucher_coupon"><?php echo __('Rabatt, Gutschein, Wertgutschein berechnen wenn vorhanden', 'wpsg'); ?></label>
|
133 |
|
133 |
|
134 |
<input type="checkbox" name="wpsg_rechnungen_url" value="1" id="invoice_url" />
|
134 |
<input type="checkbox" name="wpsg_rechnungen_url" value="1" id="invoice_url" />
|
135 |
<label for="invoice_url" style="grid-column: 2 / span 2;"><?php echo __('URL Benachrichtigung', 'wpsg'); ?></label>
|
135 |
<label for="invoice_url" style="grid-column: 2 / span 2;"><?php echo __('URL Benachrichtigung', 'wpsg'); ?></label>
|
136 |
|
136 |
|
Line 259... |
Line 259... |
259 |
|
259 |
|
260 |
?>
|
260 |
?>
|
261 |
|
261 |
|
262 |
<!-- Gutschrift -->
|
262 |
<!-- Gutschrift -->
|
263 |
|
263 |
|
264 |
<input type="checkbox" name="storno_send" id="storno_send" value="1" checked="checked" />
|
264 |
<input type="checkbox" name="storno_send" id="storno_send" value="1" />
|
265 |
<label for="storno_send"><?php echo __('E-Mail an Kunden senden', 'wpsg'); ?></label>
|
265 |
<label for="storno_send"><?php echo __('E-Mail an Kunden senden', 'wpsg'); ?></label>
|
266 |
<input type="email" name="storno_mail" value="<?php echo $oCustomer->getEMail(); ?>" />
|
266 |
<input type="email" name="storno_mail" value="<?php echo $oCustomer->getEMail(); ?>" />
|
267 |
|
267 |
|
268 |
<input type="checkbox" id="storno_shippay" name="storno_shippay" value="1" id="invoice_shippay" <?php
|
268 |
<input type="checkbox" id="storno_shippay" name="storno_shippay" value="1" id="invoice_shippay" <?php
|
269 |
|
269 |
|
Line 288... |
Line 288... |
288 |
<?php foreach ($this->arStatus as $status_key => $status_label) { ?>
|
288 |
<?php foreach ($this->arStatus as $status_key => $status_label) { ?>
|
289 |
<option value="<?php echo $status_key; ?>"><?php echo $status_label; ?></option>
|
289 |
<option value="<?php echo $status_key; ?>"><?php echo $status_label; ?></option>
|
290 |
<?php } ?>
|
290 |
<?php } ?>
|
291 |
</select>
|
291 |
</select>
|
292 |
|
292 |
|
293 |
<input type="checkbox" name="wpsg_rechnungen_discount_voucher_coupon" value="1" id="wpsg_rechnungen_storno_discount_voucher_coupon" />
|
293 |
<input type="checkbox" name="wpsg_rechnungen_discount_voucher_coupon" value="1" id="wpsg_rechnungen_storno_discount_voucher_coupon" checked="checked" />
|
294 |
<label style="grid-column:2 / span 2;" for="wpsg_rechnungen_storno_discount_voucher_coupon"><?php echo __('Rabatt, Gutschein, Wertgutschein berechnen wenn vorhanden', 'wpsg'); ?></label>
|
294 |
<label style="grid-column:2 / span 2;" for="wpsg_rechnungen_storno_discount_voucher_coupon"><?php echo __('Rabatt, Gutschein, Wertgutschein berechnen wenn vorhanden', 'wpsg'); ?></label>
|
295 |
|
295 |
|
296 |
<input type="checkbox" name="storno_fee_set" id="storno_fee_set" value="1" id="storno_fee_set" />
|
296 |
<input type="checkbox" name="storno_fee_set" id="storno_fee_set" value="1" id="storno_fee_set" />
|
297 |
<label for="storno_fee_set"><?php echo __('Stornierungsgebühr in % oder EUR', 'wpsg'); ?></label>
|
297 |
<label for="storno_fee_set"><?php echo __('Stornierungsgebühr in % oder EUR', 'wpsg'); ?></label>
|
298 |
<input type="text" value="" name="storno_fee_value" />
|
298 |
<input type="text" value="" name="storno_fee_value" />
|