order by status
This commit is contained in:
parent
d94c62d6fc
commit
b5a9190ae7
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
|
## 2024.5.17
|
||||||
|
|
||||||
|
- Status Customer: Active/Banned/Disabled
|
||||||
|
- Add search with order in Customer list
|
||||||
|
|
||||||
## 2024.5.16
|
## 2024.5.16
|
||||||
|
|
||||||
- Confirm can change Using
|
- Confirm can change Using
|
||||||
|
@ -613,7 +613,8 @@ switch ($action) {
|
|||||||
$order_pos = [
|
$order_pos = [
|
||||||
'username' => 0,
|
'username' => 0,
|
||||||
'created_at' => 8,
|
'created_at' => 8,
|
||||||
'balance' => 3
|
'balance' => 3,
|
||||||
|
'status' => 7
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($search != '') {
|
if ($search != '') {
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
<option value="username" {if $order eq 'username' }selected{/if}>{Lang::T('Username')}</option>
|
<option value="username" {if $order eq 'username' }selected{/if}>{Lang::T('Username')}</option>
|
||||||
<option value="created_at" {if $order eq 'created_at' }selected{/if}>{Lang::T('Created Date')}</option>
|
<option value="created_at" {if $order eq 'created_at' }selected{/if}>{Lang::T('Created Date')}</option>
|
||||||
<option value="balance" {if $order eq 'balance' }selected{/if}>{Lang::T('Balance')}</option>
|
<option value="balance" {if $order eq 'balance' }selected{/if}>{Lang::T('Balance')}</option>
|
||||||
|
<option value="status" {if $order eq 'status' }selected{/if}>{Lang::T('Status')}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-4">
|
<div class="col-xs-4">
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"version": "2024.5.16"
|
"version": "2024.5.17"
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user