89 lines
2.9 KiB
PHP
89 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace app\admin\lists;
|
|
|
|
|
|
use app\common\model\auth\Admin;
|
|
use app\common\model\product_source_link_info\ProductSourceLinkInfo;
|
|
use app\common\model\PurchaseFunds;
|
|
use app\common\lists\ListsSearchInterface;
|
|
use app\common\model\user\User;
|
|
|
|
|
|
/**
|
|
* PurchaseFunds列表
|
|
* Class PurchaseFundsLists
|
|
* @package app\admin\lists
|
|
*/
|
|
class PurchaseFundsLists extends BaseAdminDataLists implements ListsSearchInterface
|
|
{
|
|
|
|
|
|
/**
|
|
* @notes 设置搜索条件
|
|
* @return \string[][]
|
|
* @author admin
|
|
* @date 2025/03/19 14:59
|
|
*/
|
|
public function setSearch(): array
|
|
{
|
|
return [
|
|
'=' => ['from_uid', 'approve_uid', 'status'],
|
|
|
|
];
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 获取列表
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @author admin
|
|
* @date 2025/03/19 14:59
|
|
*/
|
|
public function lists(): array
|
|
{
|
|
$query = PurchaseFunds::where($this->searchWhere);
|
|
if (!empty($this->params['approve_uid'])) {
|
|
$userIds = Admin::where('name', 'like', '%' . $this->params['approve_uid'] . '%')->column('id');
|
|
$query->whereIn('approve_uid', $userIds);
|
|
}
|
|
if (!empty($this->params['order'])) {
|
|
$query->order(['id' => 'asc']);
|
|
} else {
|
|
$query->order(['id' => 'desc']);
|
|
}
|
|
return $query
|
|
->field(['id', 'from_uid', 'approve_uid', 'amount', 'current_amount', 'supply_price', 'status', 'create_time', 'audit_time'])
|
|
->limit($this->limitOffset, $this->limitLength)
|
|
->select()
|
|
->each(function ($item) {
|
|
$item['from_name'] = User::where('id', $item['from_uid'])->value('nickname');
|
|
$item['approve_name'] = empty($item['approve_uid']) ? '' : Admin::where('id', $item['approve_uid'])->value('name');
|
|
$item['status_name'] = $item->getStatusName();
|
|
if ($item['current_amount'] < 0) {
|
|
$item['status'] = -1;
|
|
$item['status_name'] = '已超额';
|
|
}
|
|
$item['audit_time'] = empty($item['audit_time']) ? '' : date('Y-m-d H:i:s', $item['audit_time']);
|
|
$item['supply_price'] = ProductSourceLinkInfo::where('purchase_funds_id', $item['id'])->where('types', ProductSourceLinkInfo::TypeOut)->sum('total_price');
|
|
$item['current_profit'] = ProductSourceLinkInfo::where('purchase_funds_id', $item['id'])->where('types', ProductSourceLinkInfo::TypeOrder)->sum('total_price');
|
|
})
|
|
->toArray();
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 获取数量
|
|
* @return int
|
|
* @author admin
|
|
* @date 2025/03/19 14:59
|
|
*/
|
|
public function count(): int
|
|
{
|
|
return PurchaseFunds::where($this->searchWhere)->count();
|
|
}
|
|
|
|
} |