engineering/app/adminapi/lists/bid/BidBuyBiddingDocumentLists.php
2024-01-30 11:45:19 +08:00

158 lines
6.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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\bid;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\lists\ListsExcelInterface;
use app\common\model\auth\Admin;
use app\common\model\bid\BidBiddingDecision;
use app\common\model\bid\BidBuyBiddingDocument;
use app\common\lists\ListsSearchInterface;
use app\common\model\custom\Custom;
use app\common\model\project\Project;
/**
* 购买标书列表
* Class BidBuyBiddingDocumentLists
* @package app\adminapi\listsbid
*/
class BidBuyBiddingDocumentLists extends BaseAdminDataLists implements ListsSearchInterface,ListsExcelInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2023/11/27 18:22
*/
public function setSearch(): array
{
return [
'%like%' => ['bid_document_no', 'invite_tenders_company_name', 'bid_company_name'],
'=' => ['project_id']
];
}
/**
* @notes 获取购买标书列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2023/11/27 18:22
*/
public function lists(): array
{
$params = $this->request->get(['project_name','custom_name','custom_id']);
$where = [];
if(isset($params['project_name']) && $params['project_name'] != ''){
$project_ids = Project::where('name','like','%'.$params['project_name'].'%')->column('id');
$where[] = ['project_id','in',$project_ids];
}
if(isset($params['custom_name']) && $params['custom_name'] != ''){
$custom_ids = Custom::where('name','like','%'.$params['custom_name'].'%')->column('id');
$project_ids = Project::where('custom_id','in',$custom_ids)->column('id');
$where[] = ['project_id','in',$project_ids];
}
if(isset($params['custom_id']) && $params['custom_id'] != ''){
$project_ids = Project::where('custom_id',$params['custom_id'])->column('id');
$where[] = ['project_id','in',$project_ids];
}
return BidBuyBiddingDocument::field('id,project_id,bid_decision_id,bid_document_no,invite_tenders_company_name,bid_company_name,buyer,amount,buy_date')
->where($this->searchWhere)->where($where)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($item){
$project = Project::field('custom_id,name,project_code')->where('id',$item['project_id'])->findOrEmpty();
$custom = Custom::field('name')->where('id',$project['custom_id'])->findOrEmpty();
$bid_decision = BidBiddingDecision::field('code,bidding_project_fund_source,bidding_time,bid_type,is_margin,margin_amount')->where('id',$item['bid_decision_id'])->findOrEmpty();
$admin = Admin::field('name')->where('id',$item['buyer'])->findOrEmpty();
$item['project_name'] = $project['name'];
$item['project_code'] = $project['project_code'];
$item['custom_name'] = $custom['name'];
$item['bid_decision_code'] = $bid_decision['code'];
$item['buyer'] = $admin['name'];
$item['bidding_time'] = $bid_decision['bidding_time'];
$item['bidding_project_fund_source'] = $bid_decision->bidding_project_fund_source_text;
$item['bid_type'] = $bid_decision->bid_type_text;
$item['is_margin'] = $bid_decision->is_margin_text;
$item['margin_amount'] = $bid_decision['margin_amount'];
return $item;
})
->toArray();
}
/**
* @notes 获取购买标书数量
* @return int
* @author likeadmin
* @date 2023/11/27 18:22
*/
public function count(): int
{
$params = $this->request->get(['project_name','custom_name','custom_id']);
$where = [];
if(isset($params['project_name']) && $params['project_name'] != ''){
$project_ids = Project::where('name','like','%'.$params['project_name'].'%')->column('id');
$where[] = ['project_id','in',$project_ids];
}
if(isset($params['custom_name']) && $params['custom_name'] != ''){
$custom_ids = Custom::where('name','like','%'.$params['custom_name'].'%')->column('id');
$project_ids = Project::where('custom_id','in',$custom_ids)->column('id');
$where[] = ['project_id','in',$project_ids];
}
if(isset($params['custom_id']) && $params['custom_id'] != ''){
$project_ids = Project::where('custom_id',$params['custom_id'])->column('id');
$where[] = ['project_id','in',$project_ids];
}
return BidBuyBiddingDocument::where($this->searchWhere)->where($where)->count();
}
public function setFileName(): string
{
return '购买标书列表';
}
/**
* @notes 导出字段
* @return string[]
* @author 段誉
* @date 2022/11/24 16:17
*/
public function setExcelFields(): array
{
return [
'id' => '投标决策id',
'bid_decision_code' => '投标决策编码',
'custom_name' => '客户名称',
'project_name' => '项目名称',
'bid_document_no' => '标书编号',
'invite_tenders_company_name' => '招标公司名称',
'bid_company_name' => '投标公司名称',
'buyer' => '购买人员',
'amount' => '购买标书金额',
'bidding_project_fund_source' => '招标项目资金来源',
'bidding_time' => '投标时间',
'buy_date' => '购买标书时间',
'bid_type' => '招标方式',
];
}
}