Subversion Repositories wpShopGermany4

Rev

Rev 7541 | Rev 7580 | 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
 
5720 daniel 77
<?php echo wpsg_drawForm_AdminboxStart(__('Rechnungen', 'wpsg'));  ?>
1092 daniel 78
 
5720 daniel 79
    <?php if (sizeof($this->view['mod_rechnungen']['arRechnungen']) == 0 && sizeof($this->view['mod_rechnungen']['arRechnungen_storno']) == 0) { ?>
80
        <p><?php echo __('Bisher keine Rechnungen geschrieben.', 'wpsg'); ?></p>
81
    <?php } else { ?>
82
        <table>
83
            <?php foreach ($this->view['mod_rechnungen']['arRechnungen_gesamt'] as $r) { ?>
84
            <tr>
85
                <td>#<?php echo (($r['rnr'] != '')?$r['rnr']:$r['gnr']); ?>
2759 daniel 86
 
5720 daniel 87
                    <?php if ($r['storno'] == "0000-00-00 00:00:00") { ?>
88
                        <?php if ($r['gnr'] != "") { ?>
89
                            <?php echo wpsg_translate(__('Rechnungskorrektur vom #1#', 'wpsg'), date("d.m.Y", $r['ts_datum'])); ?>
90
                        <?php } else { ?>
91
                            <?php echo wpsg_translate(__('Rechnung geschrieben am #1#', 'wpsg'), date("d.m.Y", $r['ts_datum'])); ?>
92
                        <?php } ?>
93
                    <?php } else { ?>
94
                        <?php echo wpsg_translate(__("Rechnung storniert am #1#", "wpsg"), date("d.m.Y", $r['ts_storno'])); ?>
95
                    <?php } ?>
2759 daniel 96
 
5720 daniel 97
                </td>
98
                <td style="text-align:right;">
1094 daniel 99
 
5720 daniel 100
                    <?php
1093 daniel 101
 
5720 daniel 102
                        if ($r['rnr'] != "")
103
                        {
104
                            $rfile = $this->callMod('wpsg_mod_rechnungen', 'getFilePath', array($this->view['data']['id'], true)).'R'.$r['rnr'].'.pdf';
105
                        }
106
                        else if ($r['gnr'] != "")
107
                        {
108
                            $rfile = $this->callMod('wpsg_mod_rechnungen', 'getFilePath', array($this->view['data']['id'], true)).'G'.$r['gnr'].'.pdf';
109
                        }
1093 daniel 110
 
5720 daniel 111
                    ?>
1093 daniel 112
 
7553 daniel 113
                    <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
114
 
115
						echo wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Order&mod=wpsg_mod_rechnungen&noheader=1&action=ajax&edit_id='.$this->view['data']['id'].'&r_id='.$r['id'].'&do=copy', 'wpsg-mod_invoice-order_ajax-copy-'.$this->view['data']['id']);
5720 daniel 116
 
7553 daniel 117
					?>"><?php echo ' &nbsp;'.__("Kopie senden", "wpsg"); ?></a>&nbsp;
118
                    <a target="_blank" href="<?php
119
 
120
						echo wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Order&action=ajax&noheader=1&mod=wpsg_mod_rechnungen&do=getRechnung&edit_id='.$this->view['data']['id'].'&r_id='.$r['id'], 'wpsg-mod_invoice-order_ajax-getRechnung-'.$this->view['data']['id']);
121
 
122
					?>"><?php echo __("Ansehen", "wpsg"); ?></a>
123
 
5720 daniel 124
                </td>
125
            </tr>
126
            <?php } ?>
127
        </table>
128
        <br />
129
    <?php } ?>
130
 
