Subversion Repositories wpShopGermany4

Rev

Rev 6081 | Rev 6453 | 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
 
6367 hartmut 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 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 ' &nbsp;'.__("Kopie senden", "wpsg"); ?></a>&nbsp;
5720 daniel 114
                    <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>
115
 
116
                </td>
117
            </tr>
118
            <?php } ?>
119
        </table>
120
        <br />
121
    <?php } ?>
122
 
123
    <?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 124
        <fieldset style="border:0px solid #999999; width:100%;">
125
            <legend ><?php echo __("Bestellstorno: Rechnungskorrektur erstellen", "wpsg"); ?></legend>
5720 daniel 126
            <div style="padding:10px;">
127
                <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">
128
 
129
                    <input type="hidden" name="send" value="1" />
130
 
131
                    <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 />
132
                    <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 />
133
                    <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 />
134
 
135
                    <div id="wpsg_mod_rechnungen_fee_layer" style="display:none;">
136
                        <?php echo wpsg_drawForm_Input('wpsg_mod_rechnungen_fee', __('Gebühr für Rechnungskorrektur', 'wpsg'), ''); ?>
137
                    </div>
138
 
139
                    <div class="wpsg_clear"></div><br />
140
 
141
                    <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;" />
142
                    <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;" />
143
 
144
                    <script type="text/javascript">
145
 
146
                        jQuery(document).ready(function() {
147
 
148
                            jQuery("[name=wpsg_rechnungen_gutschrift]").filter("[value=" + jQuery.cookie("wpsg_rechnungen_stornoradio") + "]").attr("checked","checked");
149
 
150
                            jQuery("#wpsg_rechnungen_stornobutton").bind("click", function() {
151
 
152
                                if (jQuery("#wpsg_rechnungen_gutschrift1").attr("checked") || jQuery("#wpsg_rechnungen_gutschrift2").attr("checked"))
153
                                {
154
 
155
                                    //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");
156
                                    jQuery("#storno_form").attr("target", "_blank");
157
 
158
                                    window.setTimeout(function() {
159
                                        location.href = "<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=view&edit_id=<?php echo $this->view['data']['id']; ?>";
160
                                    }, 1500);
161
 
162
                                }
163
                                else
164
                                {
165
 
166
                                    //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");
167
                                    jQuery("#storno_form").attr("target", "");
168
 
169
                                }
170
 
171
                            });
172
 
173
                        });
174
 
175
                    </script>
176
 
177
                </form>
178
                <div class="wpsg_hinweis"><?php echo __("Eine neue Rechnung kann erst geschrieben werden wenn alle bestehenden Rechnungen zu dieser Bestellung storniert wurden.", "wpsg"); ?></div>
179
                <div class="wpsg_clear"></div>
180
            </div>
181
        </fieldset>
182
    <?php } else { ?>
183
 
184
        <fieldset>
185
            <legend><?php echo __("Neue Rechnung", "wpsg"); ?></legend>
186
 
187
            <div>
188
 
189
                <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']; ?>">
190
 
191
                    <input type="hidden" name="send" value="1" />
192
 
193
                    <label style="height:25px; width:240px; float:left; margin-top:10px;">
194
                        <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 195
                        &nbsp;<?php echo __("E-Mail an Kunden senden", "wpsg"); ?>
5720 daniel 196
                    </label>
197
                    <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']); ?>" />
198
                    <div style="clear:both; width:100%; height:5px;"></div>
199
 
200
                    <label style="height:25px; width:240px; float:left;">
201
                        <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 202
                        &nbsp;<?php echo __("Fälligkeit anzeigen", "wpsg"); ?>
5720 daniel 203
                    </label>
204
                    <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)); ?>" />
205
                    <div style="clear:both; width:100%; height:5px;"></div>
206
 
207
                    <label style="height:25px; width:220px; float:left;">
208
                        <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 209
                        &nbsp;<?php echo __("Neuer Status", "wpsg"); ?>
