|
@@ -76,6 +76,9 @@ class WithdrawController extends Crud
|
|
|
if (Arr::get($param, 'status')) {
|
|
if (Arr::get($param, 'status')) {
|
|
|
$query->where('status', $param['status']);
|
|
$query->where('status', $param['status']);
|
|
|
}
|
|
}
|
|
|
|
|
+ if (Arr::get($param, 'new_state')) {
|
|
|
|
|
+ $query->where('new_state', $param['new_state']);
|
|
|
|
|
+ }
|
|
|
if (Arr::get($param, 'order_no')) {
|
|
if (Arr::get($param, 'order_no')) {
|
|
|
$query->where('order_no', 'like', '%' . $param['order_no'] . '%');
|
|
$query->where('order_no', 'like', '%' . $param['order_no'] . '%');
|
|
|
}
|
|
}
|