Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
1144 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Übersicht der Gutschein
5
	 */
6
 
7
?>
5753 daniel 8
<div class="wpsg_voucher" id="wpsg-bs">
5552 thomas 9
 
5753 daniel 10
    <nav class="navbar navbar-default">
1676 daniel 11
 
5552 thomas 12
		<div class="container-fluid">
13
			<div class="navbar-header">
14
				<a class="navbar-brand" href="#"><?php echo __('wpShopGermany', 'wpsg'); ?></a>
15
			</div>
5753 daniel 16
			<div class="collapse navbar-collapse" id="bs-customer-navbar-collapse-1">
5552 thomas 17
				<ul class="nav navbar-nav">
6680 hartmut 18
					<li role="presentation" class="wpsg-voucher-tab-a active"><a href="#" onclick="return false;"><?php echo __("Gutscheinverwaltung", "wpsg"); ?></a></li>
19
					<li role="presentation" class="wpsg-voucher-tab-a wpsg_showhide_filter <?php echo ((($this->view['hasFilter']) && (wpsg_getStr($this->view['arFilter']['s']) != ''))?'active':''); ?>" id="wpsg-voucher-tab-0"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-search"></span><?php echo __("Suche", "wpsg"); ?></a></li>
5753 daniel 20
                    <li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'add'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=add"><span class="glyphicon glyphicon-plus"></span><?php echo __("Hinzufügen", "wpsg"); ?></a></li>
5552 thomas 21
				</ul>
22
				<ul class="nav navbar-nav navbar-right">
5753 daniel 23
                    <li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'import'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=import&noheader=1"><span class="glyphicon glyphicon-import"></span><?php echo __("Import", "wpsg"); ?></a></li>
24
					<?php if (wpsg_isSizedArray($this->view['arData'])) { ?>
25
					<li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'export'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=export&noheader=1"><span class="glyphicon glyphicon-export"></span><?php echo __("Export", "wpsg"); ?></a></li>
26
					<?php } ?>
27
				</ul>
5552 thomas 28
			</div>
29
		</div>
5753 daniel 30
 
6680 hartmut 31
        <div class="wpsg-filter wpsg-customer-tab wpsg-voucher-tab-0 container-fluid form-horizontal" style="display:<?php echo ((($this->view['hasFilter'] === true) && ($this->view['arFilter']['s'] != ''))?'block':'none'); ?>;">
5753 daniel 32
            <div class="row">
5552 thomas 33
				<div class="col-lg-4">
34
					<form method="post" id="filter_form">
5753 daniel 35
 
36
						<input id="wpsg_seite" type="hidden" name="filter[page]" value="<?php echo @$this->view['page']; ?>" class="current-page" />
37
                        <input id="wpsg_order" type="hidden" name="filter[order]" value="<?php echo @$this->view['arFilter']['order']; ?>" />
38
						<input id="wpsg_ascdesc" type="hidden" name="filter[ascdesc]" value="<?php echo @$this->view['arFilter']['ascdesc']; ?>" />
39
 
40
						<?php echo wpsg_drawForm_Input('filter[s]', __('Suchfeld', 'wpsg'), wpsg_getStr($this->view['arFilter']['s'])); ?>
41
 
42
						<?php echo wpsg_drawForm_SubmitButton(__('Gutscheine suchen')); ?><br />
6680 hartmut 43
						<input type="hidden" id="filterstatus" name="filter[status]" value="<?php echo @$this->view['arFilter']['status']; ?>" />
5753 daniel 44
 
45
					</form>
5552 thomas 46
				</div>
5753 daniel 47
			</div>
48
        </div>
49
 
50
    </nav>
51
 
6680 hartmut 52
    <div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
53
 
54
	<div class="pagination_wrap wpsg_status_link_wrap">
55
 
56
		<ul class="pagination">
