Subversion Repositories wpShopGermany4

Rev

Rev 6453 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1254 david 1
<script type="text/javascript">
2
 
3
	jQuery(document).ready(function() {
4
 
5
		jQuery(".handlediv").bind("click", function() {
6
			if (jQuery(this.parentNode).hasClass("closed"))
7
			{
8
 
9
				jQuery.cookie("wpsg_ab_field", "0", { expires: 999999 } );
10
 
11
			}
12
			else
13
			{
14
 
15
				jQuery.cookie("wpsg_ab_field", "1", { expires: 999999 } );
16
 
17
			}
18
		} );
19
 
20
		if (jQuery.cookie("wpsg_ab_field") == "1")
21
		{
22
 
23
			jQuery("#wpsg_ab_postbox").removeClass("closed");
24
		}
25
 
26
	} );
27
 
28
</script>
29
 
6455 thomas 30
<?php echo wpsg_drawForm_AdminboxStart(__('Auftragsbestätigung', 'wpsg')); ?>
6453 thomas 31
 
1254 david 32
	<div class="inside">
33
		<div class="inside" style="padding:5px;">
34
 
6453 thomas 35
			<p>
36
				<?php echo __('Die Auftragsbestätigung bestätigt dem Kunden die erfolgreiche Erfassung des Auftrages. Abweichungen vom Auftrag können mittels des Textfeldes mitgesendet werden.', 'wpsg'); ?>
37
				<?php echo __('Der Status ändert sich automatisch auf "Bestätigt".', 'wpsg'); ?>
38
			</p>
39
 
40
			<br />
41
 
1254 david 42
			<form method="post" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_auftragsbestaetigung&edit_id=<?php echo $this->view['data']['id']; ?>&noheader=1">
6453 thomas 43
				<div style="padding-left:5px;">
44
					<textarea style="width:100%;" class="wpsg_order_view_auftragsbestaetigung" name="auftrag_note"></textarea>
45
				</div>
46
				<input class="button" style="float:right; margin-right:10px;" type="submit" value="<?php echo __('Senden', 'wpsg'); ?>" /><br />
1254 david 47
				<input type="hidden" name="mod_auftragbestaetigung" value="1"/>
48
			</form>
49
 
50
		</div>
51
	</div>
6453 thomas 52
 
6455 thomas 53
<?php echo wpsg_drawForm_AdminboxEnd(); ?>