179 lines
7.6 KiB
Twig
179 lines
7.6 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>
|
|
<a href="{{ add }}" data-bs-toggle="tooltip" title="{{ button_add }}" class="btn btn-primary"><i class="fa-solid fa-plus"></i></a>
|
|
<button type="submit" form="form-customer" formaction="{{ delete }}" data-bs-toggle="tooltip" title="{{ button_delete }}" onclick="return confirm('{{ text_confirm }}');" class="btn btn-danger"><i class="fa-regular fa-trash-can"></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_name }}</label>
|
|
<input type="text" name="filter_name" value="{{ filter_name }}" placeholder="{{ entry_name }}" id="input-name" data-oc-target="autocomplete-name" class="form-control" autocomplete="off"/>
|
|
<ul id="autocomplete-name" class="dropdown-menu"></ul>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">{{ entry_email }}</label>
|
|
<input type="text" name="filter_email" value="{{ filter_email }}" 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 }}"{% if customer_group.customer_group_id == filter_customer_group_id %} selected{% endif %}>{{ customer_group.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="input-status" class="form-label">{{ entry_status }}</label> <select name="filter_status" id="input-status" class="form-select">
|
|
<option value=""></option>
|
|
<option value="1"{% if filter_status == '1' %} selected{% endif %}>{{ text_enabled }}</option>
|
|
<option value="0" {% if filter_status == '0' %} selected{% endif %}>{{ text_disabled }}</option>
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="input-ip" class="form-label">{{ entry_ip }}</label> <input type="text" name="filter_ip" value="{{ filter_ip }}" placeholder="{{ entry_ip }}" id="input-ip" class="form-control"/>
|
|
</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 id="customer" class="card-body">{{ list }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript"><!--
|
|
$('#customer').on('click', 'thead a, .pagination a', function (e) {
|
|
e.preventDefault();
|
|
|
|
$('#customer').load(this.href);
|
|
});
|
|
|
|
$('#button-filter').on('click', function () {
|
|
url = '';
|
|
|
|
var filter_name = $('#input-name').val();
|
|
|
|
if (filter_name) {
|
|
url += '&filter_name=' + encodeURIComponent(filter_name);
|
|
}
|
|
|
|
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_status = $('#input-status').val();
|
|
|
|
if (filter_status !== '') {
|
|
url += '&filter_status=' + filter_status;
|
|
}
|
|
|
|
var filter_ip = $('#input-ip').val();
|
|
|
|
if (filter_ip) {
|
|
url += '&filter_ip=' + encodeURIComponent(filter_ip);
|
|
}
|
|
|
|
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&user_token={{ user_token }}' + url);
|
|
|
|
$('#customer').load('index.php?route=customer/customer.list&user_token={{ user_token }}' + url);
|
|
});
|
|
|
|
$('#input-name').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-name').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 }}
|