['custom_id','invoice_type'], '%like%' => ['code','create_user'] ]; } /** * @notes 获取报价单列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/11/27 17:23 */ public function lists(): array { $params = $this->request->get(['custom_name']); $where = []; if(isset($params['custom_name']) && $params['custom_name'] != ''){ $custom_ids = Custom::where('name','like','%'.$params['custom_name'].'%')->column('id'); $where[] = ['custom_id','in',$custom_ids]; } return Quotation::field('id,custom_id,code,quotation_date,create_user,invoice_type,freight,other_fee,customer_require,remark') ->where($this->searchWhere)->where($where)->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select()->each(function($item){ $custom = Custom::field('name,master_name,master_phone')->where('id',$item['custom_id'])->findOrEmpty(); $item['custom_name'] = $custom['name']; $item['custom_master_name'] = $custom['master_name']; $item['custom_master_phone'] = $custom['master_phone']; $item['invoice_type_text'] = $item->invoice_type_text; $item['amount_including_tax'] = QuotationDetail::where('quotation_id',$item['id'])->sum('tax_inclusive_amount'); $item['total_amount'] = $item['amount_including_tax'] + $item['freight'] + $item['other_fee']; return $item; }) ->toArray(); } /** * @notes 获取报价单数量 * @return int * @author likeadmin * @date 2023/11/27 17:23 */ public function count(): int { $params = $this->request->get(['custom_name']); $where = []; if(isset($params['custom_name']) && $params['custom_name'] != ''){ $custom_ids = Custom::where('name','like','%'.$params['custom_name'].'%')->column('id'); $where[] = ['custom_id','in',$custom_ids]; } return Quotation::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', 'code' => '报价单号', 'custom_name' => '客户名称', 'quotation_date' => '报价日期', 'custom_master_name' => '联系人', 'custom_master_phone' => '联系电话', 'create_user' => '制单人', 'invoice_type_text' => '发票类型', 'amount_including_tax' => '含税金额', 'freight' => '运费', 'other_fee' => '其他费用', 'total_amount' => '合计金额', ]; } }