131
    <?php if (sizeof($this->view['mod_rechnungen']['arRechnungen']) > 0 && sizeof($this->view['mod_rechnungen']['arRechnungen_gesamt']) != sizeof($this->view['mod_rechnungen']['arRechnungen_storno'])) { ?>
6367 hartmut 132
        <fieldset style="border:0px solid #999999; width:100%;">
133
            <legend ><?php echo __("Bestellstorno: Rechnungskorrektur erstellen", "wpsg"); ?></legend>
5720 daniel 134
            <div style="padding:10px;">
135
                <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">
7553 daniel 136
 
137
					<?php \wp_nonce_field('wpsg-mod_invoice-order_ajax-storno-'.$this->view['data']['id']); ?>
138
 
5720 daniel 139
                    <input type="hidden" name="send" value="1" />
140
 
141
                    <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 />
142
                    <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 />
143
                    <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 />
144
 
145
                    <div id="wpsg_mod_rechnungen_fee_layer" style="display:none;">
146
                        <?php echo wpsg_drawForm_Input('wpsg_mod_rechnungen_fee', __('Gebühr für Rechnungskorrektur', 'wpsg'), ''); ?>
147
                    </div>
148
 
149
                    <div class="wpsg_clear"></div><br />
150
 
151
                    <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;" />
152
                    <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;" />
153
 
154
                    <script type="text/javascript">
155
 
156
                        jQuery(document).ready(function() {
157
 
158
                            jQuery("[name=wpsg_rechnungen_gutschrift]").filter("[value=" + jQuery.cookie("wpsg_rechnungen_stornoradio") + "]").attr("checked","checked");
159
 
160
                            jQuery("#wpsg_rechnungen_stornobutton").bind("click", function() {
161
 
162
                                if (jQuery("#wpsg_rechnungen_gutschrift1").attr("checked") || jQuery("#wpsg_rechnungen_gutschrift2").attr("checked"))
163
                                {
164
 
165
                                    //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");
166
                                    jQuery("#storno_form").attr("target", "_blank");
167
 
168
                                    window.setTimeout(function() {
169
                                        location.href = "<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=view&edit_id=<?php echo $this->view['data']['id']; ?>";
170
                                    }, 1500);
171
 
172
                                }
173
                                else
174
                                {
175
 
176
                                    //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");
177
                                    jQuery("#storno_form").attr("target", "");
178
 
179
                                }
180
 
181
                            });
182
 
183
                        });
184
 
185
                    </script>
186
 
187
                </form>
188
                <div class="wpsg_hinweis"><?php echo __("Eine neue Rechnung kann erst geschrieben werden wenn alle bestehenden Rechnungen zu dieser Bestellung storniert wurden.", "wpsg"); ?></div>
189
                <div class="wpsg_clear"></div>
190
            </div>
191
        </fieldset>
192
    <?php } else { ?>
193
 
194
        <fieldset>
195
            <legend><?php echo __("Neue Rechnung", "wpsg"); ?></legend>
196
 
197
            <div>
198
 
6453 thomas 199
                <form target="_blank" method="post" id="rechnungen_order_backend" 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']; ?>">
7553 daniel 200
 
201
					<?php \wp_nonce_field('wpsg-mod_invoice-order_ajax-rechnung-'.$this->view['data']['id']); ?>
202
 
5720 daniel 203
                    <input type="hidden" name="send" value="1" />
204
 
205
                    <label style="height:25px; width:240px; float:left; margin-top:10px;">
206
                        <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" />
6081 hartmut 207
                        &nbsp;<?php echo __("E-Mail an Kunden senden", "wpsg"); ?>
5720 daniel 208
                    </label>
209
                    <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']); ?>" />
210
                    <div style="clear:both; width:100%; height:5px;"></div>
211
 
212
                    <label style="height:25px; width:240px; float:left;">
213
                        <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" />
6081 hartmut 214
                        &nbsp;<?php echo __("Fälligkeit anzeigen", "wpsg"); ?>
5720 daniel 215
                    </label>
7301 florian 216
                    <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)); ?>" />
5720 daniel 217
                    <div style="clear:both; width:100%; height:5px;"></div>
218
 
219
                    <label style="height:25px; width:220px; float:left;">
220
                        <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" />
6081 hartmut 221
                        &nbsp;<?php echo __("Neuer Status", "wpsg"); ?>
5720 daniel 222
                    </label>
223
                    <select style="width:300px; float:right;" id="wpsg_rechnungen_status_neu" name="wpsg_rechnungen_status_neu">
