multi-store/app/admin/lists/ChangeLogLists.php
mkm b9adf2dce3 refactor(admin): 优化变更日志列表和购买产品报价逻辑
- 修复 ChangeLogLists 类中的搜索字段
- 优化 ChangeLogLists 类的 lists 方法,增加对 admin_name 的处理
- 修改 PurchaseProductOfferLogic 中的 outbound_price 字段名称
- 在 StoreProduct 模型中添加 doNotRecordLog 属性,不生成日志
2025-01-07 14:33:25 +08:00

75 lines
1.8 KiB
PHP

<?php
namespace app\admin\lists;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\ChangeLog;
use app\common\lists\ListsSearchInterface;
use app\common\model\auth\Admin;
/**
* ChangeLog列表
* Class ChangeLogLists
* @package app\admin\lists
*/
class ChangeLogLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author admin
* @date 2025/01/06 10:03
*/
public function setSearch(): array
{
return [
'=' => ['model', 'link_id', 'nums', 'pm'],
'%like%' => ['mark', 'url'],
];
}
/**
* @notes 获取列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author admin
* @date 2025/01/06 10:03
*/
public function lists(): array
{
return ChangeLog::where($this->searchWhere)
->field(['id', 'admin_id', 'model', 'link_id', 'nums', 'pm', 'url', 'mark'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(
function ($item) {
if ($item->admin_id) {
$item->admin_name = Admin::where('id', $item->admin_id)->value('name');
} else {
$item->admin_name = $item->admin_id;
}
}
)
->toArray();
}
/**
* @notes 获取数量
* @return int
* @author admin
* @date 2025/01/06 10:03
*/
public function count(): int
{
return ChangeLog::where($this->searchWhere)->count();
}
}