57
			<?php foreach ($this->view['arStatus'] as $status_key => $status_info) { ?>
58
			<li class="<?php echo ((wpsg_getStr($this->view['arFilter']['status']) == $status_key)?'active':''); ?>"><a href="#" onclick="return wpsg_setFilterStatus('<?php echo $status_key; ?>');"><?php echo wpsg_translate(__('#1# <span>(#2#)<span>', 'wpsg'), $status_info['label'], $status_info['count']); ?></a></li>
59
			<?php } ?>
60
		</ul>
61
 
62
	</div>
6444 daniel 63
 
64
    <?php $this->render(WPSG_PATH_VIEW.'/admin/pager.phtml'); ?>
5753 daniel 65
 
66
	<div class="content">
1676 daniel 67
 
5753 daniel 68
        <?php if (is_array($this->view['arData']) && sizeof($this->view['arData']) > 0) { ?>
1924 daniel 69
 
5753 daniel 70
            <form method="POST" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=index&noheader=1">
71
                <table class="table wpsg-table-order table-bordered table-hover table-striped wpsg-table-customer">
72
                    <thead>
73
                        <tr>
74
                            <th class="col_checkbox"><input type="checkbox" onclick="jQuery('.col_set_checkbox').each(function() { jQuery(this).prop('checked', !jQuery(this).prop('checked')); } );" /></th>
75
                            <th class="wpsg_order col_code" data-order="code"><?php echo __("Code", 'wpsg'); ?></th>
76
                            <th class="wpsg_order col_start" data-order="start_date"><?php echo __("Start", 'wpsg'); ?></th>
77
                            <th class="wpsg_order col_end" data-order="end_date"><?php echo __("Ende", 'wpsg'); ?></th>
78
                            <th class="wpsg_order col_value" data-order="value"><?php echo __("Wert", 'wpsg'); ?></th>
79
                            <th class="wpsg_order col_status" data-order="status"><?php echo __("Status", 'wpsg'); ?></th>
80
                        </tr>
81
                    </thead>
82
                    <tbody>
83
                        <?php foreach ($this->view['arData'] as $oVoucher) { ?>
84
                        <tr>
85
                            <td class="col_checkbox">
86
 
87
                                <input class="col_set_checkbox" value="<?php echo $oVoucher->id; ?>" name="wpsg_multido[]" type="checkbox" />
88
 
89
                            </td>
7025 daniel 90
                            <?php /* <td class="col_code"><?php echo $oVoucher->code; ?></td> */ ?>
91
                            <td class="col_code">
92
 
93
                                <a title="<?php echo __('Gutschein bearbeiten', 'wpsg'); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&action=edit&edit_id=<?php echo $oVoucher->id; ?>"><?php echo $oVoucher->code; ?></a>
94
 
7031 daniel 95
                                <?php if ($this->hasMod('wpsg_mod_voucherproduct') && $oVoucher->isAutoCreated()) { ?>
7025 daniel 96
                                &nbsp;[&nbsp;<a href="<?php echo WPSG_URL_WP . 'wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_voucherproduct&gs_id='.$oVoucher->id.'&order_id='.$oVoucher->autocreate_order.'&noheader=1&cmd=getVoucher'; ?>"><?php echo __('PDF', 'wpsg'); ?></a>&nbsp;]
97
                                <?php } ?>
98
 
99
                            </td>
5753 daniel 100
                            <td class="col_start"><?php echo wpsg_formatTimestamp($oVoucher->start_date); ?></td>
101
                            <td class="col_end"><?php echo wpsg_formatTimestamp($oVoucher->end_date); ?></td>
102
                            <td class="col_value"><?php
103
 
104
                                if ($oVoucher->calc_typ == 'w') echo wpsg_ff($oVoucher->value, $this->get_option('wpsg_currency'));
105
                                else if ($oVoucher->calc_typ == 'p') echo wpsg_ff($oVoucher->value, '%');
106
 
107
                            ?></td>
108
                            <td class="col_status">
109
 
110
                                <?php $comment = $oVoucher->comment; if (wpsg_isSizedString($comment)) { ?>
6005 hartmut 111
                                <a title="<?php echo __("Kommentar (Admin): ", "wpsg").htmlspecialchars($comment); ?>" onclick="return false;" class="glyphicon glyphicon-question-sign admincomment" href="#"></a>
5753 daniel 112
                                <?php } ?>
113
 
114
                                <?php echo $oVoucher->getStatusLabel(); ?>
115
 
116
                                <?php $used = $oVoucher->getUsed(); if (wpsg_isSizedInt($used)) { ?>
117
                                <?php echo wpsg_translate(__('#1# mal benutzt.', 'wpsg'), $used); ?>
118
                                <?php } ?>
119
 
120
                                <?php if ($oVoucher->multi === '1') { ?>
121
                                <span title="<?php echo __('Mehrfach benutzbar', 'wpsg'); ?>">&nbsp;[M]</span>
122
                                <?php } ?>
123
 
124
                            </td>
125
                        </tr>
126
                        <?php } ?>
127
                    </tbody>
128
                </table>
129
 
130
                 <div class="alignleft actions">
131
 
132
                    <input onclick="if (!confirm('<?php echo __('Sind Sie sich sicher?', 'wpsg'); ?>')) return false;" type="submit" value="<?php echo __('Markierte Gutscheine löschen', 'wpsg'); ?>" class="button-secondary action" id="doaction" name="submit-multidelete" />
133
 
134
                </div>
6680 hartmut 135
			</form>
136
 
5753 daniel 137
 
6680 hartmut 138
        <?php $this->render(WPSG_PATH_VIEW.'/admin/pager.phtml'); ?>
5753 daniel 139
 
140
        <?php } else { ?>
141
 
142
            <?php echo wpsg_drawForm_AdminboxStart(); ?>
143
    		<?php echo __('Keine Gutscheine in der Datenbank.', 'wpsg'); ?>
144
            <?php echo wpsg_drawForm_AdminboxEnd(); ?>
145
 
146
        <?php } ?>
