120 lines
5.6 KiB
PHP
120 lines
5.6 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\model\material\MaterialClassify;
|
||
use app\common\model\material\MaterialPurchaseRequest;
|
||
use app\common\model\material\MaterialPurchaseRequestDetail;
|
||
use app\common\lists\ListsSearchInterface;
|
||
use app\common\model\project\Project;
|
||
use app\common\model\project\ProjectMaterialBudgetDetail;
|
||
use think\facade\Db;
|
||
|
||
/**
|
||
* 材料采购申请明细列表
|
||
* Class MaterialPurchaseRequestDetailLists
|
||
* @package app\adminapi\listsmaterial
|
||
*/
|
||
class MaterialPurchaseRequestDetailLists extends BaseAdminDataLists implements ListsSearchInterface
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 设置搜索条件
|
||
* @return \string[][]
|
||
* @author likeadmin
|
||
* @date 2024/01/09 13:47
|
||
*/
|
||
public function setSearch(): array
|
||
{
|
||
return [
|
||
'=' => ['project_material_budget_detail_id'],
|
||
];
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取材料采购申请明细列表
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @author likeadmin
|
||
* @date 2024/01/09 13:47
|
||
*/
|
||
public function lists(): array
|
||
{
|
||
$params = $this->request->get(['project_id']);
|
||
$where = [];
|
||
if(isset($params['project_id']) && $params['project_id'] != ''){
|
||
$material_purchase_request_ids = MaterialPurchaseRequest::where('project_id',$params['project_id'])->column('id');
|
||
$where[] = ['material_purchase_request_id','in',$material_purchase_request_ids];
|
||
}
|
||
return MaterialPurchaseRequestDetail::where($this->searchWhere)->where($where)
|
||
->field(['id', 'material_purchase_request_id', 'project_material_budget_detail_id', 'num'])
|
||
->limit($this->limitOffset, $this->limitLength)
|
||
->order(['id' => 'desc'])
|
||
->select()->each(function($data){
|
||
$material_purchase_request = MaterialPurchaseRequest::field('material_purchase_request_code,project_id,apply_date,arrival_date')->where('id',$data['material_purchase_request_id'])->findOrEmpty();
|
||
$project = Project::where('id',$material_purchase_request['project_id'])->field('name,project_code,custom_id')->findOrEmpty();
|
||
$project_material_budget_detail = ProjectMaterialBudgetDetail::field('material_id')->where('id',$data['project_material_budget_detail_id'])->findOrEmpty();
|
||
$material = Material::field('first_level,second_level,three_level,name,code,specs,brand,parameter_description,unit')->where('id',$project_material_budget_detail['material_id'])->findOrEmpty();
|
||
$material_classify = MaterialClassify::where('id','in',[$material['first_level'],$material['second_level'],$material['three_level']])->column('name','id');
|
||
$data['material_purchase_request_code'] = $material_purchase_request['material_purchase_request_code'];
|
||
$data['custom_name'] = Db::name('custom')->where('id',$project['custom_id'])->value('name');
|
||
$data['project_name'] = $project['name'];
|
||
$data['project_code'] = $project['project_code'];
|
||
$data['apply_date'] = $material_purchase_request['apply_date'];
|
||
$data['arrival_date'] = $material_purchase_request['arrival_date'];
|
||
$data['material_first_level'] = !empty($material_classify[$material['first_level']]) ? $material_classify[$material['first_level']] : '';
|
||
$data['material_second_level'] = !empty($material_classify[$material['second_level']]) ? $material_classify[$material['second_level']] : '';
|
||
$data['material_three_level'] = !empty($material_classify[$material['three_level']]) ? $material_classify[$material['three_level']] : '';
|
||
$data['material_name'] = $material['name'];
|
||
$data['material_code'] = $material['code'];
|
||
$data['material_specs'] = $material['specs'];
|
||
$data['material_brand'] = $material['brand'];
|
||
$data['material_parameter_description'] = $material['parameter_description'];
|
||
$data['material_unit'] = $material['unit'];
|
||
//已采购数量
|
||
$data['has_procure_num'] = 0;
|
||
//未采购数量
|
||
$data['not_procure_num'] = $data['num'] - $data['has_procure_num'];
|
||
return $data;
|
||
})
|
||
->toArray();
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取材料采购申请明细数量
|
||
* @return int
|
||
* @author likeadmin
|
||
* @date 2024/01/09 13:47
|
||
*/
|
||
public function count(): int
|
||
{
|
||
$params = $this->request->get(['project_id']);
|
||
$where = [];
|
||
if(isset($params['project_id']) && $params['project_id'] != ''){
|
||
$material_purchase_request_ids = MaterialPurchaseRequest::where('project_id',$params['project_id'])->column('id');
|
||
$where[] = ['material_purchase_request_id','in',$material_purchase_request_ids];
|
||
}
|
||
return MaterialPurchaseRequestDetail::where($this->searchWhere)->where($where)->count();
|
||
}
|
||
|
||
} |