Subversion Repositories wpShopGermany4

Rev

Rev 4943 | Rev 5720 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1092 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Rechnungsmodulansicht innerhalb der Bestellansicht
5
	 */
6
 
7
?>
8
 
9
<script type="text/javascript">
2759 daniel 10
 
11
	function wpsg_mod_rechnungen_storno()
12
	{
13
 
14
		if (jQuery('#wpsg_rechnungen_gutschrift1').attr('checked') || jQuery('#wpsg_rechnungen_gutschrift2').attr('checked'))
15
		{
16
 
17
			window.setTimeout(function() {
18
				location.href = '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=view&edit_id=<?php echo $this->view['data']['id']; ?>';
19
			}, 1000);
20
 
21
		}
22
 
23
		return true;
24
 
25
	}
26
 
1092 daniel 27
	jQuery(document).ready(function() {
28
 
29
		jQuery("#wpsg_rechnungen_postbox_title").bind("click", function() {
30
			if (jQuery(this.parentNode).hasClass("closed"))
31
			{
32
 
33
				jQuery.cookie("wpsg_rechnungen_field", "0", { expires: 999999 } );
34
 
35
			}
36
			else
37
			{
38
 
39
				jQuery.cookie("wpsg_rechnungen_field", "1", { expires: 999999 } );
40
 
41
			}
42
		} );
43
 
44
		if (jQuery.cookie("wpsg_rechnungen_field") == "1")
45
		{
46
 
47
			jQuery("#wpsg_rechnungen_postbox").removeClass("closed");
48
		}
2759 daniel 49
 
50
		jQuery('.wpsg_rechnungen_gutschrift').bind('change', function() {
51
 
52
			if (jQuery('#wpsg_rechnungen_gutschrift1').attr('checked') || jQuery('#wpsg_rechnungen_gutschrift2').attr('checked'))
53
			{
54
 
55
				jQuery('#wpsg_mod_rechnungen_fee_layer').show();
56
				jQuery('#wpsg_mod_rechnungen_stornopreview').show();
4389 daniel 57
				jQuery('#wpsg_rechnungen_stornobutton').attr('value', '<?php echo __('Rechnungskorrektur erstellen', 'wpsg'); ?>');
2759 daniel 58
 
59
			}
60
			else
61
			{
62
 
63
				jQuery('#wpsg_mod_rechnungen_fee_layer').hide();
64
				jQuery('#wpsg_mod_rechnungen_stornopreview').hide();
65
				jQuery('#wpsg_rechnungen_stornobutton').attr('value', '<?php echo __('Bestellung Stornieren', 'wpsg'); ?>');
66
 
67
			}
68
 
69
		} );
70
 
71
		jQuery('#wpsg_rechnungen_gutschrift0').change();
1092 daniel 72
 
73
	} );
74
 
75
</script>
76
 
1414 daniel 77
<div class="postbox" id="wpsg_rechnungen">
78
	<h3 class="wpsg_handlediv">
79
		<span title="<?php echo __('Zum Ein/Ausklappen hier klicken', 'wpsg'); ?>" class="handlediv"><br /></span>
80
		<span><?php echo __('Rechnungen', 'wpsg'); ?></span>
81
	</h3>
1092 daniel 82
	<div class="inside">
83
 
