1067 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Übersicht der Bestellungen
|
|
|
5 |
*/
|
6825 |
daniel |
6 |
|
7933 |
daniel |
7 |
$arPaymentKeySelect = [
|
|
|
8 |
'' => __('Alle Zahlungsarten', 'wpsg')
|
|
|
9 |
];
|
7932 |
daniel |
10 |
|
|
|
11 |
foreach ($this->getPaymentArray() as $payment_key => $payment) {
|
|
|
12 |
|
|
|
13 |
$arPaymentKeySelect[$payment_key] = $payment['name'];
|
|
|
14 |
|
|
|
15 |
}
|
7957 |
daniel |
16 |
|
1067 |
daniel |
17 |
?>
|
7934 |
daniel |
18 |
|
5637 |
daniel |
19 |
<div class="wpsg_order" id="wpsg-bs">
|
1116 |
daniel |
20 |
|
5637 |
daniel |
21 |
<nav class="navbar navbar-default">
|
|
|
22 |
<div class="container-fluid">
|
|
|
23 |
<div class="navbar-header">
|
6414 |
daniel |
24 |
|
5637 |
daniel |
25 |
<a class="navbar-brand" href="#"><?php echo __('wpShopGermany', 'wpsg'); ?></a>
|
6414 |
daniel |
26 |
<a class="glyphicon glyphicon-menu-hamburger wpsg-bs-toggle-nav visible-xs-block" data-toggle="collapse" data-target="#wpsg-bs-headermenu" href="#"></a>
|
|
|
27 |
|
5637 |
daniel |
28 |
</div>
|
6414 |
daniel |
29 |
<div class="collapse navbar-collapse" id="wpsg-bs-headermenu">
|
5637 |
daniel |
30 |
<ul class="nav navbar-nav">
|
6559 |
thomas |
31 |
<li role="presentation" class="<?php echo ((!isset($_REQUEST['action']))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order" onclick="return false;"><?php echo __("Bestellübersicht", "wpsg"); ?></a></li>
|
6825 |
daniel |
32 |
<li role="presentation" class="wpsg_showhide_filter wpsg-order-tab-a <?php echo (($this->view['hasFilter'] === true)?'active':''); ?>" id="wpsg-order-tab-0"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-search"></span><?php echo __("Suche", "wpsg"); ?></a></li>
|
5683 |
daniel |
33 |
<?php foreach ($this->view['tabs']['left'] as $k => $tab) { ?>
|
5896 |
daniel |
34 |
<li role="presentation" class="wpsg-order-tab-a wpsg-order-tab-mods" id="wpsg-order-tab-<?php echo $k; ?>"><a href="#" onclick="return false;"><span class="<?php echo $tab['tab_icon']; ?>"></span><?php echo $tab['tab_title']; ?></a></li>
|
5683 |
daniel |
35 |
<?php } ?>
|
7173 |
daniel |
36 |
<li role="presentation" class="wpsg-order-tab-a wpsg-order-tab-mods" id="wpsg-order-tab-add"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-plus"></span><?php echo __("Neue Bestellung", "wpsg"); ?></a></li>
|
5637 |
daniel |
37 |
</ul>
|
|
|
38 |
<ul class="nav navbar-nav navbar-right">
|
5683 |
daniel |
39 |
<?php foreach ($this->view['tabs']['right'] as $k => $tab) { ?>
|
5751 |
daniel |
40 |
<li role="presentation" class="wpsg-order-tab-mods" id="wpsg-order-tab-<?php echo $k; ?>"><a href="#" onclick="return false;"><span class="<?php echo $tab['tab_icon']; ?>"></span><?php echo $tab['tab_title']; ?></a></li>
|
5683 |
daniel |
41 |
<?php } ?>
|
5637 |
daniel |
42 |
</ul>
|
|
|
43 |
</div>
|
|
|
44 |
</div>
|
5683 |
daniel |
45 |
|
6825 |
daniel |
46 |
<div class="wpsg-filter wpsg-order-tab wpsg-order-tab-0 container-fluid form-horizontal" style="display:<?php echo (($this->view['hasFilter'] === true)?'block':'none'); ?>;">
|
5637 |
daniel |
47 |
<div class="row">
|
7229 |
daniel |
48 |
<div class="col-lg-5">
|
6142 |
hartmut |
49 |
<form method="post" id="filter_form" >
|
1116 |
daniel |
50 |
|
7561 |
daniel |
51 |
<?php echo wp_nonce_field('wpsg-order-search'); ?>
|
|
|
52 |
|
5751 |
daniel |
53 |
<input id="wpsg_seite" type="hidden" name="seite" value="<?php echo @$this->view['arFilter']['page']; ?>" class="current-page" />
|
|
|
54 |
<input id="wpsg_order" type="hidden" name="filter[order]" value="<?php echo @$this->view['arFilter']['order']; ?>" />
|
|
|
55 |
<input id="wpsg_ascdesc" type="hidden" name="filter[ascdesc]" value="<?php echo @$this->view['arFilter']['ascdesc']; ?>" />
|
1116 |
daniel |
56 |
|
5674 |
daniel |
57 |
<?php echo wpsg_drawForm_Input('filter[s]', __('Suchfeld', 'wpsg'), wpsg_getStr($this->view['arFilter']['s'])); ?>
|
5751 |
daniel |
58 |
<?php echo wpsg_drawForm_Input('filter[k_id]', __('Kunde (ID)', 'wpsg'), wpsg_getStr($this->view['arFilter']['k_id'])); ?>
|
7932 |
daniel |
59 |
<?php echo wpsg_drawForm_Select('filter[payment_key]', __('Zahlungsart', 'wpsg'), $arPaymentKeySelect, wpsg_getStr($this->view['arFilter']['payment_key'])); ?>
|
5751 |
daniel |
60 |
<?php echo wpsg_drawForm_Select('filter[status]', __('Bestellstatus', 'wpsg'), wpsg_array_merge(array('-1' => __('Alle', 'wpsg')), $this->arStatus), @$this->view['arFilter']['status']); ?>
|
7229 |
daniel |
61 |
|
|
|
62 |
<?php /* if ($this->hasMod('wpsg_mod_produktartikel')) { Vorbereitet aber Joins in wpsg_order nach den wp Ktegorien noch nicht umgesetzt! ?>
|
|
|
63 |
|
|
|
64 |
<?php $arCatSelect = []; $arCat = $this->callMod('wpsg_mod_produktartikel', 'getProductcategorySelect'); foreach ($arCat as $cat) $arCatSelect[$cat['term_id']] = $cat['label']; ?>
|
|
|
65 |
<?php echo wpsg_drawForm_Select('filter[cat_term_id]', __('Bestellungen mit Produkten aus Kategorie'), ['0' => __('Alle', 'wpsg')] + $arCatSelect, wpsg_getStr($this->view['arFilter']['cat_term_id'])); ?>
|
|
|
66 |
|
|
|
67 |
<?php } */ ?>
|
|
|
68 |
|
7269 |
daniel |
69 |
<?php if ($this->hasMod('wpsg_mod_productgroups') && $this->get_option('wpsg_mod_productgroups_order_filter') === '1') { ?>
|
7229 |
daniel |
70 |
|
|
|
71 |
<?php $arProductgroups = $this->callMod('wpsg_mod_productgroups', 'getAllProductGroups'); ?>
|
|
|
72 |
<?php echo wpsg_drawForm_Select('filter[productgroup_id]', __('Bestellungen mit Produkten aus Produktgruppe'), ['0' => __('Alle', 'wpsg')] + $arProductgroups, wpsg_getStr($this->view['arFilter']['productgroup_id'])); ?>
|
|
|
73 |
|
|
|
74 |
<?php } ?>
|
|
|
75 |
|
5674 |
daniel |
76 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
|
|
77 |
<div class="row">
|
|
|
78 |
<div class="col-lg-6">
|
|
|
79 |
<select name="filter[cdate_m]" class="form-control input-sm">
|
|
|
80 |
<option value="-1"><?php echo __("Alle", "wpsg"); ?></option>
|
|
|
81 |
<?php for ($i = 1; $i <= 12; $i ++) { ?>
|
|
|
82 |
<option <?php echo ((wpsg_getStr($this->view['arFilter']['cdate_m']) == $i)?'selected="selected"':''); ?> value="<?php echo str_pad($i, 2, '0', STR_PAD_LEFT); ?>"><?php echo strftime("%B", mktime(0, 0, 0, $i, 1, 2000)); ?></option>
|
|
|
83 |
<?php } ?>
|
|
|
84 |
</select>
|
|
|
85 |
</div>
|
|
|
86 |
<div class="col-lg-6">
|
|
|
87 |
<select name="filter[cdate_y]" class="form-control input-sm">
|
|
|
88 |
<option value="-1"><?php echo __("Alle", "wpsg"); ?></option>
|
|
|
89 |
<?php foreach ($this->view['cdate_years'] as $y) { ?>
|
|
|
90 |
<option <?php echo ((wpsg_getStr($this->view['arFilter']['cdate_y']) == $y)?'selected="selected"':''); ?> value="<?php echo $y; ?>"><?php echo $y; ?></option>
|
|
|
91 |
<?php } ?>
|
|
|
92 |
</select>
|
|
|
93 |
</div>
|
|
|
94 |
</div>
|
|
|
95 |
<?php echo wpsg_drawForm_TextEnd(__('Bestelldatum (Monat/Jahr)', 'wpsg'), array('noP' => true)); ?>
|
1899 |
daniel |
96 |
|
7787 |
daniel |
97 |
<?php if ($this->hasMod('wpsg_mod_rechnungen')) { ?>
|
|
|
98 |
<?php echo wpsg_drawForm_TextStart(); ?>
|
|
|
99 |
<div class="row">
|
|
|
100 |
<div class="col-lg-6">
|
|
|
101 |
<select name="filter[invoicedate_m]" class="form-control input-sm">
|
|
|
102 |
<option value="-1"><?php echo __("Alle", "wpsg"); ?></option>
|
|
|
103 |
<?php for ($i = 1; $i <= 12; $i ++) { ?>
|
|
|
104 |
<option <?php echo ((wpsg_getStr($this->view['arFilter']['invoicedate_m']) == $i)?'selected="selected"':''); ?> value="<?php echo str_pad($i, 2, '0', STR_PAD_LEFT); ?>"><?php echo strftime("%B", mktime(0, 0, 0, $i, 1, 2000)); ?></option>
|
|
|
105 |
<?php } ?>
|
|
|
106 |
</select>
|
|
|
107 |
</div>
|
|
|
108 |
<div class="col-lg-6">
|
|
|
109 |
<select name="filter[invoicedate_y]" class="form-control input-sm">
|
|
|
110 |
<option value="-1"><?php echo __("Alle", "wpsg"); ?></option>
|
|
|
111 |
<?php foreach ($this->view['invoicedate_years'] as $y) { ?>
|
|
|
112 |
<option <?php echo ((wpsg_getStr($this->view['arFilter']['invoicedate_y']) == $y)?'selected="selected"':''); ?> value="<?php echo $y; ?>"><?php echo $y; ?></option>
|
|
|
113 |
<?php } ?>
|
|
|
114 |
</select>
|
|
|
115 |
</div>
|
|
|
116 |
</div>
|
|
|
117 |
<?php echo wpsg_drawForm_TextEnd(__('Rechnungsdatum (Monat/Jahr)', 'wpsg'), array('noP' => true)); ?>
|
|
|
118 |
<?php } ?>
|
5674 |
daniel |
119 |
|
6826 |
daniel |
120 |
<br />
|
|
|
121 |
|
|
|
122 |
<?php echo wpsg_drawForm_SubmitButton(__('Bestellungen suchen')); ?>
|
5674 |
daniel |
123 |
|
5637 |
daniel |
124 |
</form>
|
|
|
125 |
</div>
|
|
|
126 |
</div>
|
|
|
127 |
</div>
|
6425 |
daniel |
128 |
|
|
|
129 |
<?php foreach ($this->view['tabs'] as $tab_positions) { ?>
|
|
|
130 |
<?php foreach ($tab_positions as $k => $tab) { ?>
|
|
|
131 |
<div class="wpsg-order-tab-mods-content wpsg-filter-tab wpsg-order-tab-<?php echo $k ?>" style="display:none;"><?php echo $tab['tab_content']; ?></div>
|
|
|
132 |
<?php } ?>
|
|
|
133 |
<?php } ?>
|
7173 |
daniel |
134 |
|
|
|
135 |
<div class="wpsg-order-tab-add-content wpsg-order-tab-add" style="display:none;">
|
|
|
136 |
|
|
|
137 |
<div class="container-fluid form-horizontal">
|
|
|
138 |
<div class="row">
|
|
|
139 |
<div class="col-lg-4">
|
|
|
140 |
|
|
|
141 |
<form method="POST" id="add_form" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&subaction=add&noheader=1">
|
7561 |
daniel |
142 |
|
|
|
143 |
<?php echo wp_nonce_field('wpsg-order-add'); ?>
|
|
|
144 |
|
7173 |
daniel |
145 |
<br />
|
|
|
146 |
|
7787 |
daniel |
147 |
<?php echo wpsg_drawForm_Input('search_customer',__('Kunde (E-Mail oder Kundennummer)', 'wpsg'), wpsg_getStr($_REQUEST['search_customer'])); ?>
|
7173 |
daniel |
148 |
|
|
|
149 |
<br />
|
7216 |
daniel |
150 |
|
7301 |
florian |
151 |
<?php $arShippingSelect = []; foreach ($this->arShipping as $shipping_id => $shipping) if (!isset($shipping['active']) || $shipping['active'] === '1') $arShippingSelect[$shipping_id] = $shipping['name'].' ('.wpsg_ff(@$shipping['price']).')'; ?>
|
7787 |
daniel |
152 |
<?php echo wpsg_drawForm_Select('add_shipping', __('Versandart', 'wpsg'), $arShippingSelect, wpsg_getStr($_REQUEST['add_shipping'])); ?>
|
7173 |
daniel |
153 |
|
7787 |
daniel |
154 |
<?php $arPaymentSelect = []; foreach ($this->arPayment as $payment_id => $payment) if (!isset($payment['active']) || $payment['active'] === '1') $arPaymentSelect[$payment_id] = $payment['name'].' ('.wpsg_ff(wpsg_getStr($payment['price'])).')'; ?>
|
|
|
155 |
<?php echo wpsg_drawForm_Select('add_payment', __('Zahlungsart', 'wpsg'), $arPaymentSelect, wpsg_getStr($_REQUEST['add_payment'])); ?>
|
7173 |
daniel |
156 |
|
|
|
157 |
<br /><?php echo wpsg_drawForm_SubmitButton(__('Bestellung anlegen')); ?><br />
|
|
|
158 |
|
|
|
159 |
<script>
|
|
|
160 |
|
|
|
161 |
jQuery(document).ready(function() {
|
|
|
162 |
|
|
|
163 |
jQuery('#search_customer').autocomplete( {
|
|
|
164 |
source: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&subaction=autocomplete&noheader=1',
|
|
|
165 |
minLength: 2,
|
|
|
166 |
select: function(event, ui) {
|
|
|
167 |
|
|
|
168 |
jQuery('#search_customer').val(ui.item.id);
|
|
|
169 |
|
|
|
170 |
return false;
|
|
|
171 |
|
|
|
172 |
}
|
|
|
173 |
} );
|
|
|
174 |
|
|
|
175 |
jQuery('#add_form').on('submit', function() {
|
|
|
176 |
|
|
|
177 |
if (jQuery.trim(jQuery('#search_customer').val()) === '') {
|
|
|
178 |
|
|
|
179 |
alert('<?php echo __('Bitte einen Kunden angeben.', 'wpsg'); ?>');
|
|
|
180 |
|
|
|
181 |
return false;
|
|
|
182 |
|
|
|
183 |
}
|
|
|
184 |
|
|
|
185 |
} );
|
|
|
186 |
|
|
|
187 |
} );
|
|
|
188 |
|
|
|
189 |
</script>
|
|
|
190 |
|
|
|
191 |
</form>
|
|
|
192 |
|
|
|
193 |
</div>
|
|
|
194 |
</div>
|
|
|
195 |
</div>
|
|
|
196 |
|
|
|
197 |
</div>
|
|
|
198 |
|
6425 |
daniel |
199 |
</nav>
|
6503 |
daniel |
200 |
|
|
|
201 |
<div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
|
7269 |
daniel |
202 |
|
|
|
203 |
<?php if ($this->hasMod('wpsg_mod_productgroups') && $this->get_option('wpsg_mod_productgroups_order_filter') === '1') { $arPG = $this->callMod('wpsg_mod_productgroups', 'getAllProductGroups', [true]); ?>
|
1899 |
daniel |
204 |
|
7270 |
daniel |
205 |
<?php if (wpsg_isSizedArray($arPG)) { ?>
|
7269 |
daniel |
206 |
<div class="container-fluid">
|
|
|
207 |
<div class="row">
|
|
|
208 |
<div class="pagination_wrap wpsg_status_link_wrap">
|
|
|
209 |
|
|
|
210 |
<ul class="pagination">
|
|
|
211 |
<?php foreach ($arPG as $pg_id => $pg_name) { ?>
|
|
|
212 |
<li class="<?php echo ((wpsg_getStr($this->view['arFilter']['productgroup_id']) == $pg_id)?'active':''); ?>"><a href="#" onclick="return wpsg_setFilterProductgroup('<?php echo $pg_id; ?>');"><?php echo $pg_name; ?></a></li>
|
|
|
213 |
<?php } ?>
|
|
|
214 |
</ul>
|
|
|
215 |
|
|
|
216 |
</div>
|
|
|
217 |
</div>
|
|
|
218 |
</div>
|
7270 |
daniel |
219 |
<?php } ?>
|
7269 |
daniel |
220 |
|
|
|
221 |
<?php } ?>
|
|
|
222 |
|
5674 |
daniel |
223 |
<div class="pagination_wrap wpsg_status_link_wrap">
|
1899 |
daniel |
224 |
|
5674 |
daniel |
225 |
<ul class="pagination">
|
5637 |
daniel |
226 |
<?php foreach ($this->view['arStatus'] as $status_key => $status_info) { ?>
|
5674 |
daniel |
227 |
<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>
|
5637 |
daniel |
228 |
<?php } ?>
|
|
|
229 |
</ul>
|
1899 |
daniel |
230 |
|
5637 |
daniel |
231 |
</div>
|
1899 |
daniel |
232 |
|
6444 |
daniel |
233 |
<?php $this->render(WPSG_PATH_VIEW.'/admin/pager.phtml'); ?>
|
1116 |
daniel |
234 |
|
5674 |
daniel |
235 |
<div class="wpsg_clear"></div>
|
|
|
236 |
|
5637 |
daniel |
237 |
<div class="content">
|
8069 |
daniel |
238 |
<form method="post" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&noheader=1" enctype="multipart/form-data" id="order_form">
|
2875 |
daniel |
239 |
|
5674 |
daniel |
240 |
<?php if (is_array($this->view['arData']) && sizeof($this->view['arData']) > 0) { ?>
|
1228 |
daniel |
241 |
|
5753 |
daniel |
242 |
<table class="table table-bordered table-hover table-striped wpsg-table-order">
|
|
|
243 |
<thead>
|
|
|
244 |
<tr>
|
|
|
245 |
<th class="col_checkbox"><input type="checkbox" onclick="return wpsg_order_checkAll();" /></th>
|
|
|
246 |
<th class="col_nr wpsg_order" data-order="cdate"><?php echo __('Nr', 'wpsg'); ?></th>
|
|
|
247 |
<th class="col_customer wpsg_order" data-order="customer"><?php echo __('Kunde', 'wpsg'); ?></th>
|
|
|
248 |
<th class="col_payment wpsg_order" data-order="payment"><?php echo __('Bezahlmethode', 'wpsg'); ?></th>
|
|
|
249 |
<th class="col_shipping wpsg_order" data-order="shipping"><?php echo __('Versandart', 'wpsg'); ?></th>
|
|
|
250 |
<th class="col_products wpsg_order" data-order="products"><?php echo __('Produkte', 'wpsg'); ?></th>
|
8264 |
karl |
251 |
<?php if ($this->get_option('wpsg_showvalueofgoods')) { ?><th class="col_productsum wpsg_order" data-order="productsum"><?php echo __('Warenwert', 'wpsg'); ?></th><?php } ?>
|
5753 |
daniel |
252 |
<th class="col_sum wpsg_order" data-order="amount"><?php echo __('Bestellwert', 'wpsg'); ?></th>
|
|
|
253 |
<th class="col_state wpsg_order" data-order="state"><?php echo __('Status', 'wpsg'); ?></th>
|
|
|
254 |
</tr>
|
|
|
255 |
</thead>
|
|
|
256 |
<tbody>
|
|
|
257 |
<?php foreach ($this->view['arData'] as $oOrder) { ?>
|
|
|
258 |
<tr>
|
|
|
259 |
<td class="col_checkbox">
|
5674 |
daniel |
260 |
|
7932 |
daniel |
261 |
<input class="col_set_checkbox" data-order_id="<?php echo $oOrder->id; ?>" name="wpsg_multido[<?php echo $oOrder->id; ?>]" type="checkbox" />
|
5674 |
daniel |
262 |
|
5753 |
daniel |
263 |
</td>
|
|
|
264 |
<td class="col_nr">
|
5674 |
daniel |
265 |
|
5753 |
daniel |
266 |
<?php echo $oOrder->getNr(); ?> <span class="wpsg_grey"><?php echo wpsg_formatTimestamp(strtotime($oOrder->cdate), false); ?></span><br />
|
5674 |
daniel |
267 |
|
5753 |
daniel |
268 |
<div class="actions">
|
7561 |
daniel |
269 |
<span class="view"><a title="<?php echo __("Diese Bestellung ansehen", "wpsg"); ?>" href="<?php
|
|
|
270 |
|
|
|
271 |
echo wpsg_admin_url('Order', 'view', ['edit_id' => $oOrder->getId()]);
|
|
|
272 |
|
|
|
273 |
?>"><?php echo __("Ansehen", "wpsg"); ?></a></span>
|
5753 |
daniel |
274 |
|
|
7561 |
daniel |
275 |
<span class="storno"><a onclick="return confirm('<?php echo __('Sind Sie sich sicher, dass Sie diese Bestellung stornieren möchten?', 'wpsg'); ?>');" title="<?php echo __("Diese Bestellung stornieren", "wpsg"); ?>" href="<?php
|
|
|
276 |
|
|
|
277 |
echo wpsg_admin_url('Order', 'storno', ['edit_id' => $oOrder->getId()], ['noheader' => '1']);
|
|
|
278 |
|
|
|
279 |
?>"><?php echo __("Stornieren", "wpsg"); ?></a></span>
|
5753 |
daniel |
280 |
|
|
7561 |
daniel |
281 |
<span class="delete"><a onclick="return confirm('<?php echo __('Sind Sie sich sicher, dass Sie diese Bestellung löschen möchten?', 'wpsg'); ?>');" title="<?php echo __('Diese Bestellung löschen', 'wpsg'); ?>" href="<?php
|
|
|
282 |
|
|
|
283 |
echo wpsg_admin_url('Order', 'delete', ['edit_id' => $oOrder->getId()], ['noheader' => '1']);
|
|
|
284 |
|
|
|
285 |
?>"><?php echo __('Löschen', 'wpsg'); ?></a></span>
|
5753 |
daniel |
286 |
</div>
|
5674 |
daniel |
287 |
|
5753 |
daniel |
288 |
<?php if (trim($oOrder->admincomment) != "") { ?>
|
6005 |
hartmut |
289 |
<a title="<?php echo __("Kommentar (Admin): ", "wpsg").htmlspecialchars($oOrder->admincomment); ?>" onclick="return false;" class="glyphicon glyphicon-question-sign admincomment" href="#"></a>
|
5753 |
daniel |
290 |
<?php } ?>
|
5674 |
daniel |
291 |
|
5753 |
daniel |
292 |
<?php if (trim($oOrder->comment) != "") { ?>
|
6005 |
hartmut |
293 |
<a title="<?php echo __("Kommentar (Kunde): ", "wpsg").htmlspecialchars($oOrder->comment); ?>" onclick="return false;" class="glyphicon glyphicon-question-sign customercomment" href="#"></a>
|
5753 |
daniel |
294 |
<?php } ?>
|
5674 |
daniel |
295 |
|
5753 |
daniel |
296 |
<?php if ($oOrder->hasShippingAdress()) { ?>
|
|
|
297 |
<a title="<?php echo __("Lieferadresse beachten", "wpsg"); ?>" onclick="return false;" class="glyphicon glyphicon-map-marker shippingadress" href="#"></a>
|
|
|
298 |
<?php } ?>
|
5674 |
daniel |
299 |
|
5753 |
daniel |
300 |
<?php if ($this->hasMod('wpsg_mod_abo')) { ?>
|
6830 |
daniel |
301 |
|
6834 |
daniel |
302 |
<?php if ($this->callMod('wpsg_mod_abo', 'isAboOrder', array($oOrder->id)) === 1) { ?>
|
|
|
303 |
<?php echo __('Abo Bestellung', 'wpsg'); ?>
|
|
|
304 |
<?php } else if ($this->callMod('wpsg_mod_abo', 'isAboOrder', array($oOrder->id)) === 2) { ?>
|
6830 |
daniel |
305 |
|
5753 |
daniel |
306 |
<?php
|
5674 |
daniel |
307 |
|
5753 |
daniel |
308 |
$origin_order_id = $this->callMod('wpsg_mod_abo', 'getOriginOrder', array($oOrder->id));
|
|
|
309 |
$origin_order_data = $this->cache->loadOrder($origin_order_id);
|
5674 |
daniel |
310 |
|
7985 |
daniel |
311 |
//wpsg_debug($oOrder->id.":".$origin_order_id);
|
|
|
312 |
|
5753 |
daniel |
313 |
?>
|
|
|
314 |
<?php echo wpsg_translate(__('Verlängerung zu Bestellung <a href="#1#">#2#</a>', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Order&action=view&edit_id='.$origin_order_id, $origin_order_data['onr']); ?>
|
6830 |
daniel |
315 |
|
5753 |
daniel |
316 |
<?php } ?>
|
6830 |
daniel |
317 |
|
|
|
318 |
<?php } ?>
|
5753 |
daniel |
319 |
|
5674 |
daniel |
320 |
</td>
|
5753 |
daniel |
321 |
<td class="col_customer">
|
6081 |
hartmut |
322 |
<?php $firma = $oOrder->getInvoiceCompany(); if (wpsg_isSizedString($firma)) { ?>
|
5753 |
daniel |
323 |
<?php echo $firma; ?><br />
|
|
|
324 |
<?php } ?>
|
6081 |
hartmut |
325 |
<?php echo $oOrder->getInvoiceTitle(); ?> <?php echo $oOrder->getInvoiceFirstname(); ?> <?php echo $oOrder->getInvoiceName(); ?>
|
5753 |
daniel |
326 |
<br />
|
6081 |
hartmut |
327 |
<span class="wpsg_grey"><?php echo $oOrder->getInvoiceStreet(); ?><br />
|
|
|
328 |
<?php echo ltrim($oOrder->getInvoiceZip().' '.$oOrder->getInvoiceCity()); ?> <?php echo $oOrder->getInvoiceCountryKuerzel(); ?>
|
5753 |
daniel |
329 |
</span>
|
|
|
330 |
</td>
|
|
|
331 |
<td class="col_payment">
|
5674 |
daniel |
332 |
|
5753 |
daniel |
333 |
<?php /* Bei Crefopay wird die Darstellung der Zahlungsart über das Modul geregelt */ ?>
|
|
|
334 |
<?php if ($oOrder->getPaymentID() == 4000 && $this->hasMod('wpsg_mod_crefopay')) { ?>
|
|
|
335 |
<?php echo wpsg_hspc($this->callMod('wpsg_mod_crefopay', 'getOrderPaymentName', array($oOrder->id))); ?>
|
|
|
336 |
<?php } else { ?>
|
|
|
337 |
<?php echo $oOrder->getPaymentLabel(); ?>
|
|
|
338 |
<?php } ?>
|
5674 |
daniel |
339 |
|
5753 |
daniel |
340 |
<?php if ($oOrder->getPaymentAmount() > 0) { ?>
|
|
|
341 |
- <?php echo wpsg_ff($oOrder->getPaymentAmount(), $this->get_option('wpsg_currency')); ?>
|
|
|
342 |
<?php } ?>
|
5674 |
daniel |
343 |
|
5753 |
daniel |
344 |
</td>
|
|
|
345 |
<td class="col_shipping">
|
5674 |
daniel |
346 |
|
5753 |
daniel |
347 |
<?php echo $oOrder->getShippingLabel(); ?>
|
5674 |
daniel |
348 |
|
5753 |
daniel |
349 |
<?php if ($oOrder->getShippingAmount() > 0) { ?>
|
|
|
350 |
- <?php echo wpsg_ff($oOrder->getShippingAmount(), $this->get_option('wpsg_currency')); ?>
|
|
|
351 |
<?php } ?>
|
5674 |
daniel |
352 |
|
5753 |
daniel |
353 |
<?php if ($oOrder->hasShippingAdress()) { ?>
|
|
|
354 |
<br />
|
6149 |
hartmut |
355 |
<?php echo $oOrder->getShippingTitle(); ?> <?php echo $oOrder->getShippingFirstName(); ?> <?php echo $oOrder->getShippingName(); ?><br />
|
5753 |
daniel |
356 |
<span class="wpsg_grey">
|
|
|
357 |
<?php echo $oOrder->getShippingStreet(); ?>
|
|
|
358 |
<?php echo $oOrder->getShippingZip(); ?> <?php echo $oOrder->getShippingCity(); ?> <?php echo $oOrder->getShippingCountryKuerzel(); ?><br />
|
5794 |
thomas |
359 |
</span>
|
5753 |
daniel |
360 |
<?php } ?>
|
5674 |
daniel |
361 |
|
5753 |
daniel |
362 |
</td>
|
|
|
363 |
<td class="col_products">
|
5674 |
daniel |
364 |
|
6834 |
daniel |
365 |
<?php $oOrderProducts = $oOrder->getOrderProducts(); ?>
|
|
|
366 |
|
7812 |
daniel |
367 |
<?php foreach ($oOrderProducts as $oOrderProduct) {
|
|
|
368 |
|
|
|
369 |
$product_id = $oOrderProduct->getProductId();
|
|
|
370 |
$oAbo = null;
|
|
|
371 |
|
|
|
372 |
if ($this->hasMod('wpsg_mod_abo')) {
|
|
|
373 |
|
|
|
374 |
try { $oAbo = wpsg_abo::getFromOrderAndOrderProduct($oOrder->getId(), $oOrderProduct->getId()); } catch (\Exception $e) { }
|
|
|
375 |
|
|
|
376 |
}
|
|
|
377 |
|
|
|
378 |
?>
|
7867 |
daniel |
379 |
|
|
|
380 |
<?php
|
|
|
381 |
|
|
|
382 |
echo wpsg_translate(__('#1# x <a href="#2#">#3#</a> für je #4#', 'wpsg'),
|
|
|
383 |
$oOrderProduct->getCount(),
|
|
|
384 |
wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Produkt&action=edit&edit_id='.$oOrderProduct->getProductId(), 'wpsg-product-edit-'.wpsg_getInt($product_id)),
|
|
|
385 |
$oOrderProduct->getProductName(),
|
|
|
386 |
wpsg_ff($oOrderProduct->getOneAmount(), $this->get_option('wpsg_currency'))
|
|
|
387 |
);
|
|
|
388 |
|
|
|
389 |
?><br />
|
6834 |
daniel |
390 |
|
7812 |
daniel |
391 |
<?php if ($oAbo !== null) { ?>
|
|
|
392 |
|
|
|
393 |
<?php
|
|
|
394 |
|
|
|
395 |
$state = $oAbo->getState();
|
|
|
396 |
|
|
|
397 |
echo __('Abo Laufzeit:', 'wpsg');
|
|
|
398 |
|
|
|
399 |
?>
|
6834 |
daniel |
400 |
|
7812 |
daniel |
401 |
<?php if ($state === wpsg_abo::STATE_INEXTENSION) { ?><span style="color:orange;"><?php echo $oAbo->getStateLabel(); ?></span>
|
|
|
402 |
<?php } else if ($state === wpsg_abo::STATE_RUNNING) { ?><span style="color:green;"><?php echo $oAbo->getStateLabel(); ?></span>
|
|
|
403 |
<?php } else if ($state === wpsg_abo::STATE_EXTEND) { ?><span style="color:red;"><?php echo $oAbo->getStateLabel(); ?></span><?php } ?>
|
|
|
404 |
|
|
|
405 |
<br />
|
6834 |
daniel |
406 |
|
|
|
407 |
<?php } ?>
|
|
|
408 |
|
5753 |
daniel |
409 |
<?php } ?>
|
5674 |
daniel |
410 |
|
5753 |
daniel |
411 |
</td>
|
8264 |
karl |
412 |
<?php if ($this->get_option('wpsg_showvalueofgoods')) { ?>
|
|
|
413 |
<td class="col_productsum">
|
|
|
414 |
|
|
|
415 |
<?php $oOrderProducts = $oOrder->getOrderProducts(); ?>
|
|
|
416 |
<?php foreach ($oOrderProducts as $oOrderProduct) { ?>
|
|
|
417 |
<?php $product_sum += $oOrderProduct->getPriceSum($this->getBackendTaxview()); ?>
|
|
|
418 |
<?php } ?>
|
|
|
419 |
<?php echo wpsg_ff($product_sum, $this->get_option('wpsg_currency')); ?>
|
|
|
420 |
<?php $product_sum = 0; ?>
|
|
|
421 |
|
|
|
422 |
</td>
|
|
|
423 |
<?php } ?>
|
5753 |
daniel |
424 |
<td class="col_sum">
|
|
|
425 |
<?php echo wpsg_ff($oOrder->getAmount(), $this->get_option('wpsg_currency')); ?>
|
|
|
426 |
</td>
|
|
|
427 |
<td class="col_state">
|
|
|
428 |
<?php echo $oOrder->getStateLabel(); ?>
|
|
|
429 |
</td>
|
|
|
430 |
</tr>
|
|
|
431 |
<?php } ?>
|
|
|
432 |
</tbody>
|
|
|
433 |
</table>
|
5674 |
daniel |
434 |
|
5753 |
daniel |
435 |
<div class="alignleft actions">
|
|
|
436 |
<select name="wpsg_action" id="wpsg_action">
|
|
|
437 |
<option value="-1"><?php echo __('Aktion wählen', 'wpsg'); ?></option>
|
|
|
438 |
<?php foreach ($this->arStatus as $k => $status) { ?>
|
|
|
439 |
<option value="<?php echo $k; ?>"><?php echo wpsg_translate(__('Status auf "#1#" setzen.', 'wpsg'), $status); ?></option>
|
|
|
440 |
<?php } ?>
|
|
|
441 |
<option value="multiDelete"><?php echo __('Bestellungen löschen', 'wpsg'); ?></option>
|
|
|
442 |
<?php if ($this->hasMod('wpsg_mod_rechnungen')) { ?>
|
|
|
443 |
<option value="writeRechnung"><?php echo __('Rechnung schreiben', 'wpsg'); ?></option>
|
8068 |
karl |
444 |
<?php if ($this->view['arFilter']['k_id'] != '') { ?>
|
|
|
445 |
<option value="writeMultiRechnung"><?php echo __('Sammelrechnung schreiben', 'wpsg'); ?></option>
|
|
|
446 |
<?php } ?>
|
5753 |
daniel |
447 |
<option value="showRechnung"><?php echo __('Rechnung ansehen', 'wpsg'); ?></option>
|
|
|
448 |
<?php } ?>
|
7932 |
daniel |
449 |
<?php if ($this->hasMod('wpsg_mod_kundenkontakt')) { ?>
|
|
|
450 |
<option value="customercontact"><?php echo __('Kunden informieren', 'wpsg') ;?></option>
|
|
|
451 |
<?php } ?>
|
5753 |
daniel |
452 |
</select>
|
5674 |
daniel |
453 |
|
5753 |
daniel |
454 |
<input onclick="if (jQuery('#wpsg_action').val() == 'multiDelete') { if (!confirm('<?php echo __('Sind Sie sich sicher?', 'wpsg'); ?>')) return false; }" type="submit" value="<?php echo __('Ausführen', 'wpsg'); ?>" class="button-secondary action" id="doaction" name="wpsg_order_doaction" />
|
5674 |
daniel |
455 |
|
7932 |
daniel |
456 |
<div id="customer_inform" style="display:none;">
|
|
|
457 |
<label class="mr-4 font-normal">
|
|
|
458 |
<input class="mt-0 mr-2" type="checkbox" name="inform" value="1" /> <?php echo __('Kunden informieren', 'wpsg'); ?>
|
|
|
459 |
</label>
|
|
|
460 |
</div>
|
|
|
461 |
|
|
|
462 |
<script>
|
|
|
463 |
|
|
|
464 |
let el_customer_inform = document.getElementById('customer_inform');
|
|
|
465 |
|
|
|
466 |
document.getElementById('wpsg_action').addEventListener('change', (event) => {
|
8069 |
daniel |
467 |
|
7932 |
daniel |
468 |
if (parseInt(event.target.value) >= 0) {
|
|
|
469 |
|
|
|
470 |
el_customer_inform.style.display = 'inline-block';
|
|
|
471 |
|
|
|
472 |
} else {
|
|
|
473 |
|
|
|
474 |
el_customer_inform.style.display = 'none';
|
|
|
475 |
|
|
|
476 |
}
|
|
|
477 |
|
8069 |
daniel |
478 |
let el_doaction = document.getElementById('doaction');
|
|
|
479 |
|
|
|
480 |
if (event.target.value === 'writeMultiRechnung') {
|
|
|
481 |
|
|
|
482 |
el_doaction.style.display = 'none';
|
|
|
483 |
|
|
|
484 |
} else {
|
|
|
485 |
|
8089 |
karl |
486 |
el_doaction.style.display = 'inline-block';
|
8069 |
daniel |
487 |
|
|
|
488 |
}
|
|
|
489 |
|
7932 |
daniel |
490 |
});
|
8300 |
karl |
491 |
|
|
|
492 |
let buttonClicked = false;
|
|
|
493 |
document.getElementById('doaction').addEventListener('click', (event) => {
|
|
|
494 |
|
|
|
495 |
if (buttonClicked) {
|
|
|
496 |
|
|
|
497 |
event.preventDefault();
|
|
|
498 |
return false;
|
|
|
499 |
|
|
|
500 |
}
|
|
|
501 |
|
|
|
502 |
// Button deaktivieren und ausgrauen
|
|
|
503 |
document.getElementById('doaction').style.opacity = '0.5';
|
|
|
504 |
document.getElementById('doaction').style.pointerEvents = 'none';
|
|
|
505 |
|
|
|
506 |
// Button nach 4 Sekunden wieder aktivieren
|
|
|
507 |
setTimeout(() => {
|
|
|
508 |
|
|
|
509 |
document.getElementById('doaction').style.opacity = '1';
|
|
|
510 |
document.getElementById('doaction').style.pointerEvents = 'auto';
|
|
|
511 |
buttonClicked = false;
|
|
|
512 |
|
|
|
513 |
}, 4000);
|
|
|
514 |
|
|
|
515 |
buttonClicked = true;
|
|
|
516 |
return true;
|
|
|
517 |
|
|
|
518 |
});
|
|
|
519 |
|
7932 |
daniel |
520 |
</script>
|
8068 |
karl |
521 |
|
8079 |
karl |
522 |
<div class="multiRechnung_tab" id="multiRechnung_inform" style="padding: 15px 0 15px 0; display:none;">
|
|
|
523 |
|
|
|
524 |
<div style="width: 100%; padding: 1rem; display: grid; row-gap: 0.5rem; column-gap: 0.5rem; grid-template-columns: 25px 1fr 150px; align-items: center; grid-auto-rows: 30px; padding-bottom: 0.5rem;" >
|
8083 |
karl |
525 |
|
|
|
526 |
<?php $oCustomer = wpsg_customer::getInstance(intval($this->view['arFilter']['k_id'])); ?>
|
8079 |
karl |
527 |
|
|
|
528 |
<input type="checkbox" name="wpsg_Multirechnung_sendmail" value="1" id="invoice_sendmail" />
|
|
|
529 |
<label for="invoice_sendmail"><?php echo __('E-Mail an Kunden senden', 'wpsg'); ?></label>
|
8083 |
karl |
530 |
<input type="email" name="wpsg_Multirechnung_email" value="<?php echo $oCustomer->getEmail(); ?>" />
|
8069 |
daniel |
531 |
|
8079 |
karl |
532 |
<input type="checkbox" name="wpsg_Multirechnung_faelligkeit" value="1" id="invoice_faelligkeit" />
|
|
|
533 |
<label for="invoice_faelligkeit"><?php echo __('Fälligkeit anzeigen', 'wpsg'); ?></label>
|
|
|
534 |
<input type="date" name="wpsg_Multirechnung_faelligkeitsdatum" value="<?php echo date('Y-m-d', strtotime('+'.intval($this->get_option("wpsg_rechnungen_faelligkeit")).' day')); ?>" />
|
|
|
535 |
|
|
|
536 |
<input type="checkbox" name="wpsg_Multirechnung_url" value="1" id="invoice_url" />
|
|
|
537 |
<label for="invoice_url"><?php echo __('URL Benachrichtigung', 'wpsg'); ?></label>
|
|
|
538 |
<span></span>
|
|
|
539 |
|
|
|
540 |
<span></span>
|
|
|
541 |
<label for="invoice_date"><?php echo __('Rechnungsdatum', 'wpsg') ;?></label>
|
|
|
542 |
<input type="date" value="<?php echo date('Y-m-d'); ?>" name="wpsg_Multirechnung_datum" id="invoice_date" />
|
|
|
543 |
|
|
|
544 |
<span style="display:flex; justify-content:flex-start; gap:0.5rem; grid-column:1/span 3;">
|
|
|
545 |
<input type="hidden" name="preview" id="wpsg_mod_rechnungen_preview" />
|
|
|
546 |
<input type="submit" name="wpsg_order_doaction" value="<?php echo _('Vorschau'); ?>" id="wpsg_mod_rechnungen_button_preview" />
|
|
|
547 |
<input type="submit" name="wpsg_order_doaction" value="<?php echo _('Erstellen'); ?>" id="wpsg_mod_rechnungen_button_submit" />
|
|
|
548 |
</span>
|
|
|
549 |
|
|
|
550 |
</div>
|
8069 |
daniel |
551 |
|
|
|
552 |
<script>
|
|
|
553 |
|
|
|
554 |
let el_order_form = document.getElementById('order_form');
|
|
|
555 |
|
|
|
556 |
document.getElementById('wpsg_mod_rechnungen_button_preview').addEventListener('click', () => {
|
|
|
557 |
|
|
|
558 |
el_order_form.setAttribute('target', '_blank');
|
|
|
559 |
document.getElementById('wpsg_mod_rechnungen_preview').value = '1';
|
|
|
560 |
|
|
|
561 |
} );
|
|
|
562 |
|
|
|
563 |
document.getElementById('wpsg_mod_rechnungen_button_submit').addEventListener('click', () => {
|
|
|
564 |
|
|
|
565 |
el_order_form.setAttribute('target', '');
|
|
|
566 |
document.getElementById('wpsg_mod_rechnungen_preview').value = '0';
|
|
|
567 |
|
|
|
568 |
} );
|
|
|
569 |
|
|
|
570 |
</script>
|
|
|
571 |
|
8068 |
karl |
572 |
</div>
|
|
|
573 |
|
|
|
574 |
<script>
|
|
|
575 |
|
|
|
576 |
let el_multiRechnung_inform = document.getElementById('multiRechnung_inform');
|
|
|
577 |
|
|
|
578 |
document.getElementById('wpsg_action').addEventListener('change', (event) => {
|
|
|
579 |
|
|
|
580 |
if (event.target.value === 'writeMultiRechnung') {
|
|
|
581 |
|
|
|
582 |
el_multiRechnung_inform.style.display = 'block';
|
|
|
583 |
|
|
|
584 |
} else {
|
|
|
585 |
|
|
|
586 |
el_multiRechnung_inform.style.display = 'none';
|
|
|
587 |
|
|
|
588 |
}
|
|
|
589 |
|
|
|
590 |
});
|
8300 |
karl |
591 |
|
|
|
592 |
// let buttonClicked = false;
|
|
|
593 |
|
|
|
594 |
// document.getElementById('wpsg_mod_rechnungen_button_submit').addEventListener('click', (event) => {
|
|
|
595 |
|
|
|
596 |
// if (buttonClicked) {
|
|
|
597 |
|
|
|
598 |
// event.preventDefault();
|
|
|
599 |
// return false;
|
|
|
600 |
|
|
|
601 |
// }
|
|
|
602 |
|
|
|
603 |
// // Button deaktivieren und ausgrauen
|
|
|
604 |
// document.getElementById('wpsg_mod_rechnungen_button_submit').style.opacity = '0.5';
|
|
|
605 |
// document.getElementById('wpsg_mod_rechnungen_button_submit').style.pointerEvents = 'none';
|
|
|
606 |
|
|
|
607 |
// // Button nach 4 Sekunden wieder aktivieren
|
|
|
608 |
// setTimeout(() => {
|
|
|
609 |
|
|
|
610 |
// document.getElementById('wpsg_mod_rechnungen_button_submit').style.opacity = '1';
|
|
|
611 |
// document.getElementById('wpsg_mod_rechnungen_button_submit').style.pointerEvents = 'auto';
|
|
|
612 |
// buttonClicked = false;
|
|
|
613 |
|
|
|
614 |
// }, 4000);
|
|
|
615 |
|
|
|
616 |
// buttonClicked = true;
|
|
|
617 |
// return true;
|
|
|
618 |
|
|
|
619 |
// });
|
8069 |
daniel |
620 |
|
8068 |
karl |
621 |
</script>
|
7932 |
daniel |
622 |
|
5753 |
daniel |
623 |
</div>
|
5674 |
daniel |
624 |
|
6444 |
daniel |
625 |
<div style="margin-right:-15px;">
|
|
|
626 |
<?php $this->render(WPSG_PATH_VIEW.'/admin/pager.phtml'); ?>
|
|
|
627 |
</div>
|
5674 |
daniel |
628 |
|
5753 |
daniel |
629 |
<div class="wpsg_clear"></div>
|
5674 |
daniel |
630 |
|
5753 |
daniel |
631 |
<?php $this->callMod('wpsg_mod_export', 'produkt_index_foot'); ?>
|
5674 |
daniel |
632 |
|
5753 |
daniel |
633 |
<?php } else { ?>
|
5674 |
daniel |
634 |
|
5753 |
daniel |
635 |
<?php echo wpsg_drawForm_AdminboxStart(); ?>
|
|
|
636 |
<?php echo __('Keine Bestellungen in der Datenbank.', 'wpsg'); ?>
|
|
|
637 |
<?php echo wpsg_drawForm_AdminboxEnd(); ?>
|
|
|
638 |
|
5637 |
daniel |
639 |
<?php } ?>
|
6144 |
hartmut |
640 |
<input id="noheader1" type="hidden" name="noheader1" value="1" />
|
|
|
641 |
</form>
|
5637 |
daniel |
642 |
</div>
|
7932 |
daniel |
643 |
|
|
|
644 |
<?php if ($this->hasMod('wpsg_mod_kundenkontakt')) { $this->callMod('wpsg_mod_kundenkontakt', 'order_index_bottom'); } ?>
|
1228 |
daniel |
645 |
|
7932 |
daniel |
646 |
<script>
|
1228 |
daniel |
647 |
|
5674 |
daniel |
648 |
<?php if (wpsg_isSizedString($this->view['arFilter']['order']) && wpsg_isSizedString($this->view['arFilter']['ascdesc'])) { ?>
|
5751 |
daniel |
649 |
jQuery('th[data-order="<?php echo @$this->view['arFilter']['order']; ?>"]').addClass('wpsg_order_<?php echo strtolower(@$this->view['arFilter']['ascdesc']); ?>');
|
5674 |
daniel |
650 |
<?php } ?>
|
1428 |
daniel |
651 |
|
5674 |
daniel |
652 |
function wpsg_order_checkAll()
|
|
|
653 |
{
|
|
|
654 |
|
|
|
655 |
jQuery('.col_set_checkbox').each(function() { jQuery(this).prop('checked', !jQuery(this).prop('checked')); } );
|
|
|
656 |
|
|
|
657 |
}
|
7269 |
daniel |
658 |
|
|
|
659 |
<?php if ($this->hasMod('wpsg_mod_productgroups') && $this->get_option('wpsg_mod_productgroups_order_filter') === '1') { ?>
|
|
|
660 |
function wpsg_setFilterProductgroup(pgroup_id) {
|
5674 |
daniel |
661 |
|
7269 |
daniel |
662 |
jQuery('#filterproductgroup_id').val(pgroup_id);
|
|
|
663 |
|
|
|
664 |
jQuery('#seite').val(1);
|
8040 |
karl |
665 |
jQuery('#filter_form').trigger('submit');
|
7269 |
daniel |
666 |
|
|
|
667 |
return false;
|
|
|
668 |
|
|
|
669 |
}
|
|
|
670 |
<?php } ?>
|
|
|
671 |
|
5674 |
daniel |
672 |
function wpsg_setFilterStatus(state)
|
5637 |
daniel |
673 |
{
|
1428 |
daniel |
674 |
|
5674 |
daniel |
675 |
jQuery('#filterstatus').val(state);
|
1428 |
daniel |
676 |
|
5674 |
daniel |
677 |
jQuery('#seite').val(1);
|
8040 |
karl |
678 |
jQuery('#filter_form').trigger('submit');
|
1428 |
daniel |
679 |
|
5637 |
daniel |
680 |
return false;
|
1428 |
daniel |
681 |
|
5674 |
daniel |
682 |
}
|
1428 |
daniel |
683 |
|
5674 |
daniel |
684 |
function goPage(page)
|
5637 |
daniel |
685 |
{
|
1116 |
daniel |
686 |
|
6152 |
thomas |
687 |
//if (page <= 0 || page == <?php echo $this->view['arFilter']['page']; ?> || page > <?php echo wpsg_getStr($this->view['pages'], '0'); ?>) return;
|
1067 |
daniel |
688 |
|
5674 |
daniel |
689 |
jQuery('#wpsg_seite').val(page);
|
8040 |
karl |
690 |
jQuery('#filter_form').trigger('submit');
|
2755 |
daniel |
691 |
|
5637 |
daniel |
692 |
return false;
|
1924 |
daniel |
693 |
|
5674 |
daniel |
694 |
} // function goPage(page)
|
5637 |
daniel |
695 |
|
5683 |
daniel |
696 |
jQuery(document).ready(function() {
|
|
|
697 |
|
5751 |
daniel |
698 |
jQuery('.wpsg-order-tab-mods').bind('click', function() {
|
5683 |
daniel |
699 |
|
5751 |
daniel |
700 |
if (jQuery(this).hasClass('active'))
|
5683 |
daniel |
701 |
{
|
|
|
702 |
|
5751 |
daniel |
703 |
jQuery(this).removeClass('active');
|
7173 |
daniel |
704 |
jQuery('.' + jQuery(this).attr("id")).slideUp(250);
|
|
|
705 |
|
5683 |
daniel |
706 |
}
|
|
|
707 |
else
|
|
|
708 |
{
|
7173 |
daniel |
709 |
|
5751 |
daniel |
710 |
jQuery(this).addClass('active');
|
|
|
711 |
jQuery('.' + jQuery(this).attr("id")).slideDown(250);
|
5683 |
daniel |
712 |
|
7173 |
daniel |
713 |
if (jQuery(this).attr("id") === 'wpsg-order-tab-add') jQuery('#search_customer').focus();
|
|
|
714 |
|
5683 |
daniel |
715 |
}
|
|
|
716 |
|
|
|
717 |
return false;
|
|
|
718 |
|
|
|
719 |
} );
|
|
|
720 |
|
|
|
721 |
} );
|
7932 |
daniel |
722 |
|
|
|
723 |
<?php if ($this->hasMod('wpsg_mod_kundenkontakt')) { ?>
|
|
|
724 |
document.getElementById('wpsg_action').addEventListener('click', (event) => {
|
|
|
725 |
|
|
|
726 |
console.log('OK');
|
|
|
727 |
|
|
|
728 |
});
|
|
|
729 |
<?php } ?>
|
5683 |
daniel |
730 |
|
7932 |
daniel |
731 |
</script>
|