147
 
148
    </div>
149
 
1599 daniel 150
</div>
151
 
1676 daniel 152
<script type="text/javascript">/* <![CDATA[ */
1599 daniel 153
 
5753 daniel 154
    <?php if (wpsg_isSizedString($this->view['arFilter']['order']) && wpsg_isSizedString($this->view['arFilter']['ascdesc'])) { ?>
155
    jQuery('th[data-order="<?php echo $this->view['arFilter']['order']; ?>"]').addClass('wpsg_order_<?php echo strtolower($this->view['arFilter']['ascdesc']); ?>');
156
    <?php } ?>
157
 
6680 hartmut 158
	function wpsg_setFilterStatus(state)
159
	{
160
 
161
		jQuery('#filterstatus').val(state);
162
 
163
		jQuery('#seite').val(1);
164
		jQuery('#filter_form').submit();
165
 
166
		return false;
167
 
168
	}
169
 
5753 daniel 170
	function goPage(page)
1599 daniel 171
	{
172
 
6152 thomas 173
		//if (page <= 0 || page == <?php echo $this->view['arFilter']['page']; ?> || page > <?php echo $this->view['pages']; ?>) return;
1599 daniel 174
 
5753 daniel 175
		jQuery('#wpsg_seite').val(page);
176
		jQuery('#filter_form').submit();
1599 daniel 177
 
5753 daniel 178
		return false;
179
 
180
	} // function goPage(page)
181
 
6680 hartmut 182
    jQuery(document).ready(function() {
5753 daniel 183
 
6680 hartmut 184
        jQuery('.wpsg-order-tab-mods').bind('click', function() {
185
 
186
            if (jQuery(this).hasClass('active'))
187
            {
188
 
189
                jQuery(this).removeClass('active');
190
                jQuery('.' + jQuery(this).attr("id")).slideUp(250);
191
 
192
            }
193
            else
194
            {
195
 
196
                jQuery(this).addClass('active');
197
                jQuery('.' + jQuery(this).attr("id")).slideDown(250);
198
 
199
            }
200
 
201
            return false;
202
 
203
        } );
204
 
205
    } );
206
 
1676 daniel 207
/* ]]> */</script>