4,6 → 4,19 |
* Template für die Liste der Versandzonen |
*/ |
|
$arShipping = $this->arShippingAll; |
|
$arShippingPreset = [ |
'0' => __('Kundenvoreinstellung', 'wpsg'), |
'-1' => __('günstigste Versandart', 'wpsg'), |
]; |
|
foreach ($arShipping as $s_key => $s) { |
|
$arShippingPreset[$s_key] = $s['name']; |
|
} |
|
?> |
<?php if (!is_array($this->view['data']) || sizeof($this->view['data']) <= 0) { ?> |
<?php echo __('Bisher keine Versandzonen hinterlegt.', 'wpsg'); ?> |
13,6 → 26,7 |
<tr> |
<th class="col_name"><?php echo __('Bezeichnung', 'wpsg'); ?></th> |
<th class="col_innereu"><?php echo __('Inner- gemeinschaftlich', 'wpsg'); ?></th> |
<th class="col_shippingpreset"><?php echo __('Standardversandart', 'wpsg'); ?></th> |
<th class="col_aktion"></th> |
</tr> |
</thead> |
32,6 → 46,29 |
data-url="<?php echo html_entity_decode(wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=vz&do=inlinedit&noheader=1', 'wpsg-admin-versandzonen-inline_edit-'.$vz['id'])); ?>" |
<?php echo (($vz['innereu'] == '1')?'checked="checked"':''); ?> type="checkbox" value="1" name="innereu_<?php echo $vz['id']; ?>" id="innereu_<?php echo $vz['id']; ?>" /> |
</td> |
<td class="col_shippingpreset"> |
<span id="vz_<?php echo $vz['id']; ?>_shippingpreset"><?php echo wpsg_hspc(wpsg_getStr($arShippingPreset[$vz['shippingpreset']], __('Kundenvoreinstellung', 'wpsg'))); ?></span> |
<script> |
|
jQuery('#vz_<?php echo $vz['id']; ?>_shippingpreset').wpsg_editable('<?php |
|
echo html_entity_decode(wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=vz&do=inlinedit&noheader=1', 'wpsg-admin-versandzonen-inline_edit-'.$vz['id'])); |
|
?>', { |
submitdata: { |
field: 'shippingpreset', |
vz_id: '<?php echo $vz['id']; ?>' |
}, |
data: <?php echo wpsg_prepare_for_inlineEdit($arShippingPreset); ?>, |
type: 'select', |
submit: '<?php echo __('Speichern', 'wpsg'); ?>', |
placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>', |
indicator: '<?php echo __('Speicher ...', 'wpsg'); ?>', |
tooltip: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>' |
}); |
|
</script> |
</td> |
<td class="col_aktion"> |
|
<a class="wpsg_icon_plzedit" href="#" title="<?php echo __('Versandzonen PLZ bearbeiten', 'wpsg'); ?>" onclick="return wpsg_editPLZ(<?php echo $vz['id']; ?>);">[ PLZ ]</a> |