|
|
|
@ -195,13 +195,13 @@ class StoreKeeper extends Controller |
|
|
|
|
$model = new OrderModel; |
|
|
|
|
$list = $model->getNewList($params); |
|
|
|
|
if (!empty($list['data'])) { |
|
|
|
|
foreach ($list['data'] as $value) { |
|
|
|
|
foreach ($list['data'] as $key => $value) { |
|
|
|
|
if (!empty($value['transfer']) && !empty($value['transfer']['chat_image_id'])) { |
|
|
|
|
$chat_image_ids = UploadFile::whereIn('file_id', explode(",", $value['transfer']['chat_image_id']))->field('file_id,file_path,file_type,storage,domain')->select(); |
|
|
|
|
foreach ($chat_image_ids as &$chat_image_id) { |
|
|
|
|
$chat_image_id['file_path'] = getUrl($chat_image_id['file_path'], $chat_image_id['domain']); |
|
|
|
|
} |
|
|
|
|
$value['transfer']['chat_image_ids'] = $chat_image_ids; |
|
|
|
|
$list['data'][$key]['transfer']['chat_image_ids'] = $chat_image_ids; |
|
|
|
|
// if (!empty($value->transfer->transfer_image_id)) { |
|
|
|
|
// $transfer_image_ids = UploadFile::whereIn('file_id', explode(",", $value->transfer->transfer_image_id))->field('file_id,file_path,file_type,storage,domain')->select(); |
|
|
|
|
// foreach ($transfer_image_ids as &$transfer_image_id) { |
|
|
|
|