5720 daniel 210
                    </label>
211
                    <select style="width:300px; float:right;" id="wpsg_rechnungen_status_neu" name="wpsg_rechnungen_status_neu">
212
                        <?php foreach ($this->arStatus as $k => $v) { ?>
213
                        <option value="<?php echo $k; ?>" <?php echo (($k == 110)?'selected="selected"':''); ?>><?php echo $v; ?></option>
214
                        <?php } ?>
215
                    </select>
216
                    <div style="clear:both; width:100%; height:5px;"></div>
217
 
218
                    <label style="height:25px; width:240px; float:left;">
219
                        <input <?php echo (($this->get_option("wpsg_rechnungen_url_std") === "1")?'checked="checked"':''); ?> type="checkbox" value="1" name="wpsg_rechnungen_url" />
220
                        &nbsp;<?php echo __("URL Benachrichtigung", "wpsg"); ?>
221
                    </label>
222
                    <div style="clear:both; width:100%; height:5px;"></div>
223
 
224
                    <label style="height:25px; width:240px; float:left; padding-left:22px;">
6081 hartmut 225
                        <?php echo __("Rechnungsdatum", "wpsg"); ?>
5720 daniel 226
                    </label>
227
                    <input style="display:block;float:right; width:300px;" type="text" name="wpsg_rechnungen_datum" value="<?php echo date("d.m.Y", time()); ?>" />
228
                    <div style="clear:both; width:100%; height:5px;"></div>
229
 
230
                    <label for="wpsg_rechnungen_fusstext" style="height:25px; width:220px; padding-left:22px; float:left">
231
                        <?php echo __("Fußtext", "wpsg"); ?>
232
                    </label>
233
 
234
                    <?php
235
 
236
                        $wpsg_rechnungen_footer = $this->get_option("wpsg_rechnungen_footer");
237
                        if (!is_array($wpsg_rechnungen_footer)) $wpsg_rechnungen_footer = unserialize($this->get_option("wpsg_rechnungen_footer"));
238
                        if (!is_array($wpsg_rechnungen_footer)) $wpsg_rechnungen_footer = Array();
239
 
240
                    ?>
241
 
242
                    <?php if (sizeof($wpsg_rechnungen_footer) > 0) { ?>
243
                    <select style="width:300px; float:right;" id="wpsg_rechnungen_select" onchange="jQuery('#wpsg_rechnungen_fusstext').val(this.value);">
244
                        <?php foreach ($wpsg_rechnungen_footer as $k => $v) { ?>
245
                        <option value="<?php echo wpsg_hspc($v[1]); ?>"><?php echo wpsg_hspc($v[0]); ?></option>
246
                        <?php } ?>
247
                    </select>
248
                    <?php } ?>
249
 
250
                    <div style="clear:both; width:100%; height:5px;"></div>
251
                    <div style="padding-left:25px;"><input style="width:100%;" type="text" name="wpsg_rechnungen_fusstext" id="wpsg_rechnungen_fusstext" value="" /></div>
252
                    <div style="clear:both; width:100%; height:15px;"></div>
253
 
254
                    <script type="text/javascript">
255
 
256
                        jQuery(document).ready(function() {
257
                            jQuery('#wpsg_rechnungen_fusstext').val(jQuery("#wpsg_rechnungen_select").val());
258
                        });
259
 
260
                    </script>
261
 
262
                    <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"); ?>" />
263
                    <input class="button" style="float:right; margin-right:10px;" name="wpsg_rechnungen_preview" type="submit" value="<?php echo __("Vorschau", "wpsg"); ?>" />
264
 
265
                    <div style="clear:both; width:100%; height:5px;"></div>
266
 
267
                </form>
268
            </div>
269
        </fieldset>
270
 
271
    <?php } ?>
272
 
273
<?php echo wpsg_drawForm_AdminboxEnd(); ?>