84
		<?php if (sizeof($this->view['mod_rechnungen']['arRechnungen']) == 0 && sizeof($this->view['mod_rechnungen']['arRechnungen_storno']) == 0) { ?>
85
			<p><?php echo __('Bisher keine Rechnungen geschrieben.', 'wpsg'); ?></p>
86
		<?php } else { ?>
87
			<table>
88
				<?php foreach ($this->view['mod_rechnungen']['arRechnungen_gesamt'] as $r) { ?>
89
				<tr>
1125 daniel 90
					<td>#<?php echo (($r['rnr'] != '')?$r['rnr']:$r['gnr']); ?>
1092 daniel 91
 
92
						<?php if ($r['storno'] == "0000-00-00 00:00:00") { ?>
93
							<?php if ($r['gnr'] != "") { ?>
4389 daniel 94
								<?php echo wpsg_translate(__('Rechnungskorrektur vom #1#', 'wpsg'), date("d.m.Y", $r['ts_datum'])); ?>
1092 daniel 95
							<?php } else { ?>
96
								<?php echo wpsg_translate(__('Rechnung geschrieben am #1#', 'wpsg'), date("d.m.Y", $r['ts_datum'])); ?>
97
							<?php } ?>
98
						<?php } else { ?>
99
							<?php echo wpsg_translate(__("Rechnung storniert am #1#", "wpsg"), date("d.m.Y", $r['ts_storno'])); ?>
100
						<?php } ?>
101
 
102
					</td>
103
					<td style="text-align:right;">
104
 
105
						<?php
106
 
107
							if ($r['rnr'] != "")
108
							{
1125 daniel 109
								$rfile = $this->callMod('wpsg_mod_rechnungen', 'getFilePath', array($this->view['data']['id'], true)).'R'.$r['rnr'].'.pdf';
1092 daniel 110
							}
111
							else if ($r['gnr'] != "")
112
							{
1125 daniel 113
								$rfile = $this->callMod('wpsg_mod_rechnungen', 'getFilePath', array($this->view['data']['id'], true)).'G'.$r['gnr'].'.pdf';
1092 daniel 114
							}
115
 
116
						?>
117
 
4389 daniel 118
						<a target="_blank" onclick="if (!confirm('<?php echo __('Sind Sie sicher, dass Sie eine Kopie dieser Rechnung/Rechnungskorrektur erneut an den Kunden senden möchten?', 'wpsg'); ?>')) return false;" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&mod=wpsg_mod_rechnungen&noheader=1&action=ajax&edit_id=<?php echo $this->view['data']['id']; ?>&r_id=<?php echo $r['id']; ?>&do=copy"><?php echo __("Kopie senden", "wpsg"); ?></a>&nbsp;
1094 daniel 119
						<a target="_blank" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&noheader=1&mod=wpsg_mod_rechnungen&do=getRechnung&edit_id=<?php echo $this->view['data']['id']; ?>&r_id=<?php echo $r['id']; ?>"><?php echo __("Ansehen", "wpsg"); ?></a>
1092 daniel 120
 
121
					</td>
122
				</tr>
123
				<?php } ?>
124
			</table>
125
			<br />
126
		<?php } ?>
127
 
