| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- <?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\common\service;
- use app\adminapi\logic\equity\UserEquityLogic;
- use app\adminapi\logic\financial\MasterSettlementDetailsLogic;
- use app\common\enum\FileEnum;
- use app\common\model\equity\UserEquity;
- use app\common\model\export\Export;
- use app\common\model\file\File;
- use app\common\model\financial\FinancialPaymentRecords;
- use app\common\model\goods_category\GoodsCategory;
- use app\common\model\user\User;
- use app\common\model\works\ServiceWorkAllocateWorkerLog;
- use app\common\model\group_activity\GroupUserOrder;
- use app\common\service\storage\Driver as StorageDriver;
- use excel\ExcelWriter;
- use Exception;
- use think\facade\App;
- use think\facade\Db;
- use think\facade\Log;
- class ExcelExportService
- {
- private ExcelWriter $sheet;
- protected array $params = [];
- protected Export $infoExport;
- public array $download_type = [];
- public function __construct()
- {
- $this->download_type = config('export.download_type');
- $this->sheet = new ExcelWriter();
- }
- public function download($id)
- {
- try{
- $infoExport = Export::findOrEmpty($id);
- if(!$infoExport->isEmpty()){
- $download_fun = $infoExport['download_fun'];
- $this->infoExport = $infoExport;
- switch ($infoExport['download_type']){
- case 1:
- //case 2:
- case 3:
- if(!method_exists($this,$download_fun)){
- throw new Exception('下载不存在-1001');
- }
- $this->$download_fun($infoExport);
- break;
- default:
- $use_file = explode('.',$download_fun);
- $this->getDownloadFileUrl(invoke(str_replace('.', '\\', App::getNamespace() . '\\lists\\' . $use_file[0] . '\\'. ucwords($use_file[1]))));
- break;
- }
- }
- }catch (\Exception $e){
- Log::info("download-error:{$id}:".$e->getMessage());
- throw new Exception($e->getMessage());
- }
- }
- // 获取下载文件路径
- public function getDownloadFileUrl($downloadObj){print_r($downloadObj);exit;
- $lists = $downloadObj->excelExportList($this->infoExport['params']?:[]);
- $filename = $downloadObj->setFileName()?:($this->infoExport['name']?:'');
- $fields = $downloadObj->setExcelComplexFields();
- if(!$lists || !$fields){
- throw new Exception('lists或fields不存在');
- }
- $this->sheet->generateExcelFile($fields['zh_cn_fields'], $lists,$filename.'-'.$this->infoExport->id, $fields['data_fields']);
- $this->infoExport->file_url = $this->sheet->fileUrl();
- $this->infoExport->generate_status = 1;
- $this->infoExport->updatetime = time();
- $this->infoExport->save();
- return $this->infoExport->file_url;
- }
- /**
- * @notes 工程师 -截止某日最后结算余额 导出
- */
- public function EngineerBillDownload($infoExport)
- {
- Db::startTrans();
- try{
- $filename = $infoExport['name'];
- $params = $infoExport['params']?:[];
- if($params){ }
- // 导出逻辑
- /*添加财务打款记录表: 生成批次编号、状态待上传 已取消 打款状态: 未打款、部分打款、全部打款
- 生成数据表格:工程师信息、银行卡信息、批次编号信息、应发金额、导出时账号余额、导入时账号余额、扣款金额、扣款说明、实发金额、打款状态(已打、下次打款)、打款时间、备注、是否已导入
- (账号当前余额 !=0) < (应发金额 !=0) = 下次打款
- 更新表 la_master_settlement_details 批次编号、状态-待算
- */
- $batch_number = 'bn' . date('YmdHis') . rand(1000, 9999);
- // 添加财务打款记录表 -- 批次编号、状态待上传
- $params['infoExport_id'] = $infoExport->id;
- FinancialPaymentRecords::create([
- 'export_conditions' => $params,
- 'batch_number' => $batch_number,
- 'upload_status' => 1,
- 'payment_status' => 1,
- ]);
- //生成数据表格 & 更新表 -- 批次编号、状态-待算
- $lists = MasterSettlementDetailsLogic::upBatchStatus($params,$batch_number);
- $filename = ($filename?($filename.'-批号'.$batch_number):'');
- $this->sheet->generateExcelFile([
- '工程师ID', '工程师编号', '工程师姓名', '工程师银行卡号', '所属银行', '工程师开户行及支行信息','导出时账号余额',
- '批次编号',
- '应发金额', '扣款金额', '扣款说明', '实发金额', '打款时间','备注'
- ], $lists,$filename.'-'.$infoExport->id, [
- 'master_worker_id','worker_number','engineer_name','bank_account','bank_name','opening_branch','original_balance',
- 'batch_number',
- 'total_settlement_amount','','','','',''
- ]);
- $infoExport->name = $filename;
- $infoExport->file_url = $this->sheet->fileUrl();
- $infoExport->generate_status = 1;
- $infoExport->updatetime = time();
- $infoExport->save();
- Db::commit();
- return $infoExport->file_url;
- } catch (\Exception $e) {
- Db::rollback();
- throw new Exception($e->getMessage());
- }
- }
- /**
- * @notes 工程师 -工单统计 导出
- */
- /*public function MasterWorkerServiceOrderDownload($infoExport)
- {
- try{
- $filename = $infoExport['name'];
- $params = $infoExport['params']?:[];
- $where = [];
- $sqlJoin = '';
- if($params){
- if (isset($params['real_name']) && !empty($params['real_name'])) {
- $where[] = ['a.real_name','like' ,"%".$params['real_name']."%"];
- }
- if (isset($params['worker_number']) && !empty($params['worker_number'])) {
- $where[] = ['a.worker_number','like' ,"%".$params['worker_number']."%"];
- }
- if (isset($params['recruiting_behalf']) && !empty($params['recruiting_behalf'])) {
- $where[] = ['a.recruiting_behalf','like' ,"%".$params['recruiting_behalf']."%"];
- }
- if (isset($params['is_recruiting_behalf']) && !empty($params['is_recruiting_behalf'])) {
- if ($params['is_recruiting_behalf'] == 1)
- $where[] = ['a.recruiting_behalf','<>' ,""];
- else
- $where[] = ['a.recruiting_behalf','=' ,""];
- }
- if (isset($params['mobile']) && !empty($params['mobile'])) {
- $where[] = ['a.mobile','=' ,$params['mobile']];
- }
- if (isset($params['cooperation']) && !empty($params['cooperation'])) {
- $where[] = ['a.cooperation','=' ,$params['cooperation']];
- }
- if (!empty($params['start_time'])) {
- $sqlJoin .= ' AND b.update_time >= '.strtotime($params['start_time']);
- }
- if (!empty($params['end_time'])) {
- $sqlJoin .= ' AND b.update_time <= '.strtotime($params['end_time'])+86400;
- }
- }
- $lists = Db::name('master_worker')->alias('a')->field([
- 'a.id','a.real_name','a.nickname','a.worker_number','a.recruiting_behalf','a.mobile','a.cooperation','a.category_ids','a.labels','a.remark',
- Db::raw("COUNT(b.id) AS all_count"),
- Db::raw("SUM(CASE WHEN b.service_status = 3 THEN 1 ELSE 0 END) AS success_count"),
- Db::raw("SUM(CASE WHEN b.service_status = 4 OR b.service_status = 5 THEN 1 ELSE 0 END) AS fail_count"),
- Db::raw("SUM(CASE WHEN b.service_status = 3 THEN b.work_total ELSE 0 END) work_total"),
- Db::raw("SUM(CASE WHEN b.service_status = 3 THEN b.worker_price ELSE 0 END) worker_price"),
- ])
- ->leftJoin('service_work b', 'a.id = b.master_worker_id'.$sqlJoin)
- ->where($where)
- ->group('a.id')
- ->order('a.id desc')
- ->select()->toArray();
- $categoryData = GoodsCategory::select()->toArray();
- // foreach ($lists as &$item) {
- // $item['category_name'] = $item['category_ids']?implode('、',array_column(get_parent_info($categoryData,explode(',',$item['category_ids'])),'name')):'';
- // }
- foreach ($lists as &$item) {
- $item['labels'] = $item['labels']?array_map(function ($item) { return intval($item); },explode(',',$item['labels'])):'';
- $item['category_name'] = $item['category_ids']?implode('、',array_column(get_parent_info($categoryData,explode(',',$item['category_ids'])),'name')):'';
- $item['allocate_num'] = ServiceWorkAllocateWorkerLog::where(['master_worker_id'=>$item['id']])->count();
- }
- $this->sheet->generateExcelFile([
- '服务类别', '工程师编号', '工程师姓名', '工程师手机', '代招人姓名', '工程师接单数', '工程师成功单','工程师失败单','工程师成交金额','工程师提成金额'
- ], $lists,$filename.'-'.$infoExport->id, ['category_name','worker_number','real_name','mobile','recruiting_behalf','all_count','success_count','fail_count','work_total','worker_price']);
- $infoExport->file_url = $this->sheet->fileUrl();
- $infoExport->generate_status = 1;
- $infoExport->updatetime = time();
- $infoExport->save();
- return $infoExport->file_url;
- }catch (\Exception $e){
- throw new Exception($e->getMessage());
- }
- }*/
- // 权益卡编码导出
- public function UserEquityDownload($infoExport){
- try{
- $filename = $infoExport['name'];
- $params = $infoExport['params']?:[];
- $where = [];
- if($params){
- if (isset($params['select_ids']) && !empty($params['select_ids'])) {
- $where[] = ['id','in' ,$params['select_ids']];
- }
- if (isset($params['equity_id']) && !empty($params['equity_id'])) {
- $where[] = ['equity_id','=' ,$params['equity_id']];
- }
- if (isset($params['mobile']) && !empty($params['mobile'])) {
- $userId = User::where('mobile',$params['mobile'])->value('id')??-1;
- $where[] = ['user_id','=' ,$userId];
- }
- if (isset($params['is_binding']) && !empty($params['is_binding'])) {
- if((int)$params['is_binding'] === 1){
- $where[] = ['user_id','>',0];
- }else{
- $where[] = ['user_id','=',0];
- }
- }
- }
- $lists = UserEquity::with(['equityConfig', 'goods','user'])
- ->where($where)
- ->field(['id', 'user_id', 'equity_id', 'goods_id', 'number', "IF(end_time=0,'',FROM_UNIXTIME(end_time, '%Y-%m-%d %H:%i:%s')) AS end_time",'code','IF(user_id=0,2,1) as is_binding'])
- ->select()
- ->toArray();
- $this->sheet->generateExcelFile([
- '用户','编码', '权益卡名称','商品','预售价','权益总次数','剩余次数','权益截止时间'
- ], $lists,$filename.'-'.$infoExport->id, ['user.nickname','code','equityConfig.equity_name','goods.goods_name','equityConfig.price','equityConfig.number','number','end_time']);
- $infoExport->file_url = $this->sheet->fileUrl();
- $infoExport->generate_status = 1;
- $infoExport->updatetime = time();
- $infoExport->save();
- return $infoExport->file_url;
- }catch (\Exception $e){
- throw new Exception($e->getMessage());
- }
- }
- //用户拼团订单列表导出
- public function GroupUserOrderDownload($infoExport){
- try{
- $filename = $infoExport['name'];
- $params = $infoExport['params']?:[];
- $where = [];
- if($params){
- if (isset($params['select_ids']) && !empty($params['select_ids'])) {
- $where[] = ['id','in' ,$params['select_ids']];
- }
- if (isset($params['sn']) && !empty($params['sn'])) {
- $where[] = ['a.sn','=' ,$params['sn']];
- }
- if (isset($params['mobile']) && !empty($params['mobile'])) {
- $where[] = ['a.mobile','=' ,$params['mobile']];
- }
- if(!empty($this->params['area'])){
- $where[] = ['a.area', 'like', '%'.$this->params['area'].'%'];
- }
- if(!empty($this->params['title'])){
- $where[] = ['b.title', 'like', '%'.$this->params['title'].'%'];
- }
- if (isset($this->params['group_order_status'])) {
- $where[] = ['c.status', '=', $this->params['group_order_status']];
- }
- }
-
- $lists = GroupUserOrder::alias('a')
- ->leftJoin('group_activity b', 'b.id = a.group_activity_id')
- ->leftJoin('group_order c', 'c.id = a.group_order_id')
- ->leftJoin('user d', 'd.id = a.user_id')
- ->where($where)
- ->field(['a.*', 'b.title','b.image','c.sn as group_order_sn','c.status as group_order_status','d.mobile'])
- ->order(['a.id' => 'desc'])
- ->select()
- ->toArray();
-
- $this->sheet->generateExcelFile([
- '订单ID','活动标题', '拼团编号','拼团状态','用户ID','手机号','小区','详细地址','订单状态','应付金额','已付金额','支付方式','支付状态','支付时间','退款状态','下单时间'
- ], $lists,$filename.'-'.$infoExport->id, ['id','title','group_order_sn','group_order_status','user_id','mobile','area','address','status','order_amount','paid_amount','pay_way','pay_status','pay_time','refund_status','create_time']);
- $infoExport->file_url = $this->sheet->fileUrl();
- $infoExport->generate_status = 1;
- $infoExport->updatetime = time();
- $infoExport->save();
- return $infoExport->file_url;
- }catch (\Exception $e){
- throw new Exception($e->getMessage());
- }
- }
- }
|