85 lines
2.9 KiB
PHP
85 lines
2.9 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\lists\material;
|
||
|
||
|
||
use app\adminapi\lists\BaseAdminDataLists;
|
||
use app\common\model\material\Material;
|
||
use app\common\lists\ListsSearchInterface;
|
||
use app\common\model\material\MaterialClassify;
|
||
|
||
|
||
/**
|
||
* 自购材料列表
|
||
* Class MaterialLists
|
||
* @package app\adminapi\listsmaterial
|
||
*/
|
||
class MaterialLists extends BaseAdminDataLists implements ListsSearchInterface
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 设置搜索条件
|
||
* @return \string[][]
|
||
* @author likeadmin
|
||
* @date 2024/01/04 10:59
|
||
*/
|
||
public function setSearch(): array
|
||
{
|
||
return [
|
||
'=' => ['first_level', 'second_level', 'three_level'],
|
||
'%like%' => ['code', 'brand', 'name'],
|
||
];
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取自购材料列表
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @author likeadmin
|
||
* @date 2024/01/04 10:59
|
||
*/
|
||
public function lists(): array
|
||
{
|
||
return Material::where($this->searchWhere)
|
||
->field(['id', 'first_level', 'second_level', 'three_level', 'code', 'brand', 'name', 'specs', 'unit', 'parameter_description', 'inventory', 'sales_price', 'cost_price', 'annex'])
|
||
->limit($this->limitOffset, $this->limitLength)
|
||
->order(['id' => 'desc'])
|
||
->select()->each(function($item){
|
||
$classify = MaterialClassify::where('id','in',[$item['first_level'],$item['second_level'],$item['three_level']])->column('name','id');
|
||
$item['first_level_name'] = $classify[$item['first_level']];
|
||
$item['second_level_name'] = !empty($classify[$item['second_level']]) ? $classify[$item['second_level']] : '';
|
||
$item['three_level_name'] = !empty($classify[$item['three_level']]) ? $classify[$item['three_level']] : '';
|
||
return $item;
|
||
})
|
||
->toArray();
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取自购材料数量
|
||
* @return int
|
||
* @author likeadmin
|
||
* @date 2024/01/04 10:59
|
||
*/
|
||
public function count(): int
|
||
{
|
||
return Material::where($this->searchWhere)->count();
|
||
}
|
||
|
||
} |