['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,bid_address') ->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' => '招标方式', 'bid_address' => '投标地址', ]; } }