|
@@ -62,7 +62,10 @@ class TakeCash extends Backend
|
|
|
|
|
|
foreach ($list as $row) {
|
|
foreach ($list as $row) {
|
|
|
|
|
|
- $row->getRelation('user')->visible(['nickname']);
|
|
|
|
|
|
+ $row->getRelation('user')->visible(['nickname','name']);
|
|
|
|
+ if(empty($row['user']['nickname'])){
|
|
|
|
+ $row['user']['nickname']=$row['user']['name']??'';
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
$result = array("total" => $list->total(), "rows" => $list->items());
|
|
$result = array("total" => $list->total(), "rows" => $list->items());
|