5562 |
daniel |
1 |
<form id="wpsg_land_edit_form_edit" class="form-horizontal">
|
7560 |
daniel |
2 |
|
5748 |
daniel |
3 |
<?php if (wpsg_isSizedInt($this->view['land']['id'])) { ?>
|
|
|
4 |
<input type="hidden" name="id" value="<?php echo $this->view['land']['id']; ?>" />
|
|
|
5 |
<?php } ?>
|
|
|
6 |
|
5562 |
daniel |
7 |
<?php echo wpsg_drawForm_Input('country[name]', __('Ländername', 'wpsg'), wpsg_getStr($this->view['land']['name']), array('help' => 'wpsg_land_name')); ?>
|
|
|
8 |
<?php echo wpsg_drawForm_Input('country[kuerzel]', __('Kürzel', 'wpsg'), wpsg_getStr($this->view['land']['kuerzel']), array('help' => 'wpsg_land_kuerzel')); ?>
|
|
|
9 |
<?php echo wpsg_drawForm_Select('country[vz]', __('Versandzone', 'wpsg'), $this->view['vz'], wpsg_getStr($this->view['land']['vz']), array('help' => 'wpsg_land_vz')); ?>
|
|
|
10 |
<?php echo wpsg_drawForm_Select('country[mwst]', __('MwSt. Grundlage', 'wpsg'), array(
|
4057 |
daniel |
11 |
'0' => __('mit MwSt.', 'wpsg'),
|
|
|
12 |
'1' => __('keine MwSt.', 'wpsg'),
|
|
|
13 |
'2' => __('keine MwSt. bei USt.IdNr.', 'wpsg')
|
4404 |
daniel |
14 |
), wpsg_getStr($this->view['land']['mwst']), array('help' => 'wpsg_land_mwst')); ?>
|
5562 |
daniel |
15 |
<?php echo wpsg_drawForm_Input('country[mwst_a]', __('MwSt. Satz A (stark ermäßigter Satz)', 'wpsg'), wpsg_getStr($this->view['land']['mwst_a']), array('help' => 'wpsg_land_mwst_a')); ?>
|
|
|
16 |
<?php echo wpsg_drawForm_Input('country[mwst_b]', __('MwSt. Satz B (ermäßigter Satz)', 'wpsg'), wpsg_getStr($this->view['land']['mwst_b']), array('help' => 'wpsg_land_mwst_b')); ?>
|
|
|
17 |
<?php echo wpsg_drawForm_Input('country[mwst_c]', __('MwSt. Satz C (Normalsatz)', 'wpsg'), wpsg_getStr($this->view['land']['mwst_c']), array('help' => 'wpsg_land_mwst_c')); ?>
|
|
|
18 |
<?php echo wpsg_drawForm_Input('country[mwst_d]', __('MwSt. Satz D (Zwischensatz)', 'wpsg'), wpsg_getStr($this->view['land']['mwst_d']), array('help' => 'wpsg_land_mwst_d')); ?>
|
5748 |
daniel |
19 |
<?php echo wpsg_drawForm_Checkbox('standard', __('Standardland', 'wpsg'), wpsg_getStr($this->view['land']['standard']), array('disabled' => ((isset($this->view['land']['standard']) && $this->view['land']['standard'] == '1')?true:false), 'help' => 'wpsg_land_standard')); ?>
|
5562 |
daniel |
20 |
|
7264 |
daniel |
21 |
<?php $this->callMods('laender_edit'); ?>
|
|
|
22 |
|
4057 |
daniel |
23 |
</form>
|