engineering/app/adminapi/lists/quotation/QuotationLists.php
2024-01-30 11:15:25 +08:00

128 lines
4.2 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\quotation;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\lists\ListsExcelInterface;
use app\common\model\custom\Custom;
use app\common\model\quotation\Quotation;
use app\common\lists\ListsSearchInterface;
use app\common\model\quotation\QuotationDetail;
/**
* 报价单列表
* Class QuotationLists
* @package app\adminapi\listsquotation
*/
class QuotationLists extends BaseAdminDataLists implements ListsSearchInterface,ListsExcelInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2023/11/27 17:23
*/
public function setSearch(): array
{
return [
'=' => ['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' => '合计金额',
];
}
}