1073 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen des Rechnungen Moduls
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
|
7094 |
florian |
9 |
<div>
|
|
|
10 |
<ul class="nav nav-tabs" role="tablist">
|
|
|
11 |
<li role="presentation" class="active"><a href="#tab1" aria-controls="home" role="tab" data-toggle="tab"><?php echo __('Vordefinierte Textfelder', 'wpsg'); ?></a></li>
|
|
|
12 |
<li role="presentation"><a href="#tab2" aria-controls="profile" role="tab" data-toggle="tab"><?php echo __('Fußzeile', 'wpsg'); ?></a></li>
|
|
|
13 |
<li role="presentation"><a href="#tab3" aria-controls="messages" role="tab" data-toggle="tab"><?php echo __('Sonstiges', 'wpsg'); ?></a></li>
|
|
|
14 |
</ul>
|
5866 |
hartmut |
15 |
<div class="tab-content">
|
|
|
16 |
<div id="tab1" role="tabpanel" class="tab-pane active" >
|
7094 |
florian |
17 |
|
1073 |
daniel |
18 |
<?php echo wpsg_drawForm_Input('wpsg_rechnungen_adresszeile', __('Adresszeile', 'wpsg'), $this->get_option('wpsg_rechnungen_adresszeile')); ?>
|
7103 |
thomas |
19 |
|
|
|
20 |
<hr>
|
|
|
21 |
|
7094 |
florian |
22 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
|
|
23 |
<div style="position:relative;">
|
|
|
24 |
<?php if ($this->view['bp'] === false) { ?>
|
|
|
25 |
<p><?php echo __('Es wurde bisher kein Briefpapier hochgeladen', 'wpsg'); ?></p>
|
|
|
26 |
<?php } else { ?>
|
7619 |
daniel |
27 |
<a href="<?php
|
|
|
28 |
|
|
|
29 |
echo wpsg_admin_url('Admin', 'module', ['do' => 'orderAjax', 'modul' => 'wpsg_mod_rechnungen', 'module_action' => 'getBp'], ['noheader' => '1']);
|
|
|
30 |
|
|
|
31 |
?>" target="_blank"><?php echo __('Derzeitiges Briefpapier', 'wpsg'); ?></a>
|
7094 |
florian |
32 |
<?php } ?>
|
|
|
33 |
<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign form-control-feedback" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_bp" data-wpsg-tip="mod_rechnung_bp" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_bp"></a>
|
|
|
34 |
<input type="file" name="wpsg_rechnungen_bp">
|
|
|
35 |
<?php $strSuffix = ''; if ($this->view['bp'] !== false) { $strSuffix = '
|
5866 |
hartmut |
36 |
<label>
|
|
|
37 |
<input type="checkbox" name="wpsg_rechnungen_bp_del" value="1" /> '.__('Löschen', 'wpsg').'
|
|
|
38 |
</label>';
|
5997 |
hartmut |
39 |
echo __($strSuffix);
|
7094 |
florian |
40 |
} ?>
|
|
|
41 |
</div>
|
|
|
42 |
<?php echo wpsg_drawForm_TextEnd(__('Briefpapier (PDF/JPG)', 'wpsg'), array('noP' => true, 'helps' => 'wpsg_rechnungen_bp')); ?>
|
7103 |
thomas |
43 |
|
|
|
44 |
<hr>
|
|
|
45 |
|
7094 |
florian |
46 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
|
|
47 |
<div style="position:relative;">
|
|
|
48 |
<?php if ($this->view['logo'] === false) { ?>
|
|
|
49 |
<p><?php echo __('Es wurde bisher kein Logo hochgeladen', 'wpsg'); ?></p>
|
|
|
50 |
<?php } else { ?>
|
7619 |
daniel |
51 |
<a href="<?php
|
|
|
52 |
|
|
|
53 |
echo wpsg_admin_url('Admin', 'module', ['do' => 'orderAjax', 'modul' => 'wpsg_mod_rechnungen', 'module_action' => 'getLogo'], ['noheader' => '1']);
|
|
|
54 |
|
|
|
55 |
?>" target="_blank"><?php echo __('Derzeitiges Logo', 'wpsg'); ?></a>
|
7094 |
florian |
56 |
<?php } ?>
|
|
|
57 |
<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign form-control-feedback" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_logo" data-wpsg-tip="mod_rechnung_logo" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_logo"></a>
|
|
|
58 |
<input type="file" name="wpsg_rechnungen_logo">
|
5866 |
hartmut |
59 |
|
7094 |
florian |
60 |
<?php $logo_pos = $this->get_option("wpsg_rechnungen_logo_position"); ?>
|
|
|
61 |
<?php $defaultAlign = !isset($logo_pos) || empty($logo_pos) ? "align-buttons-active" : ""; ?>
|
|
|
62 |
|
|
|
63 |
<?php $alignLeft = $logo_pos === 'left' ? "align-buttons-active" : ""; ?>
|
|
|
64 |
<?php $alignCenter = $logo_pos === 'center' ? "align-buttons-active" : ""; ?>
|
|
|
65 |
<?php $alignRight = $logo_pos === 'right' ? "align-buttons-active" : ""; ?>
|
|
|
66 |
|
7138 |
daniel |
67 |
<?php $logo_transparency = $this->get_option("wpsg_rechnungen_logo_transparency") ?: "100%"; ?>
|
7094 |
florian |
68 |
|
|
|
69 |
<?php $strSuffix = ''; if ($this->view['logo'] !== false) { $strSuffix = '
|
|
|
70 |
<div class="row">
|
|
|
71 |
<div class="col-md-4">
|
|
|
72 |
<div class="align-buttons">
|
7619 |
daniel |
73 |
<input type="input" data-toggle="tooltip" class="logo-align-button logo-align-button-left '.$alignLeft.'" name="wpsg_rechnungen_logo_position_left" value="" onclick="handleLogoAlignClick(jQuery(this))" onkeydown="return false;" onfocus="return false;" autocomplete="off" title="'.__("Logo linksbündig ausrichten").'">
|
|
|
74 |
<input type="input" data-toggle="tooltip" class="logo-align-button logo-align-button-center '.$alignCenter.'" name="wpsg_rechnungen_logo_position_center" value="" onclick="handleLogoAlignClick(jQuery(this))" onkeydown="return false;" onfocus="return false;" autocomplete="off" title="'.__("Logo zentrieren").'">
|
|
|
75 |
<input type="input" data-toggle="tooltip" class="logo-align-button logo-align-button-right '.$alignRight.' '.$defaultAlign.'" name="wpsg_rechnungen_logo_position_right" value="" onclick="handleLogoAlignClick(jQuery(this))" onkeydown="return false;" onfocus="return false;" autocomplete="off" title="'.__("Logo rechtsbündig ausrichten").'">
|
7094 |
florian |
76 |
</div>
|
|
|
77 |
</div>
|
|
|
78 |
<div class="col-md-8 logo-transparency">
|
|
|
79 |
<label>
|
|
|
80 |
<input type="text" name="wpsg_rechnungen_logo_transparency" value="'.$logo_transparency.'" /> '.__('Logodeckkraft', 'wpsg').'
|
|
|
81 |
</label>
|
|
|
82 |
</div>
|
|
|
83 |
<div class="col-md-12">
|
|
|
84 |
<label>
|
|
|
85 |
<input type="checkbox" name="wpsg_rechnungen_logo_del" value="1" /> '.__('Löschen', 'wpsg').'
|
|
|
86 |
</label>
|
|
|
87 |
</div>
|
|
|
88 |
</div>';
|
|
|
89 |
echo __($strSuffix);
|
|
|
90 |
} ?>
|
|
|
91 |
|
|
|
92 |
<button class="button wpsg_rechnungen_preview" style="float:right; margin-right:10px;" name="wpsg_rechnungen_preview" type="button">
|
|
|
93 |
<?php echo __("Vorschau", "wpsg"); ?>
|
|
|
94 |
</button>
|
|
|
95 |
|
|
|
96 |
</div>
|
|
|
97 |
<?php echo wpsg_drawForm_TextEnd(__('Logo (JPG)', 'wpsg'), array('noP' => true, 'helps' => 'wpsg_rechnungen_bp')); ?>
|
|
|
98 |
|
|
|
99 |
|
|
|
100 |
<!--
|
|
|
101 |
<div class="wpsg_hinweis"><?php echo __('Das Briefpapier wird hinter die gesamte Seite gelegt, das Logo wird standardmäßig rechts oben auf jeder Seite platziert. (96 dpi)', 'wpsg'); ?></div>
|
1073 |
daniel |
102 |
<br />
|
7103 |
thomas |
103 |
-->
|
|
|
104 |
<hr>
|
|
|
105 |
|
5866 |
hartmut |
106 |
<table class="table table-body-striped wpsg_mod_deliverynote_fieldtable">
|
7094 |
florian |
107 |
<thead>
|
1073 |
daniel |
108 |
<tr>
|
|
|
109 |
<th class="col_bezeichnung"><?php echo __('Bezeichnung', 'wpsg'); ?></th>
|
|
|
110 |
<th class="col_freitext"><?php echo __('Freitext', 'wpsg'); ?></th>
|
|
|
111 |
<th class="col_x"><?php echo __('X', 'wpsg'); ?></th>
|
|
|
112 |
<th class="col_y"><?php echo __('Y', 'wpsg'); ?></th>
|
|
|
113 |
<th class="col_color"><?php echo __('Farbe', 'wpsg'); ?></th>
|
|
|
114 |
<th class="col_groesse"><?php echo __('Größe', 'wpsg'); ?></th>
|
|
|
115 |
<th class="col_action"></th>
|
|
|
116 |
</tr>
|
7094 |
florian |
117 |
</thead>
|
|
|
118 |
<tbody>
|
1073 |
daniel |
119 |
<?php foreach ($this->view['fields'] as $f => $field_name) { ?>
|
7094 |
florian |
120 |
<tr>
|
|
|
121 |
<td><?php echo wpsg_getStr($field_name); ?></td>
|
|
|
122 |
<td>
|
|
|
123 |
<input type="text" style="width:100%;" name="text[<?php echo $f; ?>][text]" value="<?php echo wpsg_getStr($this->view['arTexte'][$f]['text']); ?>" />
|
|
|
124 |
</td>
|
|
|
125 |
<td>
|
|
|
126 |
<input type="text" style="width:100%;" name="text[<?php echo $f; ?>][x]" value="<?php echo wpsg_getStr($this->view['arTexte'][$f]['x']); ?>" />
|
|
|
127 |
</td>
|
|
|
128 |
<td>
|
|
|
129 |
<input type="text" style="width:100%;" name="text[<?php echo $f; ?>][y]" value="<?php echo wpsg_getStr($this->view['arTexte'][$f]['y']); ?>" />
|
|
|
130 |
</td>
|
|
|
131 |
<td>
|
|
|
132 |
<input type="text" style="width:100%;" name="text[<?php echo $f; ?>][color]" value="<?php echo wpsg_getStr($this->view['arTexte'][$f]['color']); ?>" />
|
|
|
133 |
</td>
|
|
|
134 |
<td>
|
|
|
135 |
<select name="text[<?php echo $f; ?>][fontsize]" style="width:100%;">
|
|
|
136 |
<option <?php echo ((wpsg_getStr($this->view['arTexte'][$f]['fontsize']) == "8")?'selected="selected"':''); ?> value="8">8</option>
|
|
|
137 |
<option <?php echo ((wpsg_getStr($this->view['arTexte'][$f]['fontsize']) == "9")?'selected="selected"':''); ?> value="9">9</option>
|
|
|
138 |
<option <?php echo ((wpsg_getStr($this->view['arTexte'][$f]['fontsize']) == "10")?'selected="selected"':''); ?> value="10">10</option>
|
|
|
139 |
<option <?php echo ((wpsg_getStr($this->view['arTexte'][$f]['fontsize']) == "11")?'selected="selected"':''); ?> value="11">11</option>
|
|
|
140 |
<option <?php echo ((wpsg_getStr($this->view['arTexte'][$f]['fontsize']) == "12")?'selected="selected"':''); ?> value="12">12</option>
|
|
|
141 |
<option <?php echo ((wpsg_getStr($this->view['arTexte'][$f]['fontsize']) == "13")?'selected="selected"':''); ?> value="13">13</option>
|
|
|
142 |
<option <?php echo ((wpsg_getStr($this->view['arTexte'][$f]['fontsize']) == "14")?'selected="selected"':''); ?> value="14">14</option>
|
|
|
143 |
|
|
|
144 |
</select>
|
|
|
145 |
</td>
|
|
|
146 |
<td>
|
|
|
147 |
<label><input type="checkbox" value="1" name="text[<?php echo $f; ?>][aktiv]" <?php echo ((wpsg_isSizedInt($this->view['arTexte'][$f]['aktiv']))?'checked="checked"':''); ?> /> <?php echo __("Aktiv", "wpsg"); ?></label>
|
|
|
148 |
<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_fieldconfig" data-wpsg-tip="mod_rechnung_fieldconfig" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_fieldconfig"></a>
|
|
|
149 |
</td>
|
|
|
150 |
</tr>
|
1073 |
daniel |
151 |
<?php } ?>
|
7094 |
florian |
152 |
</tbody>
|
1073 |
daniel |
153 |
</table>
|
7094 |
florian |
154 |
|
2301 |
daniel |
155 |
<br />
|
7094 |
florian |
156 |
|
2301 |
daniel |
157 |
<input style="float:right;" class="button" onclick="if (!confirm('<?php echo __('Sind Sie sich sicher? Ihre bisherigen Einstellungen gehen verloren!', 'wpsg'); ?>')) return false; else location.href = '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=<?php echo $_REQUEST['modul']; ?>&do=reset&noheader=1';" type="button" value="<?php echo __('Standardeinstellungen laden', 'wpsg'); ?>" />
|
7094 |
florian |
158 |
|
6496 |
thomas |
159 |
<div class="info">
|
7094 |
florian |
160 |
<p style="line-height:normal;">
|
6496 |
thomas |
161 |
<?php echo __('Die Angaben für X (Abstand von Links) und Y (Abstand von Oben) werden in mm eingetragen.', 'wpsg'); ?><br />
|
7094 |
florian |
162 |
<?php echo __('Die Farbe wird im Hexadezimalformat angegeben (#FFFFFF für weiß, #000000 für schwarz).', 'wpsg'); ?>
|
6496 |
thomas |
163 |
</p>
|
1073 |
daniel |
164 |
</div>
|
|
|
165 |
<br />
|
7094 |
florian |
166 |
|
1073 |
daniel |
167 |
</div>
|
5866 |
hartmut |
168 |
<div id="tab2" role="tabpanel" class="tab-pane" >
|
7094 |
florian |
169 |
|
1073 |
daniel |
170 |
<div id="foottext_list"><?php echo $this->view['foottext_list']; ?></div>
|
7094 |
florian |
171 |
<br />
|
5997 |
hartmut |
172 |
|
7094 |
florian |
173 |
<a title="<?php echo __('Neue Fußzeile anlegen', 'wpsg'); ?>" href="" class="" onclick="return wpsg_addFooter();"><span class="glyphicon wpsg-glyphicon glyphicon-plus"></span><?php echo __('Neue Fußzeile anlegen.', 'wpsg'); ?></a>
|
5997 |
hartmut |
174 |
|
7094 |
florian |
175 |
<br /><br />
|
6496 |
thomas |
176 |
<div class="info">
|
7094 |
florian |
177 |
<p style="line-height:normal;">
|
6496 |
thomas |
178 |
<?php echo __('Hier können Sie Texte vordefinieren, die sie unter die Rechnung setzen können.', 'wpsg'); ?>
|
|
|
179 |
</p>
|
1073 |
daniel |
180 |
</div>
|
7094 |
florian |
181 |
|
|
|
182 |
</div>
|
5866 |
hartmut |
183 |
<div id="tab3" role="tabpanel" class="tab-pane" >
|
7094 |
florian |
184 |
|
|
|
185 |
<?php echo wpsg_drawForm_Input('wpsg_rechnungen_url', __('URL Benachrichtigung', 'wpsg'), $this->get_option('wpsg_rechnungen_url'), array('help' => 'wpsg_rechnung_url')); ?>
|
1927 |
daniel |
186 |
<?php echo wpsg_drawForm_Select('wpsg_mod_rechnungen_auto', __('Rechnungserstellung', 'wpsg'), array(
|
|
|
187 |
'0' => __('Manuell', 'wpsg'),
|
|
|
188 |
'1' => __('Bei Bestellung', 'wpsg'),
|
|
|
189 |
'2' => __('Bei Zahlung', 'wpsg')
|
4923 |
thomas |
190 |
), $this->get_option('wpsg_mod_rechnungen_auto'), array('help' => 'wpsg_mod_rechnungen_auto')); ?>
|
|
|
191 |
<?php echo wpsg_drawForm_Input('wpsg_rechnungen_faelligkeit', __('Fälligkeit in Tagen', 'wpsg'), $this->get_option('wpsg_rechnungen_faelligkeit'), array('help' => 'wpsg_rechnungen_faelligkeit')); ?>
|
|
|
192 |
<?php echo wpsg_drawForm_Input('wpsg_rechnungen_pdfperpage', __('Anzahl an Produkten pro Seite (PDF)', 'wpsg'), $this->get_option('wpsg_rechnungen_pdfperpage'), array('help' => 'wpsg_rechnungen_pdfperpage')); ?>
|
8082 |
karl |
193 |
<?php echo wpsg_drawForm_Checkbox('wpsg_rechnungen_pdetailname', __('Produktdetailname auf Rechnung anzeigen', 'wpsg'), $this->get_option('wpsg_rechnungen_pdetailname'), array('help' => 'wpsg_rechnungen_pdetailname')); ?>
|
4923 |
thomas |
194 |
<?php echo wpsg_drawForm_Checkbox('wpsg_rechnungen_pbeschreibung', __('Produktbeschreibung auf Rechnung anzeigen', 'wpsg'), $this->get_option('wpsg_rechnungen_pbeschreibung'), array('help' => 'wpsg_rechnungen_pbeschreibung')); ?>
|
7094 |
florian |
195 |
|
5765 |
thomas |
196 |
<?php if ($this->hasMod('wpsg_mod_produktattribute') == '1') {?>
|
7094 |
florian |
197 |
<?php echo wpsg_drawForm_Checkbox('wpsg_rechnungen_produktattribute', __('Produktattribute auf der Rechnung anzeigen', 'wpsg'), $this->get_option('wpsg_rechnungen_produktattribute'), array('help' => 'wpsg_rechnungen_produktattribute')); ?>
|
5765 |
thomas |
198 |
<?php }?>
|
8167 |
karl |
199 |
|
|
|
200 |
<?php if ($this->hasMod('wpsg_mod_deliverynote') == '1') {?>
|
|
|
201 |
<?php echo wpsg_drawForm_Checkbox('wpsg_rechnungen_deliverynote', __('Lieferdatum auf der Rechnung anzeigen', 'wpsg'), $this->get_option('wpsg_rechnungen_deliverynote'), array('help' => 'wpsg_rechnungen_deliverynote')); ?>
|
|
|
202 |
<?php }?>
|
7094 |
florian |
203 |
|
4923 |
thomas |
204 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_rechnungen_showgutschriftrechnung', __('Rechnungsnummer auf Rechnungskorrektur anzeigen', 'wpsg'), $this->get_option('wpsg_mod_rechnungen_showgutschriftrechnung'), array('help' => 'wpsg_mod_rechnungen_showgutschriftrechnung')); ?>
|
|
|
205 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_rechnungen_showpv', __('Produktvariablen auf Rechnung anzeigen', 'wpsg'), $this->get_option('wpsg_mod_rechnungen_showpv'), array('help' => 'wpsg_mod_rechnungen_showpv')); ?>
|
|
|
206 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_rechnungen_showov', __('Bestellvariablen auf Rechnung anzeigen', 'wpsg'), $this->get_option('wpsg_mod_rechnungen_showov'), array('help' => 'wpsg_mod_rechnungen_showov')); ?>
|
6020 |
thomas |
207 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_rechnungen_hideCountry', __('Land auf Rechnung verbergen', 'wpsg'), $this->get_option('wpsg_mod_rechnungen_hideCountry'), array('help' => 'wpsg_mod_rechnungen_hideCountry')); ?>
|
8155 |
daniel |
208 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_rechnungen_customermail', __('Rechnung/PDF an Bestellbestätigungsmail anhängen', 'wpsg'), $this->get_option('wpsg_mod_rechnungen_customermail'), ['help' => 'wpsg_mod_rechnungen_customermail']); ?>
|
4923 |
thomas |
209 |
<?php echo wpsg_drawForm_Input('wpsg_rechnungen_start', __('Startnummer (Rechnungen)', 'wpsg'), $this->get_option('wpsg_rechnungen_start'), array('help' => 'wpsg_rechnungen_start')); ?>
|
|
|
210 |
<?php echo wpsg_drawForm_Input('wpsg_gutschrift_start', __('Startnummer (Rechnungskorrektur)', 'wpsg'), $this->get_option('wpsg_gutschrift_start'), array('help' => 'wpsg_gutschrift_start')); ?>
|
|
|
211 |
<?php echo wpsg_drawForm_Select('wpsg_mod_rechnungen_gutschrifttax', __('Mehrwertsteuersatz für Bearbeitungsgebühr', 'wpsg'), wpsg_tax_groups(), $this->get_option('wpsg_mod_rechnungen_gutschrifttax'), array('help' => 'wpsg_mod_rechnungen_gutschrifttax')); ?>
|
|
|
212 |
<?php echo wpsg_drawForm_Input('wpsg_rechnungen_format', __('Format (Rechnungen)', 'wpsg'), $this->get_option('wpsg_rechnungen_format'), array('help' => 'wpsg_rechnungen_format')); ?>
|
|
|
213 |
<?php echo wpsg_drawForm_Input('wpsg_gutschrift_format', __('Format (Rechnungskorrektur)', 'wpsg'), $this->get_option('wpsg_gutschrift_format'), array('help' => 'wpsg_gutschrift_format')); ?>
|
6751 |
daniel |
214 |
|
|
|
215 |
<?php echo wpsg_drawForm_Select('wpsg_mod_rechnungen_anr', __('Artikelnummer anzeigen', 'wpsg'), array(
|
|
|
216 |
'0' => __('Nicht anzeigen', 'wpsg'),
|
|
|
217 |
'1' => __('In Spalte "Nr." zeigen', 'wpsg'),
|
|
|
218 |
'2' => __('Als extra Zeile anzeigen', 'wpsg')
|
|
|
219 |
), $this->get_option('wpsg_mod_rechnungen_anr'), array('help' => 'wpsg_mod_rechnungen_anr')); ?>
|
7094 |
florian |
220 |
|
|
|
221 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
|
|
222 |
<div class="info">
|
|
|
223 |
<p style="line-height:normal;">
|
|
|
224 |
%nr% - <?php echo __('Fortlaufende Rechnungs- bzw. Rechnungskorrekturnummer', 'wpsg'); ?><br />
|
|
|
225 |
%Jahr% - <?php echo __('Das aktuelle Jahr (4 Stellig)', 'wpsg'); ?><br />
|
|
|
226 |
%Monat% - <?php echo __('Der aktuelle Monat (01 - 12)', 'wpsg'); ?><br />
|
|
|
227 |
%Tag% - <?php echo __('Der Tag des Monats (01 - 31)', 'wpsg'); ?><br />
|
|
|
228 |
</p>
|
|
|
229 |
</div>
|
|
|
230 |
|
|
|
231 |
<p style="line-height:normal;"><?php echo __('Die Platzhalter können bei den Formatfeldern und dem Dateinamen verwendet werden. Der Platzhalter %nr% sollte dabei immer Verwendung finden.', 'wpsg'); ?></p>
|
|
|
232 |
|
6496 |
thomas |
233 |
<?php echo wpsg_drawForm_TextEnd(__('Mögliche Platzhalter für Rechnungen und Rechnungskorrektur', 'wpsg'), array('noP' => true)); ?>
|
7094 |
florian |
234 |
|
1073 |
daniel |
235 |
</div>
|
|
|
236 |
</div>
|
|
|
237 |
</div>
|
|
|
238 |
|
7094 |
florian |
239 |
|
7817 |
daniel |
240 |
<script>
|
1073 |
daniel |
241 |
|
|
|
242 |
jQuery(document).ready(function() {
|
7817 |
daniel |
243 |
|
|
|
244 |
jQuery('#wpsg_mod_rechnungen_customermail').on('change', function() {
|
|
|
245 |
|
|
|
246 |
if (jQuery(this).prop('checked') === true) {
|
|
|
247 |
|
|
|
248 |
jQuery('#wpsg_mod_rechnungen_auto').val('1');
|
|
|
249 |
|
|
|
250 |
}
|
|
|
251 |
|
|
|
252 |
});
|
7094 |
florian |
253 |
|
7817 |
daniel |
254 |
jQuery('#wpsg_mod_rechnungen_auto').on('change', function() {
|
|
|
255 |
|
|
|
256 |
if (jQuery(this).val() !== '1') {
|
|
|
257 |
|
|
|
258 |
jQuery('#wpsg_mod_rechnungen_customermail').prop('checked', false);
|
|
|
259 |
|
|
|
260 |
}
|
|
|
261 |
|
8082 |
karl |
262 |
});
|
7817 |
daniel |
263 |
|
7094 |
florian |
264 |
jQuery('#wpsg_tab').wpsg_tab( {
|
1073 |
daniel |
265 |
'cookiename': 'wpsg_rechnungen_tab',
|
|
|
266 |
'tab2': function() {
|
|
|
267 |
jQuery('.tablink').show();
|
|
|
268 |
}
|
|
|
269 |
} );
|
7094 |
florian |
270 |
|
7619 |
daniel |
271 |
var onloadActiveBtn = jQuery(".align-buttons-active")[0];
|
7138 |
daniel |
272 |
|
7094 |
florian |
273 |
if(onloadActiveBtn)
|
|
|
274 |
{
|
|
|
275 |
if(!onloadActiveBtn.value.includes("selected"))
|
|
|
276 |
onloadActiveBtn.value += " selected";
|
|
|
277 |
}
|
|
|
278 |
|
7619 |
daniel |
279 |
jQuery(".wpsg_rechnungen_preview").click(function(){ wpsg_rechnungen_preview(); });
|
7094 |
florian |
280 |
|
1073 |
daniel |
281 |
} );
|
|
|
282 |
|
7094 |
florian |
283 |
/**
|
|
|
284 |
* Stellt sicher, dass immer nur ein Button der align-buttons die highlight Klasse hat
|
|
|
285 |
*/
|
|
|
286 |
function handleLogoAlignClick(pressedEl)
|
|
|
287 |
{
|
5866 |
hartmut |
288 |
|
7094 |
florian |
289 |
if(pressedEl.hasClass("align-buttons-active")) return;
|
|
|
290 |
else
|
|
|
291 |
{
|
|
|
292 |
|
|
|
293 |
pressedEl.addClass("align-buttons-active");
|
|
|
294 |
pressedEl[0].value = pressedEl[0].value + " selected";
|
|
|
295 |
|
7619 |
daniel |
296 |
jQuery.each(jQuery(".logo-align-button"), function(index, element) {
|
7094 |
florian |
297 |
if(element.classList.contains("align-buttons-active") && element !== pressedEl[0]){
|
|
|
298 |
|
|
|
299 |
var values = element.value.split(" ");
|
|
|
300 |
element.value = values[0];
|
|
|
301 |
|
|
|
302 |
element.classList.remove("align-buttons-active");
|
|
|
303 |
|
|
|
304 |
return false;
|
|
|
305 |
|
|
|
306 |
}
|
|
|
307 |
});
|
|
|
308 |
|
|
|
309 |
}
|
|
|
310 |
|
|
|
311 |
} // function handleLogoAlignClick()
|
|
|
312 |
|
|
|
313 |
// Verhindern der Weiterleitung nach dem Klick auf einen Align Button
|
7619 |
daniel |
314 |
jQuery(".logo-align-button").click(function() { return false; });
|
7094 |
florian |
315 |
|
5866 |
hartmut |
316 |
/**
|
7094 |
florian |
317 |
* Wird beim Klicken auf den Vorschau Button ausgelöst
|
|
|
318 |
*/
|
|
|
319 |
function wpsg_rechnungen_preview()
|
|
|
320 |
{
|
|
|
321 |
|
7619 |
daniel |
322 |
var url = "<?php echo wpsg_admin_url('Admin', 'module', ['modul' => 'wpsg_mod_rechnungen', 'do' => 'orderAjax', 'wpsg_rechnungen_preview' => '1'], ['noheader' => '1'], true); ?>";
|
|
|
323 |
//echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_rechnungen&do=orderAjax&noheader=1&wpsg_rechnungen_preview=1";
|
7094 |
florian |
324 |
|
|
|
325 |
window.open(url, '_blank');
|
|
|
326 |
|
|
|
327 |
return false;
|
|
|
328 |
|
|
|
329 |
} // function wpsg_rechnungen_preview()
|
|
|
330 |
|
|
|
331 |
/**
|
5866 |
hartmut |
332 |
* Wird beim anlegen einer neuen Fußzeile aufgerufen
|
7094 |
florian |
333 |
*/
|
5866 |
hartmut |
334 |
function wpsg_addFooter()
|
|
|
335 |
{
|
7094 |
florian |
336 |
|
5866 |
hartmut |
337 |
jQuery('#foottext_list').html('<img src="<?php echo WPSG_URL; ?>views/gfx/ajax-loader.gif" alt="<?php echo __('Bitte warten ...', 'wpsg'); ?>" />');
|
|
|
338 |
|
|
|
339 |
jQuery.ajax( {
|
|
|
340 |
url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_rechnungen&do=add&noheader=1',
|
|
|
341 |
success: function(data) {
|
|
|
342 |
jQuery('#foottext_list').html(data);
|
|
|
343 |
}
|
|
|
344 |
} );
|
|
|
345 |
|
|
|
346 |
return false;
|
7094 |
florian |
347 |
|
5866 |
hartmut |
348 |
} // function wpsg_addFooter()
|
|
|
349 |
|
|
|
350 |
/**
|
|
|
351 |
* Wird beim entfernen einer Fußzeile aufgerufen
|
|
|
352 |
*/
|
|
|
353 |
function wpsg_removeFooter(foot_id)
|
|
|
354 |
{
|
|
|
355 |
|
|
|
356 |
if (!confirm('<?php echo __('Sind Sie sich sicher, dass Sie diese Fußzeile löschen möchten?', 'wpsg'); ?>')) return false;
|
|
|
357 |
|
|
|
358 |
jQuery('#foottext_list').html('<img src="<?php echo WPSG_URL; ?>views/gfx/ajax-loader.gif" alt="<?php echo __('Bitte warten ...', 'wpsg'); ?>" />');
|
|
|
359 |
|
|
|
360 |
jQuery.ajax( {
|
|
|
361 |
url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_rechnungen&do=removeFooter&noheader=1',
|
|
|
362 |
data: {
|
|
|
363 |
foot_id: foot_id
|
|
|
364 |
},
|
|
|
365 |
success: function(data) {
|
|
|
366 |
jQuery('#foottext_list').html(data);
|
|
|
367 |
}
|
|
|
368 |
} );
|
|
|
369 |
|
|
|
370 |
return false;
|
|
|
371 |
|
|
|
372 |
} // function wpsg_removeFooter()
|
|
|
373 |
|
|
|
374 |
|
7817 |
daniel |
375 |
</script>
|