205 lines
8.4 KiB
Twig
205 lines
8.4 KiB
Twig
|
{{ header }}{{ column_left }}
|
||
|
<div id="content">
|
||
|
<div class="page-header">
|
||
|
<div class="container-fluid">
|
||
|
<div class="float-end">
|
||
|
<button type="button" data-bs-toggle="tooltip" title="{{ button_filter }}" onclick="$('#filter-customer').toggleClass('d-none');" class="btn btn-light d-md-none d-lg-none"><i class="fa-solid fa-filter"></i></button>
|
||
|
<button type="submit" form="form-customer-approval" formaction="{{ approve }}" data-bs-toggle="tooltip" title="{{ text_approve }}" class="btn btn-success"><i class="fa-solid fa-check"></i></button>
|
||
|
<button type="submit" form="form-customer-approval" formaction="{{ deny }}" data-bs-toggle="tooltip" title="{{ text_deny }}" class="btn btn-warning"><i class="fa-solid fa-circle-xmark"></i></button>
|
||
|
</div>
|
||
|
<h1>{{ heading_title }}</h1>
|
||
|
<ol class="breadcrumb">
|
||
|
{% for breadcrumb in breadcrumbs %}
|
||
|
<li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ol>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="container-fluid">
|
||
|
<div class="row">
|
||
|
<div id="filter-customer" class="col-lg-3 col-md-12 order-lg-last d-none d-lg-block mb-3">
|
||
|
<div class="card">
|
||
|
<div class="card-header"><i class="fa-solid fa-filter"></i> {{ text_filter }}</div>
|
||
|
<div class="card-body">
|
||
|
<div class="mb-3">
|
||
|
<label class="form-label">{{ entry_customer }}</label>
|
||
|
<input type="text" name="filter_customer" value="" placeholder="{{ entry_customer }}" id="input-customer" data-oc-target="autocomplete-customer" class="form-control" autocomplete="off"/>
|
||
|
<ul id="autocomplete-customer" class="dropdown-menu"></ul>
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<label class="form-label">{{ entry_email }}</label>
|
||
|
<input type="text" name="filter_email" value="" placeholder="{{ entry_email }}" id="input-email" data-oc-target="autocomplete-email" class="form-control" autocomplete="off"/>
|
||
|
<ul id="autocomplete-email" class="dropdown-menu"></ul>
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<label for="input-customer-group" class="form-label">{{ entry_customer_group }}</label> <select name="filter_customer_group_id" id="input-customer-group" class="form-select">
|
||
|
<option value=""></option>
|
||
|
{% for customer_group in customer_groups %}
|
||
|
<option value="{{ customer_group.customer_group_id }}">{{ customer_group.name }}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<label for="input-type" class="form-label">{{ entry_type }}</label> <select name="filter_type" id="input-type" class="form-select">
|
||
|
<option value=""></option>
|
||
|
<option value="customer">{{ text_customer }}</option>
|
||
|
<option value="affiliate">{{ text_affiliate }}</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<label for="input-date-from" class="form-label">{{ entry_date_from }}</label>
|
||
|
<div class="input-group">
|
||
|
<input type="text" name="filter_date_from" value="{{ filter_date_from }}" placeholder="{{ entry_date_from }}" id="input-date-from" class="form-control date"/>
|
||
|
<div class="input-group-text"><i class="fa-regular fa-calendar"></i></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<label for="input-date-to" class="form-label">{{ entry_date_to }}</label>
|
||
|
<div class="input-group">
|
||
|
<input type="text" name="filter_date_to" value="{{ filter_date_to }}" placeholder="{{ entry_date_to }}" id="input-date-to" class="form-control date"/>
|
||
|
<div class="input-group-text"><i class="fa-regular fa-calendar"></i></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="text-end">
|
||
|
<button type="button" id="button-filter" class="btn btn-light"><i class="fa-solid fa-filter"></i> {{ button_filter }}</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-lg-9 col-md-12">
|
||
|
<div class="card">
|
||
|
<div class="card-header"><i class="fa-solid fa-list"></i> {{ text_list }}</div>
|
||
|
<div class="card-body">
|
||
|
<div id="customer-approval">{{ list }}</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script type="text/javascript"><!--
|
||
|
$('#customer-approval').on('click', '.pagination a', function (e) {
|
||
|
e.preventDefault();
|
||
|
|
||
|
$('#customer-approval').load(this.href);
|
||
|
});
|
||
|
|
||
|
$('#customer-approval').on('click', '.btn-success, .btn-danger', function (e) {
|
||
|
e.preventDefault();
|
||
|
|
||
|
var element = this;
|
||
|
|
||
|
$.ajax({
|
||
|
url: $(element).val(),
|
||
|
dataType: 'json',
|
||
|
beforeSend: function () {
|
||
|
$(element).button('loading');
|
||
|
},
|
||
|
complete: function () {
|
||
|
$(element).button('reset');
|
||
|
},
|
||
|
success: function (json) {
|
||
|
$('.alert-dismissible').remove();
|
||
|
|
||
|
if (json['error']) {
|
||
|
$('#alert').prepend('<div class="alert alert-danger alert-dismissible"><i class="fa-solid fa-circle-exclamation"></i> ' + json['error'] + ' <button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>');
|
||
|
}
|
||
|
|
||
|
if (json['success']) {
|
||
|
$('#alert').prepend('<div class="alert alert-success alert-dismissible"><i class="fa-solid fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>');
|
||
|
|
||
|
$('#customer-approval').load($('#form-customer-approval').attr('data-oc-load'));
|
||
|
}
|
||
|
},
|
||
|
error: function (xhr, ajaxOptions, thrownError) {
|
||
|
console.log(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
$('#button-filter').on('click', function () {
|
||
|
var url = '';
|
||
|
|
||
|
var filter_customer = $('#input-customer').val();
|
||
|
|
||
|
if (filter_customer) {
|
||
|
url += '&filter_customer=' + encodeURIComponent(filter_customer);
|
||
|
}
|
||
|
|
||
|
var filter_email = $('#input-email').val();
|
||
|
|
||
|
if (filter_email) {
|
||
|
url += '&filter_email=' + encodeURIComponent(filter_email);
|
||
|
}
|
||
|
|
||
|
var filter_customer_group_id = $('#input-customer-group').val();
|
||
|
|
||
|
if (filter_customer_group_id !== '') {
|
||
|
url += '&filter_customer_group_id=' + filter_customer_group_id;
|
||
|
}
|
||
|
|
||
|
var filter_type = $('#input-type').val();
|
||
|
|
||
|
if (filter_type !== '') {
|
||
|
url += '&filter_type=' + filter_type;
|
||
|
}
|
||
|
|
||
|
var filter_date_from = $('#input-date-from').val();
|
||
|
|
||
|
if (filter_date_from) {
|
||
|
url += '&filter_date_from=' + encodeURIComponent(filter_date_from);
|
||
|
}
|
||
|
|
||
|
var filter_date_to = $('#input-date-to').val();
|
||
|
|
||
|
if (filter_date_to) {
|
||
|
url += '&filter_date_to=' + encodeURIComponent(filter_date_to);
|
||
|
}
|
||
|
|
||
|
window.history.pushState({}, null, 'index.php?route=customer/customer_approval&user_token={{ user_token }}' + url);
|
||
|
|
||
|
$('#customer-approval').load('index.php?route=customer/customer_approval.list&user_token={{ user_token }}' + url);
|
||
|
});
|
||
|
|
||
|
$('#input-customer').autocomplete({
|
||
|
'source': function (request, response) {
|
||
|
$.ajax({
|
||
|
url: 'index.php?route=customer/customer.autocomplete&user_token={{ user_token }}&filter_name=' + encodeURIComponent(request),
|
||
|
dataType: 'json',
|
||
|
success: function (json) {
|
||
|
response($.map(json, function (item) {
|
||
|
return {
|
||
|
label: item['name'],
|
||
|
value: item['customer_id']
|
||
|
}
|
||
|
}));
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
'select': function (item) {
|
||
|
$('#input-customer').val(item['label']);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
$('#input-email').autocomplete({
|
||
|
'source': function (request, response) {
|
||
|
$.ajax({
|
||
|
url: 'index.php?route=customer/customer.autocomplete&user_token={{ user_token }}&filter_email=' + encodeURIComponent(request),
|
||
|
dataType: 'json',
|
||
|
success: function (json) {
|
||
|
response($.map(json, function (item) {
|
||
|
return {
|
||
|
label: item['email'],
|
||
|
value: item['customer_id']
|
||
|
}
|
||
|
}));
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
'select': function (item) {
|
||
|
$('#input-email').val(item['label']);
|
||
|
}
|
||
|
});
|
||
|
//--></script>
|
||
|
{{ footer }}
|