224
                        <?php foreach ($this->arStatus as $k => $v) { ?>
225
                        <option value="<?php echo $k; ?>" <?php echo (($k == 110)?'selected="selected"':''); ?>><?php echo $v; ?></option>
226
                        <?php } ?>
227
                    </select>
228
                    <div style="clear:both; width:100%; height:5px;"></div>
229
 
230
                    <label style="height:25px; width:240px; float:left;">
231
                        <input <?php echo (($this->get_option("wpsg_rechnungen_url_std") === "1")?'checked="checked"':''); ?> type="checkbox" value="1" name="wpsg_rechnungen_url" />
232
                        &nbsp;<?php echo __("URL Benachrichtigung", "wpsg"); ?>
233
                    </label>
234
                    <div style="clear:both; width:100%; height:5px;"></div>
235
 
236
                    <label style="height:25px; width:240px; float:left; padding-left:22px;">
6081 hartmut 237
                        <?php echo __("Rechnungsdatum", "wpsg"); ?>
5720 daniel 238
                    </label>
6453 thomas 239
                    <input style="display:block;float:right; width:300px;" type="text" id="wpsg_rechnungen_datum" name="wpsg_rechnungen_datum" value="<?php echo date("d.m.Y", time()); ?>" />
5720 daniel 240
                    <div style="clear:both; width:100%; height:5px;"></div>
241
 
242
                    <label for="wpsg_rechnungen_fusstext" style="height:25px; width:220px; padding-left:22px; float:left">
243
                        <?php echo __("Fußtext", "wpsg"); ?>
244
                    </label>
245
 
246
                    <?php
247
 
248
                        $wpsg_rechnungen_footer = $this->get_option("wpsg_rechnungen_footer");
7541 daniel 249
 
5720 daniel 250
                        if (!is_array($wpsg_rechnungen_footer)) $wpsg_rechnungen_footer = unserialize($this->get_option("wpsg_rechnungen_footer"));
251
                        if (!is_array($wpsg_rechnungen_footer)) $wpsg_rechnungen_footer = Array();
252
 
7541 daniel 253
                        $default = $this->get_option('wpsg_rechnungen_foottext_standard');
254
 
5720 daniel 255
                    ?>
256
 
257
                    <?php if (sizeof($wpsg_rechnungen_footer) > 0) { ?>
258
                    <select style="width:300px; float:right;" id="wpsg_rechnungen_select" onchange="jQuery('#wpsg_rechnungen_fusstext').val(this.value);">
259
                        <?php foreach ($wpsg_rechnungen_footer as $k => $v) { ?>
7541 daniel 260
                        <option value="<?php echo wpsg_hspc($v[1]); ?>" <?php echo ((intval($default) === intval($k))?'selected="selected"':''); ?>><?php echo wpsg_hspc($v[0]); ?></option>
5720 daniel 261
                        <?php } ?>
262
                    </select>
263
                    <?php } ?>
264
 
265
                    <div style="clear:both; width:100%; height:5px;"></div>
266
                    <div style="padding-left:25px;"><input style="width:100%;" type="text" name="wpsg_rechnungen_fusstext" id="wpsg_rechnungen_fusstext" value="" /></div>
267
                    <div style="clear:both; width:100%; height:15px;"></div>
268
 
269
                    <script type="text/javascript">
270
 
271
                        jQuery(document).ready(function() {
272
                            jQuery('#wpsg_rechnungen_fusstext').val(jQuery("#wpsg_rechnungen_select").val());
273
                        });
274
 
275
                    </script>
276
 
277
                    <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"); ?>" />
278
                    <input class="button" style="float:right; margin-right:10px;" name="wpsg_rechnungen_preview" type="submit" value="<?php echo __("Vorschau", "wpsg"); ?>" />
279
 
280
                    <div style="clear:both; width:100%; height:5px;"></div>
281
 
282
                </form>
283
            </div>
284
        </fieldset>
285
 
286
    <?php } ?>
287
 
288
<?php echo wpsg_drawForm_AdminboxEnd(); ?>