128
		<?php if (sizeof($this->view['mod_rechnungen']['arRechnungen']) > 0 && sizeof($this->view['mod_rechnungen']['arRechnungen_gesamt']) != sizeof($this->view['mod_rechnungen']['arRechnungen_storno'])) { ?>
1094 daniel 129
			<fieldset style="border:1px solid #999999; width:100%;">
4389 daniel 130
				<legend style="margin-left:7px; margin-right:10px;"><?php echo __("Bestellstorno: Rechnungskorrektur erstellen", "wpsg"); ?></legend>
2759 daniel 131
				<div style="padding:10px;">
1125 daniel 132
					<form id="storno_form" target="_blank" method="post" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&noheader=1&action=ajax&mod=wpsg_mod_rechnungen&edit_id=<?php echo $this->view['data']['id']; ?>&do=storno">
1092 daniel 133
 
134
						<input type="hidden" name="send" value="1" />
135
 
4389 daniel 136
						<label><input onclick="jQuery.cookie('wpsg_rechnungen_stornoradio', '0');" type="radio" value="0" class="wpsg_rechnungen_gutschrift" id="wpsg_rechnungen_gutschrift0" name="wpsg_rechnungen_gutschrift" />&nbsp;<?php echo __("Rechnung komplett stornieren und keine Rechnungskorrektur erstellen.", "wpsg"); ?></label><br />
137
						<label><input onclick="jQuery.cookie('wpsg_rechnungen_stornoradio', '1');" type="radio" value="1" class="wpsg_rechnungen_gutschrift" id="wpsg_rechnungen_gutschrift1" name="wpsg_rechnungen_gutschrift" />&nbsp;<?php echo __("Rechnungskorrektur erstellen.", "wpsg"); ?></label><br />
138
						<label><input onclick="jQuery.cookie('wpsg_rechnungen_stornoradio', '2');" type="radio" value="2" class="wpsg_rechnungen_gutschrift" id="wpsg_rechnungen_gutschrift2" name="wpsg_rechnungen_gutschrift" />&nbsp;<?php echo __("Rechnungskorrektur erstellen und an Kunden senden.", "wpsg"); ?></label><br />
2759 daniel 139
 
140
						<div id="wpsg_mod_rechnungen_fee_layer" style="display:none;">
4389 daniel 141
							<?php echo wpsg_drawForm_Input('wpsg_mod_rechnungen_fee', __('Gebühr für Rechnungskorrektur', 'wpsg'), ''); ?>
2759 daniel 142
						</div>
143
 
144
						<div class="wpsg_clear"></div><br />
145
 
146
						<input onclick="return wpsg_mod_rechnungen_storno();" id="wpsg_rechnungen_stornobutton" class="button" type="submit" name="form_submit" value="<?php echo __("Stornieren", "wpsg"); ?>" style="float:right;" />
147
						<input id="wpsg_mod_rechnungen_stornopreview" class="button" type="submit" name="form_submit_preview" value="<?php echo __('Vorschau', 'wpsg'); ?>" style="float:right; margin-right:10px;" />
1092 daniel 148
 
149
						<script type="text/javascript">
150
 
1094 daniel 151
							jQuery(document).ready(function() {
2732 daniel 152
 
1094 daniel 153
								jQuery("[name=wpsg_rechnungen_gutschrift]").filter("[value=" + jQuery.cookie("wpsg_rechnungen_stornoradio") + "]").attr("checked","checked");
1092 daniel 154
 
1094 daniel 155
								jQuery("#wpsg_rechnungen_stornobutton").bind("click", function() {
1092 daniel 156
 
1094 daniel 157
									if (jQuery("#wpsg_rechnungen_gutschrift1").attr("checked") || jQuery("#wpsg_rechnungen_gutschrift2").attr("checked"))
158
									{
1092 daniel 159
 
1125 daniel 160
										//jQuery("#storno_form").attr("action", "<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&noheader=1&action=ajax&mod=wpsg_mod_rechnungen&edit_id=<?php echo $this->view['data']['id']; ?>&do=storno");
1092 daniel 161
										jQuery("#storno_form").attr("target", "_blank");
1094 daniel 162
 
1092 daniel 163
										window.setTimeout(function() {
1125 daniel 164
											location.href = "<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=view&edit_id=<?php echo $this->view['data']['id']; ?>";
2732 daniel 165
										}, 1500);
1092 daniel 166
 
167
									}
168
									else
169
									{
170
 
1125 daniel 171
										//jQuery("#storno_form").attr("action", "<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_rechnungen&edit_id=<?php echo $this->view['data']['id']; ?>&do=storno");
1092 daniel 172
										jQuery("#storno_form").attr("target", "");
173
 
174
									}
1094 daniel 175
 
1092 daniel 176
								});
177
 
178
							});
179
 
180
						</script>
181
 
182
					</form>
2759 daniel 183
					<div class="wpsg_hinweis"><?php echo __("Eine neue Rechnung kann erst geschrieben werden wenn alle bestehenden Rechnungen zu dieser Bestellung storniert wurden.", "wpsg"); ?></div>
184
					<div class="wpsg_clear"></div>
1092 daniel 185
				</div>
186
			</fieldset>
187
		<?php } else { ?>
188
 
1093 daniel 189
			<fieldset style="border:1px solid #999999; width:100%;">
190
				<legend style="margin-left:10px; margin-right:10px;"><?php echo __("Neue Rechnung", "wpsg"); ?></legend>
191
				<div style="padding:5px;">
192
 
193
					<form target="_blank" method="post" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_rechnungen&cmd=rechnung&noheader=1&edit_id=<?php echo $this->view['data']['id']; ?>">
194
 
195
						<input type="hidden" name="send" value="1" />
196
 
197
						<label style="height:25px; width:240px; float:left; margin-top:10px;">
198
							<input onchange="if (this.checked) jQuery('#wpsg_rechnungen_email').show(); else jQuery('#wpsg_rechnungen_email').hide();" type="checkbox" checked="checked" value="1" name="wpsg_rechnungen_sendmail" />
199
							&nbsp;<?php echo __("E-Mail an Kunden senden.", "wpsg"); ?>
200
						</label>
201
						<input type="text" style="display:block; width:300px; float:right;" id="wpsg_rechnungen_email" name="wpsg_rechnungen_email" value="<?php echo wpsg_hspc($this->view['data']['email']); ?>" />
202
						<div style="clear:both; width:100%; height:5px;"></div>
203
 
204
						<label style="height:25px; width:240px; float:left;">
205
							<input checked="checked"  onchange="if (this.checked) jQuery('#wpsg_rechnungen_faelligkeitsdatum').show(); else jQuery('#wpsg_rechnungen_faelligkeitsdatum').hide();" type="checkbox" value="1" name="wpsg_rechnungen_faelligkeit" />
206
							&nbsp;<?php echo __("Fälligkeit anzeigen.", "wpsg"); ?>
207
						</label>
208
						<input type="text" style="display:block; width:300px; float:right;" id="wpsg_rechnungen_faelligkeitsdatum" name="wpsg_rechnungen_faelligkeitsdatum" value="<?php echo date("d.m.Y", time() + ($this->get_option("wpsg_rechnungen_faelligkeit") * 86400)); ?>" />
209
						<div style="clear:both; width:100%; height:5px;"></div>
210
 
211
						<label style="height:25px; width:220px; float:left;">
212
							<input checked="checked" onchange="if (this.checked) jQuery('#wpsg_rechnungen_status').show(); else jQuery('#wpsg_rechnungen_status').hide();" type="checkbox" value="1" name="wpsg_rechnungen_status" />
213
							&nbsp;<?php echo __("Neuer Status:", "wpsg"); ?>
214
						</label>
215
						<select style="width:300px; float:right;" id="wpsg_rechnungen_status_neu" name="wpsg_rechnungen_status_neu">
1125 daniel 216
							<?php foreach ($this->arStatus as $k => $v) { ?>
1093 daniel 217
							<option value="<?php echo $k; ?>" <?php echo (($k == 110)?'selected="selected"':''); ?>><?php echo $v; ?></option>
218
							<?php } ?>
219
						</select>
220
						<div style="clear:both; width:100%; height:5px;"></div>
221
 
222
						<label style="height:25px; width:240px; float:left;">
223
							<input <?php echo (($this->get_option("wpsg_rechnungen_url_std") === "1")?'checked="checked"':''); ?> type="checkbox" value="1" name="wpsg_rechnungen_url" />
224
							&nbsp;<?php echo __("URL Benachrichtigung", "wpsg"); ?>
225
						</label>
226
						<div style="clear:both; width:100%; height:5px;"></div>
227
 
2975 daniel 228
						<label style="height:25px; width:240px; float:left; padding-left:22px;">
1093 daniel 229
							<?php echo __("Rechnungsdatum", "wpsg"); ?>:
230
						</label>
231
						<input style="display:block;float:right; width:300px;" type="text" name="wpsg_rechnungen_datum" value="<?php echo date("d.m.Y", time()); ?>" />
232
						<div style="clear:both; width:100%; height:5px;"></div>
233
 
2975 daniel 234
						<label for="wpsg_rechnungen_fusstext" style="height:25px; width:220px; padding-left:22px; float:left">
1093 daniel 235
							<?php echo __("Fußtext", "wpsg"); ?>
236
						</label>
237
 
238
						<?php
239
 
240
							$wpsg_rechnungen_footer = $this->get_option("wpsg_rechnungen_footer");
241
 							if (!is_array($wpsg_rechnungen_footer)) $wpsg_rechnungen_footer = unserialize($this->get_option("wpsg_rechnungen_footer"));
242
							if (!is_array($wpsg_rechnungen_footer)) $wpsg_rechnungen_footer = Array();
243
 
244
						?>
245
 
246
						<?php if (sizeof($wpsg_rechnungen_footer) > 0) { ?>
247
						<select style="width:300px; float:right;" id="wpsg_rechnungen_select" onchange="jQuery('#wpsg_rechnungen_fusstext').val(this.value);">
248
							<?php foreach ($wpsg_rechnungen_footer as $k => $v) { ?>
249
							<option value="<?php echo wpsg_hspc($v[1]); ?>"><?php echo wpsg_hspc($v[0]); ?></option>
250
							<?php } ?>
251
						</select>
252
						<?php } ?>
253
 
254
						<div style="clear:both; width:100%; height:5px;"></div>
255
						<div style="padding-left:25px;"><input style="width:100%;" type="text" name="wpsg_rechnungen_fusstext" id="wpsg_rechnungen_fusstext" value="" /></div>
256
						<div style="clear:both; width:100%; height:15px;"></div>
257
 
258
						<script type="text/javascript">
259
 
260
							jQuery(document).ready(function() {
261
								jQuery('#wpsg_rechnungen_fusstext').val(jQuery("#wpsg_rechnungen_select").val());
262
							});
263
 
264
						</script>
265
 
2759 daniel 266
						<input class="button" style="float:right;" onclick="window.setTimeout(function() { location.href = '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=view&edit_id=<?php echo $this->view['data']['id']; ?>'; }, 1000);" name="wpsg_rechnungen_write" type="submit" value="<?php echo __("Rechnung schreiben", "wpsg"); ?>" />
267
						<input class="button" style="float:right; margin-right:10px;" name="wpsg_rechnungen_preview" type="submit" value="<?php echo __("Vorschau", "wpsg"); ?>" />
1093 daniel 268
 
269
						<div style="clear:both; width:100%; height:5px;"></div>
1170 daniel 270
 
1093 daniel 271
					</form>
272
				</div>
273
			</fieldset>
274
 
1092 daniel 275
		<?php } ?>
276
 
277
	</div>
278
</div>